/* ============================================================
   Utiful Textile — Modern Warmth Theme
   Target: Young female | Home textile | Fresh + Premium
   Framework: Bootstrap 5.3 Custom
   ============================================================ */

/* ===== 1. DESIGN TOKENS ===== */
:root {
  /* Soft Linen Base — fresh, airy, elegant */
  --cream:          #FAF8F5;
  --cream-dark:     #F3EFE9;
  --white:          #FFFFFF;

  /* Primary — Warm Taupe */
  --taupe:          #B8A089;
  --taupe-dark:     #9C8A78;
  --taupe-light:    #EDE8E0;

  /* Accent — Dusty Blush */
  --rose:           #D5C2AF;
  --rose-dark:      #B5A595;
  --rose-light:     #EDE5D9;

  /* Fresh note — Sage Green */
  --sage:           #A8C5A0;
  --sage-light:     #E8F0E4;
  --sage-dark:      #8AAB80;

  /* Certificate gold — warmer champagne for badges */
  --gold:           #C9AF7E;
  --gold-dark:      #B89B65;
  --gold-light:     #F0EAD8;

  /* Semantic mappings */
  --primary:           var(--taupe);
  --primary-dark:      var(--taupe-dark);
  --primary-light:     var(--taupe-light);
  --accent:            var(--rose);
  --accent-dark:       var(--rose-dark);
  --accent-light:      var(--rose-light);
  --accent-secondary:  var(--sage);

  /* Neutral palette */
  --bg-warm:           var(--cream);
  --bg-section:        var(--cream-dark);
  --bg-dark:           #2C2824;
  --bg-dark-warm:      #3A3530;
  --text-primary:      #222222;
  --text-body:         #4A4A4A;
  --text-muted:        #8A837C;
  --text-light:        #B5ADA5;
  --border-light:      #EDE8E0;
  --border-color:      #D9D0C5;

  /* Functional */
  --success:           #7BA37B;
  --info:              #8AB0C4;
  --warning:           #C4956A;
  --danger:            #C48484;

  /* Typography */
  --font-heading:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:         'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing (4px base) */
  --space-xs:   0.25rem;
  --space-sm:   0.5rem;
  --space-md:   1rem;
  --space-lg:   1.5rem;
  --space-xl:   2rem;
  --space-2xl:  3rem;
  --space-3xl:  4rem;
  --space-4xl:  6rem;
  --space-5xl:  8rem;

  /* Radius — softer, more refined */
  --radius-sm:  0.375rem;
  --radius-md:  0.625rem;
  --radius-lg:  0.875rem;
  --radius-xl:  1.25rem;

  /* Shadows — lighter, more diffuse */
  --shadow-sm:   0 1px 4px rgba(60,55,50,0.04), 0 1px 2px rgba(60,55,50,0.03);
  --shadow-md:   0 4px 16px rgba(60,55,50,0.06);
  --shadow-lg:   0 8px 32px rgba(60,55,50,0.08);
  --shadow-hover: 0 12px 40px rgba(60,55,50,0.10);
  --shadow-accent: 0 0 0 3px rgba(255,153,0,0.15);

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);

  /* Bootstrap CSS variable overrides */
  --bs-link-color:             #B8A089;
  --bs-link-color-rgb:         184, 160, 137;
  --bs-link-hover-color:       #B5A595;
  --bs-link-hover-color-rgb:   196, 144, 144;
  --bs-primary:                #B8A089;
  --bs-primary-rgb:            184, 160, 137;
  --bs-primary-text-emphasis:  #6B5D4F;
  --bs-primary-bg-subtle:      #EDE8E0;
  --bs-primary-border-subtle:  #D4C8B8;
  --bs-body-color:             #4A4A4A;
  --bs-body-color-rgb:         74, 74, 74;
  --bs-body-bg:                #FAF8F5;
  --bs-body-bg-rgb:            250, 248, 245;
  --bs-emphasis-color:         #222222;
  --bs-emphasis-color-rgb:     34, 34, 34;
  --bs-focus-ring-color:       rgba(184, 160, 137, 0.25);
  --bs-border-color:           #EDE8E0;
  --bs-border-color-translucent: rgba(184, 160, 137, 0.15);
}

/* ===== 1c. SCROLL-AWARE NAVBAR STATE ===== */
.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}
.navbar.scrolled .navbar-brand img {
  height: 40px;
}

