/* ============================================
   Nước Hoa Ô Tô - CUSTOM STYLES
   Pure CSS for home_web.html (Bootstrap 5)
   ============================================ */

/* ============================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors - matching original TailwindCSS config */
  --color-primary: #C5A059;
  --color-primary-dark: #9C7C38;
  --color-slate-dark: #333333;
  /* text-main */
  --color-slate-light: #64748B;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1e293b;
  --color-slate-900: #0f172a;
  --color-background-pearl: #F9F8F6;
  --color-background-slate: #F1F5F9;
  --color-surface: #FFFFFF;
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  /* Updated to match original body text */
  --color-star-gold: #F59E0B;

  /* Typography */
  --font-sans: 'Inter', Arial, sans-serif;
  --font-serif: 'Inter', Arial, sans-serif;
  --font-display: 'Inter', Arial, sans-serif;

  /* Spacing */
  --spacing-unit: 0.25rem;

  /* Transitions */
  --transition-base: all 0.3s ease;
  --transition-slow: all 0.7s ease;
  --transition-fast: all 0.15s ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-base: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
}

.text-star-gold {
  color: var(--color-star-gold) !important;
}

.bg-primary-10 {
  background-color: rgba(197, 160, 89, 0.1) !important;
}

/* ============================================
   2. BASE STYLES
   ============================================ */
body {
  font-family: var(--font-sans);
  background-color: var(--color-background-pearl);
  color: var(--color-slate-dark);
  overflow-x: hidden;
}

figure,
.wp-caption,
.detail_content [class*="wp-caption"],
.detail-content [class*="wp-caption"] {
  text-align: center;
  margin: 1rem 0;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}

figure img,
.wp-caption img,
.detail_content [class*="wp-caption"] img,
.detail-content [class*="wp-caption"] img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  object-fit: contain;
}

figure figcaption,
.wp-caption .wp-caption-text {
  font-size: 0.875rem;
  color: #888;
  margin-top: 0.5rem;
}

/* ============================================
   2b. DETAIL CONTENT (product / news / page)
   Chuẩn SEO Google: line-height, spacing, font-size
   ============================================ */
.detail-content,
.detail_content,
.new-detail,
.cate-content {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 1rem
}

/* Heading — khoảng cách trên lớn hơn dưới để nhóm nội dung */
.detail-content h1, .detail_content h1, .new-detail h1, .cate-content h1 {
  font-size: 1.875rem; font-weight: 700; color: #1a1e2e;
  margin: 2rem 0 0.75rem; line-height: 1.3;
}
.detail-content h2, .detail_content h2, .new-detail h2, .cate-content h2 {
  font-size: 1.5rem; font-weight: 700; color: #1a1e2e;
  margin: 1.75rem 0 0.625rem; line-height: 1.35;
}
.detail-content h3, .detail_content h3, .new-detail h3, .cate-content h3 {
  font-size: 1.25rem; font-weight: 600; color: #222;
  margin: 1.5rem 0 0.5rem; line-height: 1.4;
}
.detail-content h4, .detail_content h4, .new-detail h4, .cate-content h4 {
  font-size: 1.125rem; font-weight: 600; color: #333;
  margin: 1.25rem 0 0.5rem; line-height: 1.4;
}
.detail-content h5, .detail_content h5, .new-detail h5, .cate-content h5,
.detail-content h6, .detail_content h6, .new-detail h6, .cate-content h6 {
  font-size: 1rem; font-weight: 600; color: #444;
  margin: 1rem 0 0.375rem; line-height: 1.4;
}

/* Heading liền sau heading — giảm margin-top */
.detail-content h1 + h2, .detail_content h1 + h2,
.detail-content h2 + h3, .detail_content h2 + h3,
.detail-content h3 + h4, .detail_content h3 + h4 { margin-top: 0.75rem; }

/* Paragraph */
.detail-content p, .detail_content p, .new-detail p, .cate-content p {
  margin: 0 0 1rem; color: #444; line-height: 1.8;
}

