* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #000;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@font-face {
  font-family: "Lora";
  src: url(../fonts/Lora-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --title-font-family: 'Lora';
  --subtitle-font-family: 'Lora';
  --text-font-family: 'Lora';
  --price-color: rgba(208, 2, 27, 1);
  --regular-color: rgba(34, 35, 35, 1);
  --main-btn-bg: rgb(112, 85, 64);
  --main-btn-tx: #FFFFFF;
  --minor-btn-tx: rgb(90, 69, 53);
  --image-radius: 5px;
  --button-radius: 5px;
  --menu-icon-color: rgba(0, 0, 0, 1);
  --header-bg-color: #fff;
}

.title_font,
.title_font2 {
  font-family: var(--title-font-family) !important;
}

.secondary_title {
  font-family: var(--subtitle-font-family) !important;
}

.text_font,
.page_text_font {
  font-family: var(--text-font-family) !important;
}

.site-header {
  background-color: var(--header-bg-color);
  box-shadow: 0 1px 0 0 #e3e3e3;
  padding: 0 30px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 71px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo img {
  max-height: 71px;
  width: auto;
}

.header-icon {
  font-size: 20px;
  color: var(--menu-icon-color);
}

.header-mega-menu {
  border-top: 1px solid #e3e3e3;
  padding: 10px 0;
}

.header-mega-menu ul {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.header-mega-menu a {
  font-family: var(--subtitle-font-family);
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.notice-bar {
  background: rgb(112, 85, 64);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.breadcrumb-custom {
  padding: 20px 0;
  font-size: 14px;
  color: #6c757d;
}

.product-gallery {
  position: sticky;
  top: 20px;
}

.main-image {
  border-radius: var(--image-radius);
  overflow: hidden;
  margin-bottom: 20px;
}

.main-image img {
  width: 100%;
  display: block;
}

.thumbnail-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail-list img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--image-radius);
  cursor: pointer;
  border: 1px solid #dee2e6;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.sale-price {
  font-size: 28px;
  font-weight: bold;
  color: var(--price-color);
}

.regular-price {
  font-size: 18px;
  color: var(--regular-color);
  text-decoration: line-through;
}

.discount-badge {
  background: var(--price-color);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
}

.variant-selector {
  margin: 20px 0;
}

.variant-label {
  font-weight: bold;
  margin-bottom: 8px;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-option {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  cursor: pointer;
  background-size: cover;
}

.color-option.red {
  background-color: #dc3545;
}

.color-option.black {
  background-color: #212529;
}

.add-to-cart-btn {
  background: var(--main-btn-bg);
  color: var(--main-btn-tx);
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  border-radius: var(--button-radius);
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  margin: 20px 0;
}

.add-to-cart-btn:hover {
  background: rgb(90, 69, 53);
}

.product-features {
  background: #f8f9fa;
  padding: 30px;
  border-radius: var(--image-radius);
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.product-description img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.product-description h3 {
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.product-description ul,
.product-description ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.product-description li {
  list-style: disc;
}

.related-products {
  margin: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--title-font-family);
  font-size: 2rem;
}

.product-card {
  margin-bottom: 30px;
  text-align: center;
}

.product-card img {
  width: 100%;
  border-radius: var(--image-radius);
  margin-bottom: 15px;
}

.site-footer {
  background: rgb(112, 85, 64);
  color: rgba(255, 255, 255, 1);
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-title {
  font-family: var(--title-font-family);
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
  font-family: var(--text-font-family);
}

.footer-newsletter input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px;
  width: 100%;
  color: white;
  margin-bottom: 10px;
}

.footer-newsletter button {
  background: #d34a4a;
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
}

.social-icons a {
  color: white;
  font-size: 24px;
  margin-right: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.order-form-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 30px;
  border-radius: var(--image-radius);
  margin: 60px 0;
  border: 1px solid #dee2e6;
}

.order-form-title {
  text-align: center;
  font-family: var(--title-font-family);
  font-size: 2rem;
  margin-bottom: 15px;
  color: rgb(112, 85, 64);
}

.order-form-subtitle {
  text-align: center;
  font-family: var(--text-font-family);
  margin-bottom: 30px;
  color: #495057;
}

.order-form {
  max-width: 600px;
  margin: 0 auto;
}

.order-form .form-control,
.order-form .form-select {
  border-radius: var(--button-radius);
  padding: 12px 15px;
  border: 1px solid #ced4da;
  margin-bottom: 15px;
}

.order-form label {
  font-weight: 600;
  margin-bottom: 5px;
  color: rgb(112, 85, 64);
}

.order-form .btn-submit {
  background: var(--main-btn-bg);
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  border-radius: var(--button-radius);
  border: none;
  text-transform: uppercase;
  transition: 0.3s;
  margin-top: 15px;
}

.order-form .btn-submit:hover {
  background: rgb(90, 69, 53);
}

.au-badge {
  display: inline-block;
  background: rgb(112, 85, 64);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  margin-left: 10px;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 40px;
  border-radius: var(--image-radius);
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.popup-content i {
  font-size: 60px;
  color: #28a745;
  margin-bottom: 20px;
}

.popup-content h3 {
  font-family: var(--title-font-family);
  color: rgb(112, 85, 64);
  margin-bottom: 15px;
}

.popup-content p {
  color: #6c757d;
  margin-bottom: 25px;
}

.popup-content .btn-close-popup {
  background: var(--main-btn-bg);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: var(--button-radius);
  cursor: pointer;
  font-weight: bold;
}

.delivery-note {
  background: #e7f3ff;
  padding: 12px 20px;
  border-radius: var(--button-radius);
  margin-bottom: 25px;
  text-align: center;
  border-left: 4px solid rgb(112, 85, 64);
}

.delivery-note i {
  color: rgb(112, 85, 64);
  margin-right: 8px;
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 15px;
  }

  .header-mega-menu ul {
    flex-wrap: wrap;
    gap: 15px;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .order-form-section {
    padding: 30px 15px;
  }
}