/* ===== 2. BASE ===== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--rose);
  color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--taupe);
  transition: color 0.25s ease;
}
a:hover {
  color: var(--rose-dark);
}

/* ===== 3. TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h1, .h1 { font-size: clamp(1.75rem, 4.5vw, 3rem); line-height: 1.12; }
h2, .h2 { font-size: clamp(1.5rem, 3.5vw, 2.375rem); line-height: 1.18; }
h3, .h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); line-height: 1.25; }
h4, .h4 { font-size: 1.125rem; line-height: 1.35; }
h5, .h5 { font-size: 1rem; line-height: 1.45; }

p { margin-bottom: 1rem; }
.lead {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Section label — e.g. "— Our Collection" */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rose);
  margin-bottom: var(--space-sm);
  display: block;
}
.section-label--sage { color: var(--sage); }
.section-label--gold { color: var(--gold); }

/* Decorative divider */
.divider {
  width: 48px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  margin: var(--space-lg) 0;
}
.divider--center {
  margin-left: auto;
  margin-right: auto;
}
.divider--sage { background: var(--sage); }
.divider--gold { background: var(--gold); }

/* ===== 4. SECTION LAYOUT ===== */
.section {
  padding: var(--space-4xl) 0;
}
.section--sm {
  padding: var(--space-2xl) 0;
}
.section--dark {
  background: var(--bg-dark-warm);
  color: rgba(255,255,255,0.85);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--warm {
  background: var(--bg-warm);
}
.section--cream {
  background: var(--cream-dark);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-3xl);
}
.section__header--left {
  text-align: left;
  margin-left: 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: var(--space-3xl) 0;
  }
  .section__header {
    margin-bottom: var(--space-2xl);
  }
}

/* 超宽屏适配：缩小section间距 */
@media (min-width: 1920px) {
  .section {
    padding: var(--space-3xl) 0;
  }
  .section--sm {
    padding: var(--space-xl) 0;
  }
  .section__header {
    margin-bottom: var(--space-2xl);
  }
}

/* ===== 5. TOP BAR ===== */
.top-bar {
  position: relative;
  z-index: 1030;
  background: #E9E1D7;
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 0.5rem 0;
  line-height: 1;
  border-bottom: 1px solid rgba(74,74,74,0.08);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.top-bar__tagline {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.top-bar__tagline i {
  color: var(--rose);
  font-size: 0.7rem;
}
.top-bar a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--rose-dark); }
.top-bar__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.top-bar__contact-item i { font-size: 0.7rem; color: var(--rose); opacity: 0.8; }
.top-bar__link {
  padding: 0 0.3rem;
  border-right: 1px solid rgba(74,74,74,0.12);
  line-height: 1.2;
  transition: all 0.2s ease;
}
.top-bar__link:hover {
  color: var(--rose-dark);
}
.top-bar__link:last-of-type { border-right: none; }
.top-bar__lang-btn {
  background: none;
  border: 1px solid rgba(74,74,74,0.18);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s;
}
.top-bar__lang-btn:hover {
  border-color: var(--rose);
  color: var(--rose-dark);
  background: rgba(213,194,175,0.15);
}
.top-bar__lang-btn::after { font-size: 0.55rem; }
.top-bar__lang .dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  min-width: 9rem;
  font-size: 0.78rem;
  margin-top: 0.35rem;
  box-shadow: var(--shadow-lg);
  padding: 0.35rem 0;
  --bs-dropdown-bg: var(--white);
  --bs-dropdown-color: var(--text-primary);
  --bs-dropdown-border-color: var(--border-color);
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-border-radius: var(--radius-md);
  --bs-dropdown-min-width: 9rem;
  --bs-dropdown-font-size: 0.78rem;
  --bs-dropdown-link-color: var(--text-primary);
  --bs-dropdown-link-hover-color: var(--rose-dark);
  --bs-dropdown-link-hover-bg: var(--rose-light);
  --bs-dropdown-link-active-color: var(--white);
  --bs-dropdown-link-active-bg: var(--rose);
  --bs-dropdown-item-padding-y: 0.4rem;
  --bs-dropdown-item-padding-x: 0.85rem;
  --bs-dropdown-box-shadow: none;
}
.top-bar__lang .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.15s ease;
  font-weight: 450;
  color: var(--text-primary);
}
.top-bar__lang .dropdown-item i {
  font-size: 0.65rem;
  width: 0.9rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.top-bar__lang .dropdown-item.active,
.top-bar__lang .dropdown-item:active {
  color: var(--white);
  background-color: var(--rose);
  font-weight: 600;
}
.top-bar__lang .dropdown-item.active i,
.top-bar__lang .dropdown-item:hover i {
  opacity: 1;
}
.top-bar__lang .dropdown-item:hover:not(.active) {
  color: var(--rose-dark);
  background-color: var(--rose-light);
  transform: translateX(2px);
}
.top-bar__search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
  border-radius: 50%;
  transition: all 0.2s;
}
.top-bar__search-btn:hover {
  background: rgba(74,74,74,0.08);
  color: var(--rose-dark);
}