/* Link */
.detail-content a, .detail_content a { color: #C5A059; }
.detail-content a:hover, .detail_content a:hover { color: #a8843a; }

/* Image */
.detail-content img, .detail_content img, .new-detail img, .cate-content img {
  max-width: 100%; height: auto !important; margin: 0.75rem 0; object-fit: contain;
}

/* List */
.detail-content ul, .detail_content ul, .new-detail ul, .cate-content ul {
  list-style: disc; padding-left: 1.5rem; margin: 0 0 1rem;
}
.detail-content ol, .detail_content ol, .new-detail ol, .cate-content ol {
  list-style: decimal; padding-left: 1.5rem; margin: 0 0 1rem;
}
.detail-content li, .detail_content li, .new-detail li, .cate-content li {
  margin-bottom: 0.375rem; color: #444; line-height: 1.7;
}

/* Table */
.detail-content table, .detail_content table, .new-detail table, .cate-content table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; border: 1px solid #ccc; }
.detail-content th, .detail_content th, .new-detail th, .cate-content th { padding: 0.625rem 0.75rem; border: 1px solid #ccc; background: #f5f5f5; font-weight: 600; color: #222; text-align: left; }
.detail-content td, .detail_content td, .new-detail td, .cate-content td { padding: 0.625rem 0.75rem; border: 1px solid #ccc; color: #444; }

/* Blockquote */
.detail-content blockquote, .detail_content blockquote {
  border-left: 3px solid #C5A059;
  padding: 0.75rem 1rem;
  margin: 1.25rem 0;
  background: #faf8f4;
  color: #555;
  font-style: italic;
}

/* Mobile — chuẩn Google: font tối thiểu 16px body, spacing gọn hơn */
@media (max-width: 767px) {
  .detail-content, .detail_content, .new-detail, .cate-content {
    font-size: 1rem; line-height: 1.7;
  }
  .detail-content h1, .detail_content h1, .new-detail h1 { font-size: 1.5rem; margin: 1.5rem 0 0.625rem; }
  .detail-content h2, .detail_content h2, .new-detail h2 { font-size: 1.25rem; margin: 1.25rem 0 0.5rem; }
  .detail-content h3, .detail_content h3, .new-detail h3 { font-size: 1.125rem; margin: 1rem 0 0.375rem; }
  .detail-content h4, .detail_content h4, .new-detail h4 { font-size: 1rem; margin: 0.875rem 0 0.375rem; }
  .detail-content p, .detail_content p, .new-detail p { margin: 0 0 0.875rem; }
}

/* ============================================
   2c. PRODUCT DETAIL SIDEBAR CARDS
   ============================================ */
.sidebar-card { background: #fff; border-radius: 14px; border: 1px solid rgba(7,102,68,0.12); overflow: hidden; margin-bottom: 16px; }
.sidebar-card-header { background: #076644; color: #fff; padding: 10px 16px; font-size: .8125rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.sidebar-card-header .material-symbols-outlined { font-size: 16px; }
.sidebar-card-body { padding: 16px; }

.sidebar-product-mini { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(7,102,68,0.12); }
.sidebar-product-thumb { width: 62px; height: 62px; border-radius: 10px; object-fit: cover; border: 1px solid rgba(7,102,68,0.12); flex-shrink: 0; }
.sidebar-product-name { font-size: .8125rem; font-weight: 700; color: #1a1e2e; line-height: 1.35; margin: 0; }
.sidebar-product-brand { font-size: .725rem; color: #6a8580; margin: 2px 0 0; }

.sidebar-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.sidebar-price-sale { font-size: 1.5rem; font-weight: 900; color: #076644; font-family: 'Cormorant Garamond', Georgia, serif; }
.sidebar-price-old { font-size: .875rem; color: #9baaa3; text-decoration: line-through; }
.sidebar-price-badge { background: #fef2f2; color: #c53030; font-size: .7rem; font-weight: 700; padding: 2px 8px; border-radius: 10px; }

.scent-selector-label { font-size: .75rem; font-weight: 700; color: #6a8580; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; display: block; }
.scent-options { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.scent-btn { padding: 5px 12px; border-radius: 6px; font-size: .75rem; font-weight: 600; border: 1.5px solid rgba(7,102,68,0.2); background: #fff; color: #1a1e2e; cursor: pointer; transition: all .15s; display: inline-flex; align-items: center; gap: 5px; }
.scent-btn.gold::before { background: #c5a059; }
.scent-btn.platinum::before { background: #a8b8b0; }
.scent-btn.romance::before { background: #d95fa0; }
.scent-btn.apple::before { background: #6ab04c; }
.scent-btn.vanilla::before { background: #e8b84b; }
.scent-btn.spring::before { background: #7ec8e3; }
.scent-btn:hover, .scent-btn.active { border-color: #076644; background: #f0faf5; color: #076644; }

.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.qty-label { font-size: .75rem; font-weight: 700; color: #6a8580; text-transform: uppercase; letter-spacing: .07em; }
.qty-ctrl { display: inline-flex; align-items: center; border: 1.5px solid rgba(7,102,68,0.2); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 32px; height: 32px; background: #f0faf5; border: none; color: #076644; font-size: 1.1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s; padding: 0; }
.qty-btn:hover { background: #076644; color: #fff; }
.qty-input { width: 44px; height: 32px; border: none; text-align: center; font-weight: 700; font-size: .9rem; color: #1a1e2e; background: #fff; outline: none; -moz-appearance: textfield; appearance: textfield; padding: 0; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; margin: 0; }

.btn-add-cart { display: block; width: 100%; padding: 11px; border: 2px solid #076644; background: #fff; color: #076644; font-weight: 700; font-size: .9rem; border-radius: 9px; cursor: pointer; transition: all .2s; text-align: center; margin-bottom: 8px; }
.btn-add-cart:hover { background: #f0faf5; }
.btn-buy-now { display: block; width: 100%; padding: 12px; border: none; background: #076644; color: #fff; font-weight: 700; font-size: .9rem; border-radius: 9px; cursor: pointer; transition: background .2s; text-align: center; margin-bottom: 12px; }
.btn-buy-now:hover { background: #054a32; }

.delivery-info { border-top: 1px solid rgba(7,102,68,0.12); padding-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.delivery-row { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: #6a8580; }
.delivery-row .material-symbols-outlined { font-size: 16px; color: #076644; flex-shrink: 0; }

.promo-code-wrap { display: flex; gap: 6px; }
.promo-input { flex: 1; border: 1.5px solid rgba(7,102,68,0.2); border-radius: 8px; padding: 8px 12px; font-size: .8125rem; outline: none; color: #1a1e2e; background: #f4f9f6; }
.promo-input:focus { border-color: #076644; }
.promo-apply { padding: 8px 14px; background: #076644; color: #fff; border: none; border-radius: 8px; font-size: .8rem; font-weight: 700; cursor: pointer; white-space: nowrap; }
.promo-available { margin-top: 10px; font-size: .76rem; color: #6a8580; display: flex; align-items: flex-start; gap: 6px; }
.promo-available .material-symbols-outlined { font-size: 14px; color: #c5a059; margin-top: 1px; flex-shrink: 0; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon { width: 32px; height: 32px; border-radius: 8px; background: #f0faf5; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon .material-symbols-outlined { font-size: 17px; color: #076644; }
.trust-text { font-size: .75rem; font-weight: 700; color: #1a1e2e; line-height: 1.3; }

.support-widget { display: flex; gap: 8px; }
.support-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; padding: 9px 6px; border-radius: 9px; font-size: .78rem; font-weight: 700; cursor: pointer; transition: all .2s; text-decoration: none; border: 1.5px solid; }
.support-btn.phone { background: #f0faf5; border-color: #076644; color: #076644; }
.support-btn.chat { background: #fdf7ec; border-color: #c5a059; color: #7a5e2a; }
.support-btn .material-symbols-outlined { font-size: 17px; }

.related-product-row { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(7,102,68,0.12); }
.related-product-row:last-child { border-bottom: none; padding-bottom: 0; }
.related-thumb { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(7,102,68,0.12); }
.related-name { font-size: .78rem; font-weight: 600; color: #1a1e2e; line-height: 1.3; margin: 0 0 3px; }
.related-price { font-size: .8rem; font-weight: 800; color: #076644; margin: 0; }
.related-add { margin-left: auto; flex-shrink: 0; width: 28px; height: 28px; border: 1.5px solid #076644; border-radius: 6px; background: none; color: #076644; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .15s; }
.related-add:hover { background: #076644; color: #fff; }
.related-add .material-symbols-outlined { font-size: 16px; }

@media (max-width: 575px) {
  .trust-grid { grid-template-columns: 1fr; }
  .sidebar-card-body { padding: 14px; }
}

/* ============================================
   2d. CHECKOUT SECTION (order page)
   ============================================ */
.checkout-page {
  background: #FDFCF8;
  min-height: 100vh;
}
.checkout-page .invoice-head {
  text-align: center;
  margin-bottom: 2rem;
  width: auto;
}
.checkout-page .invoice-head .invoice-head-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-transform: none;
  border-bottom: none;
  padding: 0;
  position: static;
}
.checkout-page .invoice-head .invoice-head-title img {
  width: 28px;
  height: auto;
  position: static;
}
/* Override legacy flex 50/50 — let Bootstrap cols control width */
.checkout-page .invoice-details {
  display: flex;
  flex-wrap: wrap;
}
.checkout-page .invoice-details .invoice-detail-left,
.checkout-page .invoice-details .invoice-detail-right {
  flex: unset;
}

.checkout-section {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.03);
}
.checkout-section .step-circle {
  width: 32px;
  height: 32px;
  background: #C5A065;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(197, 160, 101, 0.3);
  flex-shrink: 0;
}
.checkout-section .invoice-detail-right-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
}
@media (max-width: 575px) {
  .checkout-section { padding: 1.25rem; }
}

/* Cart item quantity buttons — same style as detail page pi-qty */
.checkout-section .product-detail-quantity {
  display: flex !important;
  align-items: center !important;
  gap: 0.625rem !important;
}
.checkout-section .product-detail-quantity > label {
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 600 !important;
  color: #757575 !important;
  margin: 0 !important;
}
.checkout-section .product-detail-quantity .group {
  display: inline-flex !important;
  align-items: center !important;
  border: 1.5px solid #ebebeb !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #fff !important;
  height: 38px !important;
  flex-shrink: 0 !important;
}
.checkout-section .product-detail-quantity .cart-update {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 100% !important;
  background: transparent !important;
  color: #2d2d2d !important;
  border: none !important;
  cursor: pointer !important;
  transition: all .15s ease !important;
  font-size: 0.8125rem !important;
  font-style: normal !important;
}
.checkout-section .product-detail-quantity .cart-update::before {
  font-family: 'FontAwesome', 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
  display: block;
}
.checkout-section .product-detail-quantity .fa-minus::before { content: '\2212'; }
.checkout-section .product-detail-quantity .fa-plus::before { content: '\002B'; }
.checkout-section .product-detail-quantity .cart-update:hover {
  background: rgba(197, 160, 101, 0.12) !important;
  color: #C5A065 !important;
}
.checkout-section .product-detail-quantity .quantity {
  width: 40px !important;
  height: 100% !important;
  border: none !important;
  border-left: 1.5px solid #ebebeb !important;
  border-right: 1.5px solid #ebebeb !important;
  text-align: center !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  background: #fff !important;
  outline: none !important;
  padding: 0 !important;
  color: #2d2d2d !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}
.checkout-section .product-detail-quantity .quantity::-webkit-outer-spin-button,
.checkout-section .product-detail-quantity .quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* ============================================
   Comments / Reviews — additions to css.php .rv-* base styles
   Avatar palette + initials display (PHP renders <span class="rv-avatar rv-av-N">XX</span>)
   ============================================ */
#topComment .list-item-rating.rv-grid {
  /* 1 review per row */
  display: flex !important;
  flex-direction: column;
  gap: 14px;
}
#topComment .row-comment.rv-card {
  margin: 0 !important;
}

/* Avatar with initials — palette */
#topComment .rv-avatar.rv-av-1 { background: #076644 !important; color: #fff; }
#topComment .rv-avatar.rv-av-2 { background: #b08856 !important; color: #fff; }
#topComment .rv-avatar.rv-av-3 { background: #4a90d9 !important; color: #fff; }
#topComment .rv-avatar.rv-av-4 { background: #c5a059 !important; color: #fff; }
#topComment .rv-avatar.rv-av-5 { background: #6b7c93 !important; color: #fff; }
#topComment .rv-avatar {
  width: 36px !important;
  height: 36px !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Reset h5 default styles when used as .rv-user */
#topComment h5.rv-user {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: inherit !important;
  font-weight: normal !important;
  line-height: normal !important;
  color: inherit !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
}
#topComment h5.rv-user > div {
  flex: 0 1 auto !important;
}
#topComment .rv-name {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #1a1e2e !important;
  margin: 0 0 3px !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

/* Verified badge with custom check (no Material icon dep) */
#topComment .rv-verified .rv-check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #076644;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
}

/* Star rating using ★ unicode (override css.php Material font filled rule) */
#topComment .rv-stars-row .rv-star {
  font-size: 13px !important;
  color: #e5e7eb !important;
  line-height: 1 !important;
  font-variation-settings: normal !important;
}
#topComment .rv-stars-row .rv-star.filled {
  color: #f5b042 !important;
}

/* Body text inside .contentquestion (when also has .rv-body) */
#topComment .contentquestion.rv-body {
  font-family: inherit !important;
  font-style: normal !important;
  font-weight: 400 !important;
  color: #555 !important;
  font-size: 13.5px !important;
  line-height: 1.65 !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

/* Footer reply→helpful */
#topComment .product-comment-box.rv-footer {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
#topComment .rv-footer .rv-date {
  font-size: 12px;
  color: #9aa0a8;
}
#topComment .rv-footer .respondent.rv-helpful {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #6a8580;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
}
#topComment .rv-footer .respondent.rv-helpful:hover {
  color: #076644;
}
#topComment .rv-footer .rv-thumb { font-size: 13px; }

/* Hide legacy .product-comment-box span (date) when there's already .rv-date */
#topComment .product-comment-question h5.rv-user {
  margin: 0 0 12px !important;
  padding: 0 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

/* Reset legacy itemComment border/padding/flex on .row-comment.rv-card */
#topComment .row-comment.rv-card > .itemComment.product-comment-question {
  display: block !important;        /* Override legacy flex to stack vertically */
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Admin reply nested */
#topComment .row-comment .list-reply-comment {
  margin-top: 12px;
  padding-left: 14px;
  border-left: 2px dashed rgba(7, 102, 68, 0.18);
}
#topComment .row-comment .list-reply-comment::before { display: none !important; }
#topComment .row-comment .product-comment-answer.itemComment {
  background: #f0faf5 !important;
  border: 1px solid rgba(7, 102, 68, 0.15) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  margin: 0 0 8px !important;
}
#topComment .comment-answer-head {
  margin-bottom: 4px !important;
}
#topComment .comment-answer-head .admin-reply {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #076644 !important;
  margin: 0 !important;
}
#topComment .product-comment-answer p {
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.6 !important;
  margin: 0 0 4px !important;
}

/* Reply form variant of rf-card (smaller, scoped under .row-comment) */
#topComment .row-comment .rf-card--reply {
  margin-top: 14px;
}
#topComment .row-comment .rf-card--reply .rf-card-header {
  padding: 14px 18px;
}
#topComment .row-comment .rf-card--reply .rf-card-title {
  font-size: 15px;
}
#topComment .row-comment .rf-card--reply .rf-card-sub {
  font-size: 12px;
}
#topComment .row-comment .rf-card--reply .rf-card-body {
  padding: 16px 18px;
}
#topComment .row-comment .rf-card--reply .rf-fields {
  gap: 10px;
  margin-bottom: 14px;
}

/* Override Bootstrap .form-control to inherit .rf-input styles inside rf-card */
.rf-card .rf-field-wrap .rf-input.form-control,
.rf-card .rf-field-wrap input.rf-input,
.rf-card .rf-field-wrap textarea.rf-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  font-size: 14px !important;
  color: #1a1e2e !important;
  padding: 12px 0 !important;
  box-shadow: none !important;
  width: auto !important;
  min-height: auto !important;
}
.rf-card .rf-field-wrap textarea.rf-input.rf-textarea {
  resize: vertical !important;
  min-height: 96px !important;
  line-height: 1.55 !important;
  padding: 12px 0 !important;
}
.rf-card .rf-field-wrap .rf-input::placeholder {
  color: #b0bcb6 !important;
}
.rf-card .rf-field-wrap .rf-input:focus {
  box-shadow: none !important;
  border: none !important;
}
/* Re-assert wrapper border when input focuses (Bootstrap can break focus-within) */
.rf-card .rf-field-wrap:focus-within {
  border-color: #076644 !important;
  box-shadow: 0 0 0 3px rgba(7,102,68,.1) !important;
}

/* Pagination "Xem thêm" */
#topComment .product-comment-more {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 12px;
}
#topComment .product-comment-more .more_comment_sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: rgba(7, 102, 68, 0.08);
  color: #076644 !important;
  font-size: 12px;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
}
#topComment .product-comment-more .more_comment_sub:hover {
  background: #076644;
  color: #fff !important;
}

/* ============================================
   Order Success Page
   ============================================ */
.success-page .success-hero {
  padding: 1rem 0 2rem;
}
.success-page .success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  color: #C5A059;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.3), 0 0 40px -10px rgba(197, 160, 89, 0.4);
  animation: successPulse 1.6s ease-out;
}
.success-page .success-icon .material-symbols-outlined {
  font-size: 48px;
  font-variation-settings: 'FILL' 1;
}
@keyframes successPulse {
  0% { transform: scale(0.6); opacity: 0; box-shadow: 0 0 0 0 rgba(197,160,89,0.5); }
  60% { transform: scale(1.05); opacity: 1; box-shadow: 0 0 0 18px rgba(197,160,89,0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 1px rgba(197,160,89,0.3), 0 0 40px -10px rgba(197,160,89,0.4); }
}
.success-page .success-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #1a1e2e;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.success-page .success-subtitle {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* Order Detail Card */
.order-detail-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.06), 0 8px 16px -4px rgba(0,0,0,0.02);
  overflow: hidden;
}
.order-detail-card .odc-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fafaf7;
}
.order-detail-card .odc-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  font-weight: 700;
  margin: 0 0 0.375rem;
}
.order-detail-card .odc-code {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C5A059;
  margin: 0;
  letter-spacing: 0.02em;
}
.order-detail-card .odc-btn-primary,
.order-detail-card .odc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.order-detail-card .odc-btn-primary {
  background: #1a1e2e;
  color: #fff;
}
.order-detail-card .odc-btn-primary:hover {
  background: #C5A059;
}
.order-detail-card .odc-btn-secondary {
  background: #fff;
  color: #555;
  border: 1px solid #ebebeb;
}
.order-detail-card .odc-btn-secondary:hover {
  border-color: #C5A059;
  color: #C5A059;
}
.order-detail-card .odc-btn-primary .material-symbols-outlined,
.order-detail-card .odc-btn-secondary .material-symbols-outlined {
  font-size: 18px;
}

/* Items */
.order-detail-card .odc-items {
  padding: 1.25rem 0.875rem;
  background: #f8f7f4;
  border-bottom: 1px solid #f0f0f0;
}
.order-detail-card .odc-item {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 0.625rem;
}
.order-detail-card .odc-item-info {
  flex: 1 1 calc(100% - 96px);
}
.order-detail-card .odc-item-price {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
  gap: 1rem;
  flex-wrap: wrap;
}
.order-detail-card .odc-price-block,
.order-detail-card .odc-qty-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.order-detail-card .odc-qty-block { text-align: right; }
.order-detail-card .odc-price-label,
.order-detail-card .odc-qty-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #999;
  font-weight: 600;
}
.order-detail-card .odc-price-block {
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.order-detail-card .odc-price-block .odc-price-label {
  width: 100%;
  margin-bottom: 0.125rem;
}
.order-detail-card .odc-price-old {
  font-size: 0.8125rem;
  color: #b0b0b0;
  text-decoration: line-through;
}
.order-detail-card .odc-price-sale {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C5A059;
}
.order-detail-card .odc-price-badge {
  background: #fef2f2;
  color: #c53030;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.125rem 0.5rem;
  border-radius: 99px;
  border: 1px solid #fcd5d5;
  letter-spacing: 0;
  text-transform: none;
}
.order-detail-card .odc-qty-val {
  font-size: 0.875rem;
  color: #555;
}
.order-detail-card .odc-qty-val strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem;
  color: #1a1e2e;
  font-weight: 700;
  margin-left: 0.25rem;
}
.order-detail-card .odc-item:last-child { margin-bottom: 0; }
.order-detail-card .odc-item-img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #ebebeb;
}
.order-detail-card .odc-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-detail-card .odc-item-img .material-symbols-outlined {
  color: #c5b89e;
  font-size: 32px;
}
.order-detail-card .odc-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1a1e2e;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}
.order-detail-card .odc-item-meta {
  font-size: 0.8125rem;
  color: #888;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem 0.625rem;
  align-items: center;
}
.order-detail-card .odc-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  background: #f5f3ee;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #555;
  white-space: nowrap;
}
.order-detail-card .odc-color-chip {
  flex-wrap: wrap;
  white-space: normal;
  row-gap: 0.375rem;
}
.order-detail-card .odc-color-chip > strong { flex-shrink: 0; }
.order-detail-card .odc-item-name {
  word-break: break-word;
  overflow-wrap: anywhere;
}
.order-detail-card .odc-chip strong {
  color: #2d2d2d;
  font-weight: 600;
}
.order-detail-card .odc-chip-muted {
  background: transparent;
  color: #999;
  padding-left: 0;
}
.order-detail-card .odc-color-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.order-detail-card .odc-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #C5A059;
  margin: 0;
}
.order-detail-card .odc-qty {
  font-size: 0.75rem;
  color: #999;
  margin: 0.25rem 0 0;
}

/* Details grid */
.order-detail-card .odc-details {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid #f0f0f0;
}
.order-detail-card .odc-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2d2d2d;
  margin: 0;
}
.order-detail-card .odc-value.odc-total {
  color: #C5A059;
  font-weight: 700;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
}
.order-detail-card .odc-note {
  font-size: 0.875rem;
  color: #555;
  font-style: italic;
  background: #faf6ee;
  padding: 0.625rem 0.875rem;
  border-left: 2px solid #C5A059;
  border-radius: 0 4px 4px 0;
}

/* Summary */
.order-detail-card .odc-summary {
  padding: 1.25rem 1.75rem;
  background: #fafaf7;
  border-bottom: 1px solid #f0f0f0;
}
.order-detail-card .odc-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  color: #555;
  padding: 0.375rem 0;
}
.order-detail-card .odc-summary-row .odc-discount {
  color: #c53030;
  font-weight: 600;
}
.order-detail-card .odc-summary-total {
  border-top: 1px solid #ebebeb;
  margin-top: 0.5rem;
  padding-top: 0.875rem;
  font-size: 1.0625rem;
  color: #1a1e2e;
  font-weight: 700;
}
.order-detail-card .odc-summary-total span:last-child {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  color: #C5A059;
}

/* Email notice */
.order-detail-card .odc-email-notice {
  padding: 0.875rem 1.25rem;
  background: rgba(197, 160, 89, 0.08);
  text-align: center;
  font-size: 0.875rem;
  color: #6a5a3a;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.order-detail-card .odc-email-notice .material-symbols-outlined {
  font-size: 18px;
  color: #C5A059;
  vertical-align: -4px;
  margin-right: 0.375rem;
}
.order-detail-card .odc-email-notice strong {
  display: inline-block;
}

/* Continue button */
.success-page .odc-btn-continue {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: #fff;
  color: #1a1e2e;
  border: 1px solid #C5A059;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease;
  min-width: 240px;
  justify-content: center;
}
.success-page .odc-btn-continue:hover {
  background: #C5A059;
  color: #fff;
  box-shadow: 0 8px 16px -4px rgba(197,160,89,0.3);
}
.success-page .odc-btn-continue .material-symbols-outlined {
  font-size: 18px;
  transition: transform .2s ease;
}
.success-page .odc-btn-continue:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Payment info from config */
.success-page .odc-payment-info {
  font-size: 0.875rem;
  color: #555;
  line-height: 1.7;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
}

@media (max-width: 575px) {
  .order-detail-card .odc-header,
  .order-detail-card .odc-details,
  .order-detail-card .odc-summary { padding: 1rem 1.25rem; }
  .order-detail-card .odc-items { padding: 1rem 0.625rem; }

  /* Order details — 1 field per row on mobile, label LEFT + value RIGHT inline */
  .order-detail-card .odc-details .row {
    --bs-gutter-y: 0.625rem;
    --bs-gutter-x: 0;
  }
  .order-detail-card .odc-details .row > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .order-detail-card .odc-details .row > [class*="col-"]:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .order-detail-card .odc-details .odc-label {
    font-size: 0.7rem;
    margin: 0;
    flex-shrink: 0;
  }
  .order-detail-card .odc-details .odc-value {
    font-size: 0.9375rem;
    line-height: 1.4;
    text-align: right;
    margin: 0;
  }
  .order-detail-card .odc-details .odc-value.odc-total {
    font-size: 1.125rem;
  }
  .order-detail-card .odc-details .odc-note {
    text-align: left;
    width: 100%;
  }

  .order-detail-card .odc-item {
    padding: 0.875rem;
    justify-content: center;
    text-align: center;
  }
  .order-detail-card .odc-item-img {
    width: 110px;
    height: 110px;
    margin: 0 auto;
  }
  .order-detail-card .odc-item-info {
    flex: 1 1 100%;
    margin-top: 0.5rem;
    text-align: center;
  }
  .order-detail-card .odc-item-name { font-size: 1rem; }
  .order-detail-card .odc-item-meta { justify-content: center; }
  .order-detail-card .odc-color-chip {
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .order-detail-card .odc-color-chip .scent-btn { flex-shrink: 0; }
  .order-detail-card .odc-item-price {
    flex-direction: column;
    text-align: center;
    align-items: stretch;
    gap: 0.625rem;
  }
  .order-detail-card .odc-price-block {
    justify-content: center;
  }
  .order-detail-card .odc-qty-block {
    text-align: center;
  }
}

/* Checkout submit button — Gửi Thông Tin Đặt Hàng */
.checkout-page .checkout-method {
  margin-top: 1.5rem !important;
  text-align: center;
}
.checkout-page .checkout-method button#btn-payment,
.checkout-page .checkout-method button.send {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  width: 100% !important;
  height: 56px !important;
  background: #C5A065 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.875rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border: none !important;
  border-radius: 4px !important;
  box-shadow: 0 10px 15px -3px rgba(197, 160, 101, 0.25) !important;
  cursor: pointer !important;
  transition: all .2s ease !important;
  font-family: inherit !important;
  margin: 0 auto !important;
}
.checkout-page .checkout-method button#btn-payment::after,
.checkout-page .checkout-method button.send::after {
  content: '→';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
.checkout-page .checkout-method button#btn-payment:hover,
.checkout-page .checkout-method button.send:hover {
  background: #B08D55 !important;
  box-shadow: 0 14px 20px -4px rgba(197, 160, 101, 0.35) !important;
  transform: translateY(-1px);
}
.checkout-page .checkout-method button#btn-payment:active,
.checkout-page .checkout-method button.send:active {
  transform: translateY(0);
}

/* Customer info inputs inside checkout-section */
.checkout-section .customer-info {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
}
.checkout-section .customer-info .row {
  margin: 0 !important;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.checkout-section .customer-info .row .col {
  padding: 0 !important;
  flex: 1 1 calc(50% - 0.5rem);
  min-width: 0;
}
.checkout-section .customer-info .form-group {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}
.checkout-section .customer-info .form-control,
.checkout-section .customer-info input[type="text"],
.checkout-section .customer-info input[type="tel"],
.checkout-section .customer-info input[type="email"],
.checkout-section .customer-info select.form-control,
.checkout-section .customer-info textarea.form-control {
  width: 100% !important;
  height: 44px !important;
  padding: 0 1rem !important;
  border: 1px solid #ebebeb !important;
  border-radius: 6px !important;
  background: #fff !important;
  font-size: 0.9375rem !important;
  font-weight: 400 !important;
  color: #2d2d2d !important;
  outline: none !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03) !important;
  transition: all .2s ease !important;
  font-family: inherit !important;
  line-height: 44px !important;
  box-sizing: border-box !important;
}
.checkout-section .customer-info textarea.form-control {
  height: auto !important;
  min-height: 88px !important;
  padding: 0.75rem 1rem !important;
  line-height: 1.6 !important;
  resize: vertical;
}
.checkout-section .customer-info .form-control:focus {
  border-color: #C5A065 !important;
  box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.12) !important;
}
.checkout-section .customer-info .form-control::placeholder {
  color: #9aa0b0 !important;
  font-weight: 400 !important;
  opacity: 1 !important;
}

/* Province / City selects in form-area */
.checkout-section .customer-info .form-area {
  display: flex;
  gap: 1rem;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: wrap;
}
.checkout-section .customer-info .form-area .btn-group {
  flex: 1 1 calc(50% - 0.5rem);
  display: block;
  min-width: 0;
}
.checkout-section .customer-info .form-area select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%239aa0b0' d='M6 8L0 0h12z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
  text-align: left !important;
  cursor: pointer;
  line-height: normal !important;
}
/* Placeholder color when select default option (value=0) is selected */
.checkout-section .customer-info .form-area select.form-control:has(option[value="0"]:checked) {
  color: #9aa0b0 !important;
}
/* All option items render with normal dark color when dropdown is open */
.checkout-section .customer-info .form-area select.form-control option {
  color: #2d2d2d !important;
}

/* Payment options inside checkout-section */
.checkout-section .payment-option {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkout-section .click_payment {
  position: relative;
  padding: 1.25rem;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: all .2s ease;
  display: block;
}
.checkout-section .click_payment:hover {
  border-color: rgba(197, 160, 101, 0.4);
  background: #fafafa;
}
.checkout-section .click_payment input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-section .click_payment .checkmark {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1.5px solid #d1d5db;
  background: #fff;
  margin: 0 1rem 0 0;
  vertical-align: middle;
  transition: all .15s ease;
  flex-shrink: 0;
}
.checkout-section .click_payment input[type="radio"]:checked ~ .checkmark,
.checkout-section .click_payment.has-checked .checkmark {
  border-color: #C5A065;
  background: #C5A065;
  box-shadow: inset 0 0 0 3px #fff;
}
.checkout-section .click_payment .check-group {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #2d2d2d;
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  font-size: 0.9375rem;
}
.checkout-section .click_payment:has(input:checked) {
  border-color: rgba(197, 160, 101, 0.5);
  background: rgba(197, 160, 101, 0.04);
}
.checkout-section .click_payment:has(input:checked) .checkmark {
  border-color: #C5A065;
  background: #C5A065;
  box-shadow: inset 0 0 0 3px #fff;
}
.checkout-section .pttt_pay {
  display: none;
  margin-top: 0.875rem;
  padding: 0.875rem 1rem;
  background: #f8f7f4;
  border-radius: 4px;
  font-size: 0.8125rem;
  color: #555;
  line-height: 1.6;
}
.checkout-section .pttt_pay.ptttactive,
.checkout-section .click_payment:has(input:checked) .pttt_pay {
  display: block;
}
.checkout-section .payment-policy {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(197, 160, 101, 0.06);
  border-left: 2px solid #C5A065;
  border-radius: 2px;
  font-size: 0.8125rem;
  color: #6a5a3a;
}

/* Product summary (coupon + totals) inside checkout-section */
.checkout-section .product-summary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ebebeb;
}
/* Override css.php legacy styles — flex column, no orange borders */
.checkout-section .product-summary {
  display: block !important;
  margin: 1.5rem 0 0 !important;
}
.checkout-section .product-coupon {
  flex: none !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 1.25rem;
  width: 100%;
}
.checkout-section .product-coupon-label {
  font-size: 0.7rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-weight: 600 !important;
  color: #757575 !important;
  margin: 0 0 0.5rem !important;
  text-align: left !important;
  width: auto !important;
}
.checkout-section .product-summary .product-summary-total {
  margin-left: 0 !important;
}
.checkout-section .product-detail-saleoff {
  display: flex !important;
  gap: 0.625rem !important;
  align-items: stretch !important;
}
.checkout-section .product-detail-saleoff input[type="text"],
.checkout-section .product-detail-saleoff #voucherCode,
.checkout-section .product-detail-saleoff input[name="voucherCode"] {
  flex: 1 !important;
  border: 1px solid #ebebeb !important;
  border-radius: 8px !important;
  padding: 0 1.25rem !important;
  font-size: 1rem !important;
  color: #2d2d2d !important;
  background: #fff !important;
  outline: none !important;
  height: 38px !important;
  line-height: 38px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
  transition: all .2s ease;
}
.checkout-section .product-detail-saleoff input:focus {
  border-color: #C5A065 !important;
  box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.12) !important;
}
.checkout-section .product-detail-saleoff input::placeholder { color: #9aa0b0; font-weight: 400; }
.checkout-section .product-detail-saleoff button,
.checkout-section .product-detail-saleoff .checkVoucher {
  padding: 0 1.5rem !important;
  background: #fff !important;
  color: #2d2d2d !important;
  border: 1px solid #ebebeb !important;
  border-radius: 8px !important;
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  cursor: pointer;
  transition: all .2s ease;
  height: 38px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap;
}
.checkout-section .product-detail-saleoff button:hover,
.checkout-section .product-detail-saleoff .checkVoucher:hover {
  border-color: #C5A065 !important;
  color: #C5A065 !important;
  background: rgba(197, 160, 101, 0.04) !important;
}

/* Totals breakdown */
.checkout-section .product-summary-total {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.checkout-section .product-summary-total .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #555;
}
.checkout-section .product-summary-total .item label {
  margin: 0;
  font-weight: 400;
  cursor: default;
}
.checkout-section .product-summary-total .item label:first-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #757575;
}
.checkout-section .product-summary-total .item:last-child {
  margin-top: 0.625rem;
  padding-top: 1rem;
  border-top: 1px solid #ebebeb;
}
.checkout-section .product-summary-total .item:last-child label:first-child {
  font-size: 0.8125rem;
  color: #2d2d2d;
  letter-spacing: 0.08em;
}
.checkout-section .product-summary-total .item .price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C5A065;
  text-transform: none;
  letter-spacing: 0;
}
.checkout-section .product-summary-total #voucherup .total_up {
  color: #c53030;
  font-weight: 600;
}
.checkout-section .product-summary-total #voucherup.divtag_hidde {
  display: none;
}

.checkout-section .product-notes {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #f8f7f4;
  border-radius: 4px;
  font-size: 0.8125rem;
  color: #757575;
  line-height: 1.6;
}
.checkout-section .product-notes:empty { display: none; }

.checkout-section .product-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(197, 160, 101, 0.08);
  color: #8a6f3a;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 99px;
  text-decoration: none;
  transition: all .2s;
}
.checkout-section .product-more:hover {
  background: #C5A065;
  color: #fff;
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */

/* Container */
.container-custom {
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Text Colors */
.text-primary {
  color: var(--color-primary) !important;
}

.text-gold {
  color: var(--color-primary) !important;
}

/* Custom Gold Outline Button */
.btn-outline-gold {
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  /* Increased from 1px default */
  background: transparent;
  font-weight: 700;
  letter-spacing: 0.1em;
  /* Increased spacing */
}

.btn-outline-gold:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.text-primary-dark {
  color: var(--color-primary-dark);
}

.text-slate-dark {
  color: var(--color-slate-dark);
}

.text-slate-light {
  color: var(--color-slate-light);
}

.text-slate-600 {
  color: var(--color-slate-600);
}

.text-slate-700 {
  color: var(--color-slate-700);
}

.text-slate-800 {
  color: var(--color-slate-800);
}

.text-slate-900 {
  color: var(--color-slate-900);
}

.text-gray-300 {
  color: var(--color-gray-300);
}

.text-gray-400 {
  color: var(--color-gray-400);
}

.text-gray-500 {
  color: var(--color-gray-500);
}

/* Background Colors */
.bg-primary {
  background-color: var(--color-primary);
}

.bg-primary-dark {
  background-color: var(--color-primary-dark);
}

.bg-surface {
  background-color: var(--color-surface);
}

.bg-background-pearl {
  background-color: var(--color-background-pearl);
}

.bg-background-slate {
  background-color: var(--color-background-slate);
}

.bg-slate-900 {
  background-color: var(--color-slate-900);
}

.bg-gray-50 {
  background-color: var(--color-gray-50);
}

.bg-gray-100 {
  background-color: var(--color-gray-100);
}

/* Borders */
.border-primary {
  border-color: var(--color-primary);
}

.border-gray-100 {
  border-color: var(--color-gray-100);
}

.border-gray-200 {
  border-color: var(--color-gray-200);
}

.border-gray-300 {
  border-color: var(--color-gray-300);
}

.border-slate-800 {
  border-color: #1e293b;
}

/* Font Families */
.font-sans {
  font-family: var(--font-sans);
}

.font-serif {
  font-family: var(--font-serif);
}

/* Transitions */
.transition-smooth {
  transition: var(--transition-base);
}

.transition-slow {
  transition: var(--transition-slow);
}

.transition-fast {
  transition: var(--transition-fast);
}

/* Gaps (Bootstrap doesn't have all gap utilities) */
.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* Tracking (letter-spacing) */
.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

/* Leading (line-height) */
.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* ============================================
   4. HEADER COMPONENT
   ============================================ */
.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 64px;
}

@media (min-width: 576px) {
  .header-main {
    height: 80px;
  }
}

.header-main .container-custom {
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  font-size: 28px;
}

.header-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  color: var(--color-slate-800);
}