@media (max-width: 1199.98px) {
  .top-bar__tagline { max-width: 280px; }
}
@media (max-width: 991.98px) {
  .top-bar__tagline { display: none; }
}
@media (max-width: 767.98px) {
  .top-bar { font-size: 0.72rem; padding: 0.3rem 0; }
  .top-bar__right { gap: 0.4rem; }
  .top-bar__link { padding: 0 0.2rem; font-size: 0.72rem; }
}
@media (max-width: 575.98px) {
  .top-bar__lang-btn span { display: none; }
}

/* ===== 6. NAVIGATION ===== */
.navbar {
  padding: 0.75rem 0;
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(237,232,224,0.6);
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 4px 24px rgba(60,55,50,0.06);
  background: rgba(255,255,255,0.98) !important;
}
.navbar.scrolled .navbar-brand img {
  height: 40px;
}

.navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary) !important;
  padding: 0.5rem 1rem !important;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}

.navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-dark));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s var(--ease-spring);
  border-radius: 2px;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
  transform: scaleX(1);
}

.navbar .nav-link:hover {
  color: var(--rose-dark) !important;
}

/* Mobile hamburger enhancement */
.navbar-toggler {
  border: none !important;
  padding: 0.4rem;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}
.navbar-toggler:focus {
  box-shadow: none !important;
  background: var(--cream);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(184,160,137,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(60,55,50,0.1);
    margin-top: var(--space-sm);
    border: 1px solid var(--border-light);
  }
  .navbar .nav-link::before { display: none; }
  .navbar-collapse .d-flex {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
  }
}

/* ===== 7. BUTTONS ===== */
.btn {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-spring);
  letter-spacing: 0.01em;
}
.btn-lg { padding: 0.75rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8125rem; }

.btn-primary {
  --bs-btn-bg: var(--taupe);
  --bs-btn-border-color: var(--taupe);
  --bs-btn-hover-bg: var(--taupe-dark);
  --bs-btn-hover-border-color: var(--taupe-dark);
  --bs-btn-active-bg: var(--taupe-dark);
  --bs-btn-active-border-color: var(--taupe-dark);
  --bs-btn-focus-shadow-rgb: 184, 160, 137;
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-accent {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-color: var(--rose);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(212,165,165,0.2);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #9C8B78 100%);
  border-color: var(--rose-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,165,165,0.35);
}
.btn-accent:active {
  transform: translateY(0);
}

.btn-outline-primary {
  --bs-btn-color: var(--taupe);
  --bs-btn-border-color: var(--taupe);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--taupe);
  --bs-btn-hover-border-color: var(--taupe);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--taupe-dark);
  --bs-btn-active-border-color: var(--taupe-dark);
  --bs-btn-focus-shadow-rgb: 184, 160, 137;
  border: 2px solid var(--taupe);
  color: var(--taupe);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--taupe);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-accent {
  border: 2px solid var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn-outline-accent:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,149,106,0.25);
}

.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--taupe);
}
.btn-light:hover {
  background: var(--cream-dark);
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--taupe);
  text-decoration: none;
  font-weight: 500;
  padding: 0;
}
.btn-link:hover {
  color: var(--rose-dark);
}
.btn-link i {
  transition: transform 0.3s var(--ease-spring);
}
.btn-link:hover i {
  transform: translateX(4px);
}

/* ===== 8. CARDS ===== */
.card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-spring);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-body {
  padding: var(--space-xl);
}