@media (min-width: 576px) {
  .header-logo-text {
    font-size: 1.75rem;
  }
}

.header-nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-slate-600);
  letter-spacing: 0.025em;
  transition: color 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header-nav-link:hover {
  color: var(--color-primary);
}

.header-search-container {
  display: flex;
  align-items: center;
  background-color: var(--color-gray-50);
  border-radius: var(--radius-full);
  padding: 0 0.75rem;
  height: 40px;
  width: 256px;
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-base);
}

.header-search-container:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.2);
}

.header-search-input {
  background: transparent;
  border: none;
  font-size: 0.875rem;
  color: var(--color-slate-700);
  width: 100%;
  margin-left: 0.5rem;
  outline: none;
}

.header-search-input::placeholder {
  color: var(--color-gray-400);
}

.header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: transparent;
  border: none;
  color: var(--color-slate-700);
  transition: background-color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.header-icon-btn:hover {
  background-color: var(--color-gray-50);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: #C5A059;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(197, 160, 89, 0.35);
  pointer-events: none;
  animation: cartBadgePop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes cartBadgePop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.header-icon-btn:hover .cart-badge {
  transform: scale(1.06);
  transition: transform .15s ease;
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  /* height: 600px; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 10px;
}

@media (min-width: 576px) {
  .hero-section {
    height: 750px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--color-background-pearl),
      rgba(249, 249, 247, 0.9),
      transparent);
}

@media (min-width: 576px) {
  .hero-overlay {
    background: linear-gradient(to right,
        var(--color-background-pearl),
        rgba(249, 249, 247, 0.8),
        rgba(0, 0, 0, 0.2));
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .hero-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(197, 160, 101, 0.5);
  background-color: rgba(197, 160, 101, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  backdrop-filter: blur(8px);
  align-self: flex-start;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-slate-800);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 48rem;
}

@media (min-width: 576px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
    /* Increased from 4.5rem to match visual weight */
  }
}