/* Product card */
.product-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  transition: all 0.4s var(--ease-spring);
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: transparent;
}
.product-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.product-card:hover .product-card__image img {
  transform: scale(1.08);
}
.product-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}
.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}
.product-card__code {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.product-card__badges {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 2;
}
.product-card__badge {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(212,165,165,0.3);
  white-space: nowrap;
}
.product-card__badge--top {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.product-card__badge--hot {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 2px 8px rgba(239,68,68,0.3);
}

/* Blog card */
.blog-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
.blog-card .card-body {
  padding: var(--space-lg);
}
.blog-card__meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-body);
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ===== 9. FORMS ===== */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}
.form-control:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212,165,165,0.12), var(--shadow-accent);
  outline: none;
  transform: translateY(-1px);
}
.form-control::placeholder {
  color: var(--text-light);
  font-size: 0.9em;
}
.form-control-lg {
  padding: 0.875rem 1.125rem;
  font-size: 1rem;
}
.form-label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
}
.form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212,165,165,0.12);
  outline: none;
}
.form-check-input:checked {
  background-color: var(--rose);
  border-color: var(--rose);
}
.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(212,165,165,0.12);
  border-color: var(--rose);
}

/* ===== 10. PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-light), transparent);
}
.page-header__title {
  margin-top: var(--space-md);
}
.page-header__desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}
.page-header--simple {
  padding: var(--space-2xl) 0 var(--space-lg);
}

/* ===== ABOUT INTRO — image matches text height ===== */
#about-intro .row {
  align-items: stretch !important;
}
.about-intro__image-col {
  display: flex;
}
.about-intro__img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  min-height: 100%;
}

@media (max-width: 767.98px) {
  .page-header {
    padding: var(--space-2xl) 0 var(--space-xl);
  }
}

/* ===== 11. BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item {
  font-size: 0.8125rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-light);
  content: "/";
}
.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-item a:hover {
  color: var(--rose);
}
.breadcrumb-item.active {
  color: var(--text-primary);
  font-weight: 500;
}

/* ===== 12. HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg,
      rgba(90,84,80,0.65) 0%,
      rgba(45,42,40,0.45) 30%,
      rgba(237,232,224,0.25) 60%,
      rgba(248,244,241,0.15) 100%
    ),
    url('../images/hero-bg.webp') center / cover no-repeat;
  overflow: hidden;
}
/* Warm brand overlay to ensure readability */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(237,232,224,0.35) 0%,
    rgba(237,232,224,0.15) 50%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rose);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.2s forwards;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  color: var(--text-primary);
  line-height: 1.08;
  margin-top: var(--space-md);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.4s forwards;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 540px;
  line-height: 1.65;
  margin-top: var(--space-lg);
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.6s forwards;
}
.hero__actions {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s var(--ease-smooth) 0.8s forwards;
}
.hero__badges {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767.98px) {
  .hero { min-height: 75vh; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
@media (max-width: 575.98px) {
  .hero { min-height: 65vh; }
}
/* Hero buttons — max contrast against real background image */
.hero .btn-accent {
  box-shadow: 0 2px 12px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.15);
}
.hero .btn-outline-primary {
  --bs-btn-bg: rgba(255,255,255,0.92);
  --bs-btn-color: var(--taupe-dark);
  --bs-btn-border-color: var(--white);
  --bs-btn-hover-bg: var(--white);
  --bs-btn-hover-color: var(--taupe-dark);
  --bs-btn-hover-border-color: var(--white);
  --bs-btn-active-bg: var(--white);
  --bs-btn-active-color: var(--taupe-dark);
  --bs-btn-active-border-color: var(--white);
  background: rgba(255,255,255,0.92);
  border-color: var(--white);
  color: var(--taupe-dark);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.hero .btn-outline-primary:hover {
  --bs-btn-bg: var(--white);
  background: var(--white);
  border-color: var(--white);
  color: var(--taupe-dark);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

/* ===== 13. CERTIFICATION BADGE ===== */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--taupe);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid rgba(237,232,224,0.6);
  transition: all 0.3s ease;
}
.hero .cert-badge {
  color: var(--text-primary);
  background: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.3);
}
.cert-badge:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ===== 14. FEATURE ITEM ===== */
.feature-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-spring);
  height: 100%;
}
.feature-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
  border-color: transparent;
}
.feature-item__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-light) 0%, #F0EBE3 100%);
  border-radius: var(--radius-lg);
  font-size: 1.375rem;
  color: var(--rose);
  transition: all 0.4s var(--ease-spring);
}
.feature-item:hover .feature-item__icon {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(212,165,165,0.3);
}
.feature-item__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}
.feature-item__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ===== 15. STATS / COUNTER ===== */
.stat-item {
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--rose);
  line-height: 1.1;
}
.stat-item__number sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
}
.cta-banner .stat-item__number {
  color: var(--white);
}
.cta-banner .stat-item__label {
  color: rgba(255,255,255,0.85);
}
.stat-item__label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-top: var(--space-xs);
}
.section--cream .stat-item__number {
  color: var(--taupe);
}
.section--cream .stat-item__label {
  color: var(--text-muted);
}

/* ===== 16. CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 50%, #9C8B78 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.375rem);
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner .section-label {
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: var(--white);
  position: relative;
  z-index: 1;
}
.cta-banner__desc {
  color: rgba(255,255,255,0.9);
  max-width: 550px;
  margin: var(--space-md) auto 0;
  position: relative;
  z-index: 1;
}

/* Newsletter subscription form inside cta-banner */
.newsletter-form__row {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.newsletter-form__row .form-control {
  background: rgba(255,255,255,0.92);
  color: var(--text-primary);
  border: 2px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-form__row .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.35);
}
.newsletter-form__row .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25);
  animation: newsletter-shake 0.4s ease;
}
@keyframes newsletter-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}
.newsletter-form__row .newsletter-captcha-img {
  height: 48px;
  border-radius: var(--radius-md);
  cursor: pointer;
  flex: 0 0 auto;
  border: 2px solid rgba(255,255,255,0.35);
}
.newsletter-form__row .newsletter-captcha-img:hover {
  border-color: rgba(255,255,255,0.8);
}
.newsletter-msg {
  margin-top: 1rem;
  display: none;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: newsletter-msg-in 0.3s ease;
}
@keyframes newsletter-msg-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.newsletter-msg--success {
  background: rgba(16, 122, 87, 0.92);
  color: #fff;
}
.newsletter-msg--error {
  background: rgba(200, 35, 51, 0.92);
  color: #fff;
}

/* ===== 17. FOOTER ===== */
.footer {
  background: #E9E1D7;
  color: rgba(255,255,255,0.65);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--sage), var(--rose));
  opacity: 0.6;
}
.footer__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}
.footer a {
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.footer a:hover {
  color: var(--rose);
}
.footer__desc {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.7;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links li {
  margin-bottom: var(--space-sm);
}
.footer__links a {
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
}
.footer__links a::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width 0.3s var(--ease-smooth);
}
.footer__links a:hover::before {
  width: 100%;
}
.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}
.footer__contact li i {
  width: 1rem;
  text-align: center;
  color: var(--rose);
  flex-shrink: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(60,55,50,0.1);
  padding-top: var(--space-lg);
  margin-top: var(--space-2xl);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Footer cert badges: transparent border, white bg, less rounded */
.footer__cert-badge {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--text-body);
}