.hero-title-gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-slate-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-slate-600);
  max-width: 36rem;
  font-weight: 300;
  line-height: 1.625;
}

@media (min-width: 576px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

/* ============================================
   6. BUTTONS
   ============================================ */
.btn-primary-custom {
  background-color: var(--color-primary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: var(--transition-base);
  box-shadow: 0 10px 15px -3px rgba(197, 160, 101, 0.2);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-custom:hover {
  background-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 15px 20px -3px rgba(197, 160, 101, 0.3);
}

.btn-secondary-custom {
  background-color: white;
  color: var(--color-slate-700);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  transition: var(--transition-base);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-sm);
}

.btn-secondary-custom:hover {
  background-color: var(--color-gray-50);
  box-shadow: var(--shadow-md);
}

/* ============================================
   7. BRAND SECTION
   ============================================ */
.brand-section {
  /* border-top: 1px solid var(--color-gray-200); */
  border-bottom: 1px solid var(--color-gray-200);
  background-color: white;
  padding: 3rem 0;
}

.brand-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}

.brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

.brand-container:hover {
  opacity: 1;
}

.brand-logo {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-slate-700);
  transition: color 0.3s ease;
  cursor: default;
}

.brand-logo:hover {
  color: var(--color-primary);
}

.brand-logo.italic {
  font-style: italic;
  letter-spacing: -0.05em;
}