/* ===== 18. FLOATING ACTIONS ===== */
.floating-bar {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floating-bar__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.3s var(--ease-spring);
}
.floating-bar__btn:hover {
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.floating-bar__btn--whatsapp { background: #25D366; }
.floating-bar__btn--inquiry { background: linear-gradient(135deg, var(--rose), var(--rose-dark)); }
.floating-bar__btn--backtotop {
  background: var(--taupe);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s var(--ease-spring);
}
.floating-bar__btn--backtotop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 767.98px) {
  .floating-bar { right: 1rem; bottom: 1.25rem; }
  .floating-bar__btn { width: 44px; height: 44px; font-size: 1.15rem; }
}

/* ===== 19. PAGINATION ===== */
.pagination-bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  justify-content: center;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}
.page-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
}
.page-btn.active {
  background: var(--taupe);
  border-color: var(--taupe);
  color: var(--white);
}
.page-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===== 20. SOCIAL SHARE ===== */
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
}
.share-btn:hover {
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

/* ===== 21. UTILITY ===== */
.text-rose { color: var(--rose); }
.text-taupe { color: var(--taupe); }
.text-sage { color: var(--sage); }
.text-gold { color: var(--gold); }
.bg-rose { background: var(--rose); }
.bg-taupe { background: var(--taupe); }
.bg-sage { background: var(--sage); }
.bg-warm { background: var(--bg-warm); }
.bg-cream { background: var(--cream-dark); }
.letter-spacing-lg { letter-spacing: 0.1em; }
.letter-spacing-xl { letter-spacing: 0.15em; }

/* Hover lift */
.hover-lift {
  transition: transform 0.4s var(--ease-spring),
              box-shadow 0.4s var(--ease-spring);
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Image shimmer loading */
.img-loading {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.img-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  100% { left: 100%; }
}

/* Tag pill */
.tag-pill {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--taupe);
  background: var(--cream-dark);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.tag-pill:hover {
  background: var(--rose);
  color: var(--white);
}

/* Quick actions card */
.quick-actions {
  background: var(--cream-dark);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

/* ===== 22. PRODUCT DETAIL ===== */
.product-gallery {
  position: relative;
}
.product-gallery__main {
  border-radius: var(--radius-lg);
  width: 100%;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
  aspect-ratio: 1 / 1;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}
.video-overlay:hover {
  background: rgba(0,0,0,0.3);
}
.video-overlay i {
  font-size: 4rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.2s;
}
.video-overlay:hover i {
  transform: scale(1.1);
}
.product-gallery__thumbs {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  overflow-x: auto;
}
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.product-gallery__thumb:hover,
.product-gallery__thumb.active {
  border-color: var(--rose);
  opacity: 1;
}
/* Video thumbnail with play icon */
.product-gallery__thumb[data-type="video"]::after {
  content: '\f04b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  color: #fff;
  font-size: 1.2rem;
  border-radius: var(--radius-md);
}
.product-gallery__thumb[data-type="video"] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.product-info {
  position: sticky;
  top: 100px;
}

.specs-table {
  width: 100%;
}
.specs-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.specs-table td:first-child {
  width: 35%;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Sticky inquiry bar */
.sticky-inquiry {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(60,55,50,0.08);
  padding: var(--space-md) 0;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-smooth);
}
.sticky-inquiry.visible {
  transform: translateY(0);
}
.sticky-inquiry__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.sticky-inquiry__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-primary);
  font-weight: 500;
}
.sticky-inquiry__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (max-width: 767.98px) {
  .sticky-inquiry__text { display: none; }
  .sticky-inquiry__actions { width: 100%; }
  .sticky-inquiry__actions .btn { flex: 1; }
}

/* ===== 23. FAQ ACCORDION ===== */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  background: var(--white);
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--white);
  transition: background 0.2s ease;
  user-select: none;
}
.faq-item__question:hover {
  background: var(--cream);
}
.faq-item__question i {
  transition: transform 0.35s var(--ease-spring);
  flex-shrink: 0;
  color: var(--rose);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 var(--space-lg);
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.9375rem;
}
.faq-item.active .faq-item__question {
  background: var(--rose-light);
  border-bottom: 1px solid var(--border-light);
}
.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
}
.faq-item.active .faq-item__answer {
  max-height: 600px;
  padding: var(--space-lg);
}

/* ===== 24. PRODUCT DESCRIPTION ===== */
.product-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
}
.product-description h2,
.product-description h3,
.product-description h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.product-description p {
  margin-bottom: 1rem;
}
.product-description ul,
.product-description ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.product-description li {
  margin-bottom: 0.5rem;
}
.product-description img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

/* ===== 25. SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 0;
  border: none;
}

/* ===== 26. SCROLL ANIMATIONS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-smooth);
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease-smooth);
}
.fade-in.visible {
  opacity: 1;
}

/* ===== 27. SEARCH PAGE ===== */
.search-form .form-control {
  border-radius: 100px;
  padding-left: 1.25rem;
}
.search-form .btn {
  border-radius: 100px;
}

/* ===== 28. PRINT ===== */
@media print {
  .floating-bar { display: none; }
  .navbar { position: static; }
  .sticky-inquiry { display: none; }
}

/* ===== 29. PRODUCT CARD ENHANCEMENTS ===== */
.product-card__quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(44,40,36,0.6));
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s var(--ease-smooth);
}
.product-card:hover .product-card__quick-view {
  opacity: 1;
  transform: translateY(0);
}
.product-card__quick-view .btn {
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--taupe);
  border: none;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.product-card__quick-view .btn:hover {
  background: var(--white);
  color: var(--rose-dark);
}

.product-card__wishlist {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s var(--ease-spring);
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  z-index: 2;
}
.product-card__wishlist:hover {
  color: var(--rose);
  transform: scale(1.1);
}
.product-card__wishlist.active {
  opacity: 1;
  color: var(--rose);
}
.product-card__wishlist.is-active {
  opacity: 1;
  color: var(--rose);
  animation: heartBeat 0.4s var(--ease-spring);
}
@keyframes heartBeat {
  0%   { transform: scale(1); }
  25%  { transform: scale(1.3); }
  50%  { transform: scale(1); }
  75%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.product-card__swatches {
  display: flex;
  gap: 0.3rem;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}
.product-card__swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--border-light);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.product-card__swatch:hover,
.product-card__swatch.active {
  border-color: var(--taupe);
  box-shadow: 0 0 0 2px rgba(184,160,137,0.3);
  transform: scale(1.15);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card__image-wrapper .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.product-card__image-wrapper:hover .hover-image {
  opacity: 1;
}
.product-card__image-wrapper .base-image {
  transition: opacity 0.5s ease;
}
.product-card__image-wrapper:hover .base-image {
  opacity: 0;
}

/* ===== 30. IMAGE ZOOM ===== */
.image-zoom-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: crosshair;
}
.image-zoom-container img {
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
}
.image-zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid var(--rose);
  border-radius: var(--radius-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-md);
}