.brand-logo.wide {
  letter-spacing: 0.1em;
}

.brand-logo.bordered {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border: 2px solid var(--color-slate-700);
  padding: 0 0.5rem;
}

.brand-logo.bordered:hover {
  border-color: var(--color-primary);
}

@media (min-width: 768px) {
  .brand-container {
    gap: 5rem;
  }
}

/* ============================================
   8. PRODUCT FINDER SECTION
   ============================================ */
.finder-section {
  padding: 6rem 1rem;
  background-color: var(--color-background-slate);
}

.finder-card {
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-gray-100);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.finder-image {
  position: relative;
  height: 288px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .finder-image {
    height: 100%;
    min-height: 400px;
  }
}

.finder-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(197, 160, 101, 0.1);
  mix-blend-mode: overlay;
}

.finder-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .finder-content {
    padding: 4rem;
  }
}

.finder-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-slate-800);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .finder-title {
    font-size: 2.25rem;
  }
}

.finder-description {
  color: var(--color-slate-500);
  line-height: 1.625;
}

.finder-question {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.finder-option {
  border: 1px solid var(--color-gray-200);
  background-color: transparent;
  color: var(--color-slate-600);
  padding: 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-base);
  text-align: center;
  cursor: pointer;
}

.finder-option:hover {
  border-color: var(--color-primary);
  background-color: rgba(197, 160, 101, 0.05);
  color: var(--color-primary-dark);
}

.finder-link {
  margin-top: 1rem;
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(166, 133, 79, 0.3);
  padding-bottom: 0.125rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.finder-link:hover {
  gap: 0.75rem;
  color: var(--color-primary-dark);
}

/* ============================================
   9. PRODUCT CARDS
   ============================================ */
.products-section {
  padding: 5rem 1rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-slate-800);
  margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  color: var(--color-slate-500);
  font-weight: 300;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.25s, color 0.25s;
}
.section-link .fas {
  font-size: 0.625rem;
  transition: transform 0.25s;
}
.section-link:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
  gap: 0.5rem;
}
.section-link:hover .fas {
  transform: translateX(2px);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Roboto', sans-serif;
 
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-primary-dark);
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary) !important;
}

.badge-gold {
  background-color: var(--color-primary);
  color: white;
}

.product-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition-base);
  border: 1px solid transparent;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.product-image-container {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--color-gray-100);
}

.product-image {
  width: 100%;
  height: 100%;
  max-height: 320px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--color-primary);
  color: white;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.product-badge.new {
  background-color: var(--color-slate-800);
}

.product-cart-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: white;
  color: var(--color-slate-800);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(1rem);
  transition: var(--transition-base);
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}

.product-card:hover .product-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

.product-cart-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.product-info {
  padding: 0;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  font-weight: 700;
}

.product-name {
  color: var(--color-slate-800);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: var(--color-primary);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  color: var(--color-slate-700);
  font-weight: 700;
}