/* ===== 31. TESTIMONIAL CAROUSEL ===== */
.testimonial-section {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-spring);
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
  flex-shrink: 0;
}
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  font-style: italic;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-shrink: 0;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin: 0;
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}
.testimonial-carousel {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  align-items: stretch;
}
.testimonial-carousel.stagger-children > * {
  opacity: 1;
  transform: none;
}
.testimonial-carousel::-webkit-scrollbar { display: none; }
.testimonial-carousel-item {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: stretch;
}
@media (min-width: 768px) {
  .testimonial-carousel-item { width: calc(50% - var(--space-xl)); }
}
@media (min-width: 1200px) {
  .testimonial-carousel-item { width: calc(33.333% - var(--space-xl)); }
}

/* ===== 32. LIFESTYLE IMAGE GRID ===== */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-md);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lifestyle-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.lifestyle-grid__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.lifestyle-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.lifestyle-grid__item:hover img {
  transform: scale(1.05);
}
.lifestyle-grid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(44,40,36,0.4));
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lifestyle-grid__item:hover .lifestyle-grid__overlay {
  opacity: 1;
}
.lifestyle-grid__caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

/* ===== 33. FABRIC SWATCHES ===== */
.fabric-swatches {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}
.fabric-swatch {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
}
.fabric-swatch::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--bg-dark);
  color: var(--white);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.fabric-swatch:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.fabric-swatch:hover,
.fabric-swatch.active {
  border-color: var(--taupe);
  box-shadow: 0 0 0 3px rgba(184,160,137,0.2);
  transform: scale(1.1);
}

/* ===== 35. NEWSLETTER SIGNUP ===== */
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  max-width: 400px;
}
.newsletter-form .form-control {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  flex: 1;
}
.newsletter-form .btn {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  white-space: nowrap;
}

/* ===== 36. SOCIAL PROOF BAR ===== */
.social-proof-bar {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  color: var(--text-body);
}
.social-proof-bar__avatars {
  display: flex;
}
.social-proof-bar__avatar {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  object-fit: cover;
}
.social-proof-bar__avatar:first-child {
  margin-left: 0;
}
.social-proof-bar__stars {
  color: var(--gold);
  font-size: 0.75rem;
}

/* ===== 37. TRUST SIGNALS ===== */
.trust-signals {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  padding: var(--space-2xl) 0;
}
.trust-signal {
  text-align: center;
  transition: transform 0.3s var(--ease-spring);
}
.trust-signal:hover {
  transform: translateY(-2px);
}
.trust-signal__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  color: var(--rose);
  font-size: 1.25rem;
}
.trust-signal__title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 0;
}
.trust-signal__desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== 38. SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ===== 39. MICRO-INTERACTIONS ===== */
.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-glow:hover::before {
  width: 300px;
  height: 300px;
}

.link-underline {
  position: relative;
  text-decoration: none;
}
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-smooth);
}
.link-underline:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ===== 40. CATEGORY CARD — FULL IMAGE BACKGROUND ===== */
.category-card {
  position: relative;
  aspect-ratio: 1 / 2;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gray-100, #f3f4f6);
  transition: all 0.4s var(--ease-spring);
  cursor: pointer;
}
.category-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}
.category-card__image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--gray-100, #f3f4f6);
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.category-card:hover .category-card__image img {
  transform: scale(1.08);
}
.category-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.category-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  text-align: center;
  z-index: 1;
}
.category-card__body h5,
.category-card__body .fw-semibold {
  color: #fff;
}
.category-card__body small,
.category-card__body .text-muted {
  color: rgba(255,255,255,0.75) !important;
}

.category-card--viewall {
  border: 2px dashed var(--border-color);
  background: var(--cream);
  min-height: 280px;
  transition: all 0.4s var(--ease-spring);
}
.category-card--viewall:hover {
  border-color: var(--taupe);
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* ===== 41. PARALLAX SECTION ===== */
.parallax-bg {
  position: relative;
  overflow: hidden;
}
.parallax-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.08;
  pointer-events: none;
}

/* ===== 42. TOAST NOTIFICATION ===== */
.toast-notification {
  position: fixed;
  top: var(--space-xl);
  right: var(--space-xl);
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  transform: translateX(120%);
  transition: transform 0.4s var(--ease-spring);
  max-width: 360px;
}
.toast-notification.show {
  transform: translateX(0);
}
.toast-notification__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.toast-notification__icon.success {
  background: var(--sage-light);
  color: var(--sage-dark);
}
.toast-notification__icon.info {
  background: var(--rose-light);
  color: var(--rose);
}
.toast-notification__text {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin: 0;
}

/* ===== 43. LOADING SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== 44. CONTACT FORM ENHANCED ===== */
.contact-form .form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}
.contact-form .form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
  display: block;
}
.contact-form .form-group .input-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-form .form-group.has-error .form-control {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(196,132,132,0.1);
}
.contact-form .form-group .error-message {
  font-size: 0.78rem;
  color: var(--danger);
  margin-top: 0.25rem;
  display: none;
}
.contact-form .form-group.has-error .error-message {
  display: block;
}
.contact-form .form-control.is-valid {
  border-color: var(--success);
}
.contact-form .form-control.is-invalid {
  border-color: var(--danger);
}

/* ===== 45. MAP PLACEHOLDER ===== */
.map-placeholder {
  background: var(--cream-dark);
  border-radius: var(--radius-xl);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--border-light);
}
.map-placeholder i {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  color: var(--rose);
}

/* ===== 46. RESPONSIVE UTILITIES ===== */
@media (max-width: 767.98px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form .form-control,
  .newsletter-form .btn {
    border-radius: var(--radius-md);
  }
  .trust-signals {
    gap: var(--space-lg);
  }
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 150px);
  }
  .lifestyle-grid__item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ===== 20. MANUFACTURING STRENGTH MARQUEE ===== */
.manufacturing__marquee {
  overflow: hidden;
  padding-top: 0.5rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.manufacturing__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: manufacturing-scroll 38s linear infinite;
}
.manufacturing__marquee:hover .manufacturing__track {
  animation-play-state: paused;
}
.manufacturing__item {
  flex: 0 0 auto;
  width: 25vw;
  padding: 0 0.75rem;
}
.manufacturing__item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.07);
}
@media (max-width: 767.98px) {
  .manufacturing__item {
    width: 50vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .manufacturing__track {
    animation: none;
  }
}
@keyframes manufacturing-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--mfg-shift, -50%));
  }
}

/* ===== RTL SUPPORT ===== */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .me-1, [dir="rtl"] .me-2, [dir="rtl"] .me-3 {
  margin-left: 0.5rem;
  margin-right: 0;
}
[dir="rtl"] .ms-1, [dir="rtl"] .ms-2, [dir="rtl"] .ms-3 {
  margin-right: 0.5rem;
  margin-left: 0;
}
[dir="rtl"] .ps-4 {
  padding-left: 0;
  padding-right: 1.5rem;
}
[dir="rtl"] .breadcrumb {
  text-align: right;
}
[dir="rtl"] .breadcrumb-item + .breadcrumb-item::before {
  content: "";
}
[dir="rtl"] .breadcrumb-item + .breadcrumb-item::after {
  content: "\200F \002F";
  padding-right: 0.5rem;
  padding-left: 0;
}
[dir="rtl"] .navbar-toggler {
  margin-left: 0;
  margin-right: auto;
}
[dir="rtl"] .floating-bar__btn--whatsapp {
  left: 1rem;
  right: auto;
}
[dir="rtl"] .floating-bar__btn--inquiry {
  left: auto;
  right: 1rem;
}
[dir="rtl"] .floating-bar__btn--backtotop {
  left: 1rem;
  right: auto;
}
[dir="rtl"] .top-bar__left {
  text-align: right;
}
[dir="rtl"] .top-bar__right {
  text-align: left;
}
[dir="rtl"] .section-label {
  text-align: right;
}
[dir="rtl"] .feature-item {
  text-align: right;
}
[dir="rtl"] .stat-item {
  text-align: center;
}
@media (max-width: 767.98px) {
  [dir="rtl"] .top-bar__left {
    display: none;
  }
  [dir="rtl"] .top-bar__right {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
}