.product-rating {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 0.75rem;
}

.product-rating-value {
  margin-left: 0.25rem;
  color: var(--color-gray-400);
}

/* ============================================
   10. TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  position: relative;
  padding: 6rem 0;
  background-color: var(--color-slate-900);
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      var(--color-slate-900),
      rgba(15, 23, 42, 0.95),
      rgba(15, 23, 42, 0.4));
  z-index: 10;
}

.testimonial-content {
  position: relative;
  z-index: 20;
  max-width: 32rem;
}

.testimonial-title {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 576px) {
  .testimonial-title {
    font-size: 3rem;
  }
}

.testimonial-text {
  color: #d1d5db;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.625;
  font-weight: 300;
}

.testimonial-highlight {
  color: var(--color-primary);
}

.testimonial-link {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s ease;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 0.25rem;
  display: inline-block;
  text-decoration: none;
}

.testimonial-link:hover {
  color: white;
}

/* ============================================
   11. NEWSLETTER SECTION
   ============================================ */
/* Newsletter Section */
.newsletter-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: var(--color-background-pearl);
  /* Match home.html: bg-background-pearl */
  border-top: 1px solid var(--color-gray-200);
}

.newsletter-container {
  max-width: 36rem;
  /* max-w-xl */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.newsletter-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.newsletter-icon span {
  font-size: 48px !important;
  color: var(--color-primary);
}

.newsletter-title {
  font-size: 1.875rem;
  /* text-3xl */
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-slate-800);
  /* Match home.html: text-slate-800 */
  margin-bottom: 0.75rem;
}

.newsletter-description {
  color: var(--color-slate-500);
  /* Match home.html: text-slate-500 */
  margin-bottom: 2.5rem;
  font-weight: 300;
  /* font-light */
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 28rem;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  background-color: white;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-slate-800);
  transition: var(--transition-base);
}

.newsletter-input::placeholder {
  color: var(--color-gray-400);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.1);
}

.newsletter-button {
  background-color: var(--color-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.newsletter-button:hover {
  background-color: var(--color-primary-dark);
}

/* ============================================
   12. FOOTER
   ============================================ */
.footer-main {
  background-color: var(--color-slate-900);
  color: #d1d5db;
  border-top: 1px solid #1e293b;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  color: var(--color-primary);
}

.footer-logo-text {
  color: white;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-family: var(--font-serif);
  text-transform: uppercase;
}

.footer-description {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.625;
  padding-right: 1rem;
}

.footer-heading {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-link {
  color: #9ca3af;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: #9ca3af;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 2rem;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: #6b7280;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  color: #6b7280;
  font-size: 0.75rem;
}

.footer-legal a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #d1d5db;
}

/* ============================================
   12B. MOBILE FIXES FOR MAIN SECTIONS
   ============================================ */
@media (max-width: 767px) {
  .testimonial-section {
    padding: 3rem 0;
  }
  .testimonial-bg {
    background-attachment: scroll;
  }
  .testimonial-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  .testimonial-text {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
  }
  .testimonial-link {
    font-size: 0.875rem;
  }
  .newsletter-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .newsletter-title {
    font-size: 1.375rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-button {
    width: 100%;
  }
  .products-section {
    padding: 3rem 0.5rem;
  }
  .brand-section {
    padding: 2rem 0;
  }
  .brand-title {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .brand-logo {
    font-size: 1.375rem;
  }
  .brand-logo.bordered {
    font-size: 1.125rem;
  }
  .brand-container {
    gap: 1.5rem;
  }
  .finder-section {
    padding: 3rem 1rem;
  }
}

/* ============================================
   13. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 767px) {
  .container-custom {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-link {
    display: none;
  }
}

/* Material Icons sizing */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.material-symbols-outlined.fill {
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ============================================
   CATEGORY PRODUCT PAGE STYLES
   ============================================ */

/* ============================================
   1. HERO CATEGORY SECTION
   ============================================ */
.hero-category {
  position: relative;
  height: 65vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-category-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.hero-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-background-pearl), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2));
  z-index: 1;
}

.hero-category-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin-top: 3rem;
}

.category-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(197, 160, 101, 0.4);
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.category-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--color-slate-900);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.category-description {
  font-size: 1.125rem;
  color: var(--color-slate-700);
  font-weight: 500;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .category-title {
    font-size: 4.5rem;
  }

  .category-description {
    font-size: 1.25rem;
  }
}

/* ============================================
   2. BREADCRUMB
   ============================================ */
.breadcrumb-container {
  padding: 2rem 0;
}

.breadcrumb {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  padding: 0 0.5rem;
  color: var(--color-gray-400);
}

.breadcrumb-item a {
  color: var(--color-gray-500);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--color-primary);
}

.breadcrumb-item.active {
  color: var(--color-slate-900);
  font-weight: 700;
}

/* ============================================
   3. FILTER PANEL
   ============================================ */
.filter-panel {
  position: sticky;
  top: 7rem;
  background-color: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-gray-100);
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.filter-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-slate-900);
}

.filter-reset-btn {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-reset-btn:hover {
  color: var(--color-primary-dark);
}

.filter-section {
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--color-slate-900);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter-section-title .material-symbols-outlined {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  transition: color 0.3s ease;
}

.filter-section-title:hover .material-symbols-outlined {
  color: var(--color-primary);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-advanced-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-gray-100);
}

.filter-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid #e8dfc5;
  background: #faf6ee;
  color: var(--color-slate-dark);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-base);
}

.filter-tag:hover {
  border-color: var(--color-primary);
  background: rgba(197, 160, 89, 0.15);
  color: var(--color-primary);
}
.filter-tag.is-active,
.filter-tag.active {
  background: #C5A059;
  border-color: #C5A059;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(197, 160, 89, 0.35);
  position: relative;
  padding-right: 1.875rem;
}
.filter-tag.is-active::after,
.filter-tag.active::after {
  content: '✓';
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.25);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Custom Checkbox */
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-mark {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  background-color: var(--color-surface);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.custom-checkbox input[type="checkbox"]:checked~.checkbox-mark {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.custom-checkbox input[type="checkbox"]:checked~.checkbox-mark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: 700;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  transition: color 0.3s ease;
}

.custom-checkbox:hover .checkbox-label {
  color: var(--color-primary);
}

/* Custom Radio */
.custom-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
}

.custom-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-mark {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-gray-300);
  border-radius: 50%;
  background-color: var(--color-surface);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.custom-radio input[type="radio"]:checked~.radio-mark {
  border-color: var(--color-primary);
}

.custom-radio input[type="radio"]:checked~.radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-primary);
}

.radio-label {
  font-size: 0.875rem;
  color: var(--color-slate-600);
  transition: color 0.3s ease;
}

.custom-radio:hover .radio-label {
  color: var(--color-primary);
}

/* Range Slider */
.range-slider {
  width: 100%;
  height: 6px;
  background: var(--color-gray-200);
  border-radius: var(--radius-lg);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.range-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-gray-500);
}

/* ============================================
   4. PRODUCT CONTROLS & GRID
   ============================================ */
.product-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background-color: var(--color-surface);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
}

.product-count {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin: 0;
}

.product-count strong {
  color: var(--color-slate-900);
  font-weight: 700;
}

.sort-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
}

.sort-select {
  background: transparent;
  border: none;
  color: var(--color-slate-900);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  outline: none;
}

.sort-select:focus {
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 4rem;
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* ============================================
   5. PRODUCT CARD
   ============================================ */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--color-surface);
  padding: 0rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-50);
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

.product-image {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background-color: var(--color-gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.product-badge-new {
  background-color: rgba(197, 160, 89, 0.9);
  color: white;
}

.product-badge-bestseller {
  background: linear-gradient(135deg, #FDE68A, #D97706);
  color: #1a1410;
}

.product-badge-sale {
  background: linear-gradient(135deg, #ef4444, #c53030);
  color: #fff;
  gap: 5px;
}
.product-badge-sale svg {
  display: inline-block;
  flex-shrink: 0;
  animation: badgeSalePulse 1.4s ease-in-out infinite;
  transform-origin: center;
}
.product-badge-sale svg path { fill: #ffe17a !important; }

/* ============================================
   Dual Range Slider — Filter Price
   ============================================ */
.dual-range-wrap {
  position: relative;
  height: 36px;
  margin: 8px 0;
}
.dual-range-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  transform: translateY(-50%);
  z-index: 0;
}
.dual-range-wrap input[type="range"] {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 4px;
  margin: 0;
  padding: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  transform: translateY(-50%);
  z-index: 1;
  outline: none;
}
.dual-range-wrap input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  height: 4px;
}
.dual-range-wrap input[type="range"]::-moz-range-track {
  background: transparent;
  height: 4px;
  border: none;
}
/* Thumbs */
.dual-range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C5A059;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  margin-top: -8px;
  position: relative;
  z-index: 2;
}
.dual-range-wrap input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #C5A059;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.dual-range-wrap input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(197,160,89,0.2), 0 2px 6px rgba(0,0,0,0.25);
}
.dual-range-wrap input[type="range"]::-webkit-slider-thumb:hover {
  background: #a8843a;
}
/* Selected range track (dynamic via JS would be better, fallback gold tint always) */
.dual-range-wrap input.range-max {
  z-index: 1;
}
.dual-range-wrap input.range-min {
  z-index: 2;
}
.range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 12px;
  color: #555;
}
.range-values strong {
  color: #C5A059;
  font-weight: 700;
}
.price-apply-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 8px 14px;
  background: #5a4a30;          /* dim/dark when disabled (no change) */
  color: rgba(255,255,255,0.7);
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: not-allowed;
  transition: all .25s ease;
  box-shadow: none;
  opacity: 0.6;
}
.price-apply-btn.is-active,
.price-apply-btn:not(:disabled) {
  background: #C5A059;          /* light gold when range changed */
  color: #fff;
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 2px 6px rgba(197,160,89,0.25);
}
.price-apply-btn.is-active:hover,
.price-apply-btn:not(:disabled):hover {
  background: #a8843a;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(197,160,89,0.35);
}
.price-apply-btn:active { transform: translateY(0); }

/* Active filter chips above product grid */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(197, 160, 89, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 8px;
}
.active-filters-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #8a6f3a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.5rem 0.375rem 0.75rem;
  background: #fff;
  border: 1px solid #e5d9b8;
  border-radius: 99px;
  font-size: 0.75rem;
  text-decoration: none;
  color: #2d2d2d;
  transition: all .2s ease;
  white-space: nowrap;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.active-filter-chip:hover {
  background: #C5A059;
  color: #fff;
  border-color: #C5A059;
  text-decoration: none;
}
.active-filter-chip .chip-label {
  color: #8a6f3a;
  font-weight: 600;
}
.active-filter-chip:hover .chip-label { color: rgba(255,255,255,0.85); }
.active-filter-chip .chip-value {
  color: #1a1e2e;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
}
.active-filter-chip:hover .chip-value { color: #fff; }
.active-filter-chip .chip-close {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 0.125rem;
}
.active-filter-chip:hover .chip-close {
  background: rgba(255,255,255,0.25);
  color: #fff;
}
.active-filter-clear {
  font-size: 0.75rem;
  font-weight: 600;
  color: #c53030;
  text-decoration: underline;
  margin-left: auto;
  padding: 0.375rem 0.5rem;
  white-space: nowrap;
}
.active-filter-clear:hover {
  color: #8a1010;
  text-decoration: none;
}

/* ============================================
   Gift box + Countdown — light & compact
   ============================================ */
.pi-gift-box {
  background: #fffaf0 !important;
  border: 1px solid #f1e2bd !important;
  border-radius: 8px !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
  overflow: hidden;
}

/* Gift content header */
.pi-gift-box .info_gift {
  padding: 10px 12px 6px;
  font-size: 13px;
  color: #4a3a1c;
  line-height: 1.55;
}
.pi-gift-box .info_gift::before {
  content: '🎁  Quà tặng kèm';
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #b88e3f;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.pi-gift-box .info_gift p,
.pi-gift-box .info_gift ul,
.pi-gift-box .info_gift ol {
  margin: 0;
  padding: 0;
}
.pi-gift-box .info_gift ul,
.pi-gift-box .info_gift ol {
  list-style: none;
  padding-left: 0;
}
.pi-gift-box .info_gift li {
  position: relative;
  padding-left: 18px;
  margin: 2px 0;
  font-size: 12.5px;
  color: #2d2d2d;
}
.pi-gift-box .info_gift li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #C5A059;
  line-height: 1;
}

/* Countdown — compact pills, gold tint */
.pi-gift-box .countdown-circles {
  display: flex !important;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px 12px !important;
  margin: 0 !important;
  background: transparent !important;
  text-transform: none !important;
  font-weight: normal !important;
}
.pi-gift-box .countdown-circles p {
  background: #fff !important;
  border: 1px solid #f1e2bd;
  color: #1a1410 !important;
  padding: 6px 2px !important;
  margin: 0 !important;
  flex: 1;
  max-width: 64px;
  font-size: 9px !important;
  font-weight: 600 !important;
  text-align: center;
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(197, 160, 89, 0.1) !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pi-gift-box .countdown-circles p span {
  display: block !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #C5A059 !important;
  line-height: 1.1;
  letter-spacing: 0;
}
.pi-gift-box .countdown-circles p span:not(:first-of-type) {
  font-size: 9px !important;
  color: #999 !important;
  font-weight: 600 !important;
}

@media (max-width: 575px) {
  .pi-gift-box .countdown-circles { gap: 4px; padding: 6px 10px 10px !important; }
  .pi-gift-box .countdown-circles p { padding: 5px 2px !important; }
  .pi-gift-box .countdown-circles p span { font-size: 16px !important; }
}

/* ============================================
   Product Gallery — luxury minimal
   ============================================ */
.pg-wrap {
  position: sticky;
  top: 80px;
}

/* Main image */
.pg-main {
  position: relative;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f0e6 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ebe4d0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pg-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pg-main:hover .pg-main-img { transform: scale(1.03); }
.pg-main-img.pg-fade {
  animation: pgFade .25s ease;
}
@keyframes pgFade {
  0%   { opacity: 0.4; transform: scale(0.98); }
  100% { opacity: 1;   transform: scale(1); }
}

/* Bestseller badge — minimal pill */
.pg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(26, 20, 16, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.pg-badge .material-symbols-outlined {
  font-size: 14px;
  color: #ffb84d;
  font-variation-settings: 'FILL' 1;
}

/* Zoom button */
.pg-zoom-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a1410;
  cursor: pointer;
  transition: all .25s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pg-zoom-btn:hover {
  background: #C5A059;
  color: #fff;
  transform: scale(1.08);
}
.pg-zoom-btn .material-symbols-outlined { font-size: 22px; }

/* Nav arrows */
.pg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,0.06);
  color: #1a1410;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .25s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.pg-prev { left: 12px; }
.pg-next { right: 12px; }
.pg-main:hover .pg-nav { opacity: 1; }
.pg-nav:hover { background: #C5A059; color: #fff; }
.pg-nav .material-symbols-outlined { font-size: 22px; }

/* Thumbnails grid */
.pg-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0;
}
.pg-thumb {
  position: relative;
  aspect-ratio: 1/1;
  border: 1px solid #ebe4d0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #faf8f3;
  transition: border-color .2s ease, transform .2s ease;
}
.pg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}
.pg-thumb:hover {
  border-color: #C5A059;
}
.pg-thumb:hover img { transform: scale(1.04); }
.pg-thumb.is-active {
  border-color: #C5A059;
  border-width: 2px;
}

/* Video thumb */
.pg-thumb.pg-video {
  background: linear-gradient(135deg, #1a1410, #2a1f15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #C5A059;
}
.pg-thumb.pg-video .material-symbols-outlined {
  font-size: 32px;
  font-variation-settings: 'FILL' 1;
}
.pg-thumb.pg-video .pg-video-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.pg-thumb.pg-video:hover {
  border-color: #C5A059;
  background: linear-gradient(135deg, #2a1f15, #3a2e1f);
}

@media (max-width: 991px) {
  .pg-wrap { position: static; }
  .pg-thumbs { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 575px) {
  .pg-thumbs { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .pg-zoom-btn, .pg-nav { width: 34px; height: 34px; }
  .pg-badge { font-size: 10px; padding: 5px 10px; }
}
@keyframes badgeSalePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.35); }
}

/* ============================================
   Pagination — style ul.pagination > li > a.page-link
   to match .pagination-btn sample
   ============================================ */
ul.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 4rem 0 0;
  padding: 0;
  list-style: none;
}
ul.pagination li {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.pagination li a.page-link,
ul.pagination li a.page-link:link,
ul.pagination li a.page-link:visited {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #475569;
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
}
ul.pagination li a.page-link:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #1a1e2e;
}
/* Active page */
ul.pagination li.active > a.page-link,
ul.pagination li.page-item.active > a.page-link,
ul.pagination li > a.page-link.active {
  background: #C5A059;
  color: #fff;
  border-color: #C5A059;
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.25);
}
/* Hide text and show arrow for prev/next buttons */
ul.pagination li.next a.page-link,
ul.pagination li.prev a.page-link,
ul.pagination li.page-item.next a.page-link,
ul.pagination li.page-item.prev a.page-link {
  font-size: 0;
  width: 40px;
  padding: 0;
  position: relative;
}
ul.pagination li.next a.page-link::before,
ul.pagination li.page-item.next a.page-link::before {
  content: '›';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
ul.pagination li.prev a.page-link::before,
ul.pagination li.page-item.prev a.page-link::before {
  content: '‹';
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}
/* When Paging library uses two .page-item.next (one for prev, one for next) — first is prev */
ul.pagination li.page-item.next:first-child a.page-link::before,
ul.pagination li.page-item.next:nth-of-type(1):not(:last-child) a.page-link::before {
  content: '‹';
}
ul.pagination li.page-item.next:last-child a.page-link::before {
  content: '›';
}
/* Disabled state */
ul.pagination li.disabled > a.page-link {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 575px) {
  ul.pagination { gap: 0.375rem; margin-top: 2rem; }
  ul.pagination li a.page-link {
    min-width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}

/* Badges in 1 horizontal row at top-left of product card */
.product-card .product-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.product-card .product-image .product-badge {
  position: absolute;
  top: 8px;
  height: 22px;
  padding: 0 0.625rem;
  font-size: 0.625rem;
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
/* Render badges side by side using left offsets */
.product-card .product-image .product-badge-sale       { left: 8px; }
.product-card .product-image .product-badge-bestseller { left: 64px; }
.product-card .product-image .product-badge-new        { left: 134px; }
/* Hide bestseller/new if no sale to keep them aligned with left edge */
.product-card .product-image:not(:has(.product-badge-sale)) .product-badge-bestseller { left: 8px; }
.product-card .product-image:not(:has(.product-badge-sale)) .product-badge-new        { left: 78px; }

.quick-add-btn {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--color-slate-900);
  font-weight: 700;
  padding: 0.75rem;
  border-radius: var(--radius-lg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transform: translateY(1rem);
  opacity: 0;
  transition: all 0.3s ease;
}

.product-card:hover .quick-add-btn {
  transform: translateY(0);
  opacity: 1;
}

.quick-add-btn:hover {
  background-color: var(--color-primary);
  color: white;
}

.quick-add-btn .material-symbols-outlined {
  font-size: 20px;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--color-slate-900);
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: var(--color-primary);
}

.product-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 5px 0;
  margin-bottom: 5px;
}
/* Original price (struck-through) when there is a sale */
.product-card .product-price .promotion,
.product-card .product-price .promotion del {
  font-size: 1rem;
  font-weight: 400;
  color: #b0b0b0;
  text-decoration: line-through;
  text-decoration-color: #b0b0b0;
}
.product-card .product-price .promotion { display: inline-block; }
/* Sale price (the second span — gold accent, bigger) */
.product-card .product-price .promotion ~ span {
  color: #c1272d;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding-left: 5px;
}

.product-description {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.product-rating .material-symbols-outlined {
  font-size: 16px;
  color: var(--color-gray-300);
}

.product-rating .material-symbols-outlined.filled {
  color: #EAB308;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.rating-count {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-left: 0.25rem;
}

.add-to-collection-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid var(--color-gray-200);
  background-color: transparent;
  color: var(--color-slate-700);
  padding: 0.625rem;
  border-radius: var(--radius-lg);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.add-to-collection-btn:hover { text-decoration: none; }

.add-to-collection-btn:hover {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  color: white;
}

/* ============================================
   6. PAGINATION
   ============================================ */
.pagination-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
  background-color: transparent;
  color: var(--color-slate-600);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background-color: var(--color-gray-100);
}

.pagination-btn-active {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.pagination-btn .material-symbols-outlined {
  font-size: 0.875rem;
}

/* ============================================
   7. BRAND STORY SECTION
   ============================================ */
.brand-story {
  position: relative;
  background-color: var(--color-surface);
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid var(--color-gray-100);
}

.brand-story-bg-left {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 33.333%;
  background: linear-gradient(to left, rgba(197, 160, 89, 0.05), transparent);
  pointer-events: none;
}

.brand-story-bg-pattern {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 50%;
  background-image: url('data:image/svg+xml,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><rect width="10" height="10" fill="%23000" opacity="0.03"/></svg>');
  pointer-events: none;
}

.brand-story-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.brand-story-accent {
  width: 80px;
  height: 6px;
  background: linear-gradient(to right, var(--color-primary), #FDE68A);
  border-radius: var(--radius-full);
}

.brand-story-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-slate-900);
  line-height: 1.2;
  font-family: var(--font-serif);
}

.brand-story-highlight {
  background: linear-gradient(to right, #B89146, #E5C377, #B89146);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.brand-story-subtitle {
  font-size: 1.25rem;
  color: var(--color-slate-800);
  font-weight: 500;
}

.brand-story-text {
  font-size: 1.125rem;
  color: var(--color-slate-600);
  line-height: 1.75;
  font-weight: 300;
}

.brand-story-stats {
  display: flex;
  gap: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-gray-100);
  margin-top: 0.5rem;
}

.brand-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-serif);
}

.brand-stat-label {
  font-size: 0.875rem;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin: 0;
}

.brand-story-btn {
  width: fit-content;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--color-slate-900);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.brand-story-btn:hover {
  background-color: var(--color-primary);
}

.brand-story-btn .material-symbols-outlined {
  transition: transform 0.3s ease;
}

.brand-story-btn:hover .material-symbols-outlined {
  transform: translateX(0.25rem);
}

.brand-story-image-wrapper {
  position: relative;
}

.brand-story-image {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid white;
}

@media (min-width: 768px) {
  .brand-story-image {
    aspect-ratio: 4 / 3;
  }
}

.brand-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.brand-story-image-wrapper:hover .brand-story-image img {
  transform: scale(1.05);
}

.brand-story-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.brand-story-image-wrapper:hover .brand-story-overlay {
  background-color: transparent;
}

.testimonial-card {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid white;
  max-width: 300px;
  z-index: 2;
}

.testimonial-text {
  color: var(--color-slate-600);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(197, 160, 89, 0.2);
  object-fit: cover;
}

.testimonial-name {
  color: var(--color-slate-900);
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

@media (min-width: 992px) {
  .brand-story-title {
    font-size: 3rem;
  }
}

/* ============================================
   8. ACTIVE NAV LINK
   ============================================ */
.header-nav-link.active {
  color: var(--color-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.125rem;
}

/* =========================================
   DETAIL PRODUCT PAGE STYLES
   ========================================= */

/* Product Gallery */
.product-gallery .main-image-container {
  background-color: var(--color-surface);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail-item {
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.thumbnail-item:hover,
.thumbnail-item.active {
  border-color: var(--color-primary);
  opacity: 1;
}

/* Product Info */
.product-info-sticky {
  padding-top: 1rem;
}

.quantity-wrapper input::-webkit-outer-spin-button,
.quantity-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.add-to-cart-btn {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(197, 160, 101, 0.3) !important;
}

.buy-now-btn {
  background-color: #333;
  color: white;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  background-color: black;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Lifestyle Section */
.lifestyle-section .letter-spacing-2 {
  letter-spacing: 0.2em;
}

.lifestyle-section .image-wrapper {
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.lifestyle-section:hover .image-wrapper {
  transform: perspective(1000px) rotateY(0deg);
}

/* Specs Section */
.spec-card {
  transition: all 0.3s ease;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--color-primary) !important;
}

.spec-card:hover .icon-wrapper {
  background-color: var(--color-primary) !important;
  color: white !important;
}

/* Scent Notes Section */
.scent-card {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-5px);
}

.bg-light-hover:hover {
  background-color: #fafafa !important;
}

/* Reviews Section */
.review-card {
  border-color: var(--color-border);
}

.shadow-sm-hover:hover {
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.transition-hover {
  transition: all 0.3s ease;
}

.review-filters button {
  transition: all 0.3s ease;
}

.review-filters button:hover {
  transform: translateY(-2px);
}

/* Exact Font Families from Original */
.font-display {
  font-family: 'Roboto', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

.text-gold {
  color: #9C7C38;
}

.bg-background-pearl {
  background-color: var(--color-background-pearl);
}

.text-secondary,
.text-muted {
  color: var(--color-gray-600) !important;
}

/* Brand Gold Overrides */
.text-brand-gold {
  color: #C5A059 !important;
}

.bg-brand-gold {
  background-color: #C5A059 !important;
  color: white;
}

.product-title-large {
  font-size: 3rem;
  /* 48px to match original exactly */
  line-height: 1.2;
}

/* ============================================
   14. BLOG PAGE STYLES (Strict UI/UX Refinement)
   ============================================ */

/* Blog Hero - Metric Verified */
.blog-hero-custom {
  min-height: 500px !important;
  height: 500px !important;
  background-color: var(--color-slate-900) !important;
  position: relative !important;
  display: block !important;
  width: 100% !important;
}

.blog-hero-overlay {
  /* Exact gradient extracted from original */
  background: linear-gradient(to top, rgba(34, 29, 16, 0.9) 0%, rgba(34, 29, 16, 0.3) 50%, rgba(0, 0, 0, 0) 100%) !important;
  z-index: 1;
}

.blog-hero-content {
  z-index: 2;
  bottom: 0px !important;
  padding: 3rem !important;
  /* ~48px */
}

.blog-hero-badge {
  background-color: rgb(238, 189, 43) !important;
  /* #EECDBD */
  color: rgb(34, 29, 16) !important;
  /* #221D10 */
  font-size: 12px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
  padding: 4px 16px !important;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.blog-hero-title {
  font-family: 'Newsreader', serif !important;
  font-size: 60px !important;
  line-height: 1 !important;
  font-weight: 300 !important;
  color: white !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-img {
  transition: transform 0.7s ease;
}

.blog-hero-custom:hover .blog-hero-img {
  transform: scale(1.05);
}

/* Category Filters - Metric Verified */
.blog-filter-btn {
  padding: 8px 24px !important;
  border-radius: 9999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
  background-color: transparent;
  border: 1px solid rgb(231, 229, 228);
  /* stone-200 */
  color: rgb(120, 113, 108);
  /* stone-500 */
}

.blog-filter-btn:hover {
  border-color: rgb(238, 189, 43);
  color: rgb(238, 189, 43);
}

.blog-filter-btn.active {
  background-color: rgba(238, 189, 43, 0.1) !important;
  border-color: rgb(238, 189, 43) !important;
  /* #EECDBD */
  color: rgb(238, 189, 43) !important;
}

/* Blog Card - Metric Verified */
.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card-img-wrapper {
  background-color: #f5f5f5;
  border-radius: 8px !important;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.blog-card-badge {
  background-color: white !important;
  color: rgb(238, 189, 43) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 6px 12px;
  border-radius: 4px;
}

.blog-card-title {
  font-family: 'Newsreader', serif !important;
  font-size: 24px !important;
  line-height: 33px !important;
  font-weight: 500 !important;
  color: rgb(41, 37, 36) !important;
  /* stone-800 */
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: rgb(238, 189, 43) !important;
}

.blog-card-date {
  font-size: 10px !important;
  font-weight: 700 !important;
  color: rgb(168, 162, 158) !important;
  /* stone-400 */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-action {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgb(238, 189, 43) !important;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

.blog-card-action:hover {
  transform: translateX(4px);
}

.blog-card-excerpt {
  color: rgb(120, 113, 108);
  /* stone-500 */
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* Standard property for compatibility */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-style: italic;
}


@media (max-width: 768px) {
  .blog-hero-custom {
    min-height: 400px !important;
    height: 400px !important;
  }

  .blog-hero-title {
    font-size: 36px !important;
  }

  .blog-hero-content {
    padding: 1.5rem !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  /* Star hidden then animate in */
}