@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── Variables ──────────────────────────────────────────── */
:root {
  --primary: #2D3B2A;
  --primary-light: #52634d;
  --primary-dark: #1a2419;
  --secondary: #C5A07F;
  --accent: #A67C52;
  --bg-creme: #FDFBF8;
  --bg-light: #F4F7F4;
  --text-dark: #2D342D;
  --text-light: #6B7280;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.82);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-creme);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.serif {
  font-family: 'Playfair Display', serif;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

input,
textarea,
select {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 80px 0;
}

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

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes kenBurns {
  from {
    transform: scale(1.09);
  }

  to {
    transform: scale(1.0);
  }
}

@keyframes scrollBounce {

  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ─── Glass ──────────────────────────────────────────────── */
.glass {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(74, 93, 69, 0.28);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 93, 69, 0.38);
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-primary.added {
  background: #388e3c;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

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

/* ─── Section Typography ─────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Corporate Home Hero ────────────────────────────────── */
.home-hero-corporate {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: kenBurns 9s ease-out both;
}

/* Diagonal overlay: dark on content side, image shows on right */
.home-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg,
      rgba(12, 20, 10, 0.93) 0%,
      rgba(22, 36, 20, 0.80) 38%,
      rgba(15, 22, 13, 0.50) 65%,
      rgba(0, 0, 0, 0.22) 100%);
  z-index: 1;
}

.relative-z {
  position: relative;
  z-index: 5;
  width: 100%;
}

/* ── Slider Navigation Arrows ── */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.hero-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-50%) scale(1.08);
}

.hero-slider-arrow-prev {
  left: 2rem;
}

.hero-slider-arrow-next {
  right: 2rem;
}

/* ── Progress-bar Dots ── */
.hero-slider-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 10;
  align-items: center;
}

.hero-slider-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  border: none;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.hero-slider-dot.active {
  width: 64px;
  background: var(--secondary);
}

/* ── Scroll Indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.hero-scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), transparent);
  animation: scrollBounce 2.4s ease-in-out infinite;
}

/* ── Hero Content ── */
.home-hero-content-hq {
  max-width: 680px;
  margin: 0;
  color: white;
}

.corporate-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--secondary);
  margin-bottom: 1.75rem;
}

.corporate-hero-tag::before {
  content: '';
  display: inline-block;
  width: 38px;
  height: 1.5px;
  background: var(--secondary);
  flex-shrink: 0;
}

.hero-title-hq {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.text-secondary-accent {
  color: var(--secondary);
  font-style: italic;
}

.hero-subtitle-hq {
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.86;
  max-width: 560px;
  margin: 0 0 2.75rem;
}

.hero-hq-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

/* Primary CTA — gradient gold pill */
.btn-primary-hq {
  background: linear-gradient(135deg, #d4a96a 0%, var(--secondary) 50%, #a67840 100%);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.35s ease;
  box-shadow: 0 8px 28px rgba(197, 160, 127, 0.42);
}

.btn-primary-hq:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(197, 160, 127, 0.58);
  background: linear-gradient(135deg, #e0bc82 0%, #c9a97a 50%, #b58a52 100%);
}

/* Secondary CTA — glass pill */
.btn-white-hq {
  border: 1.5px solid rgba(255, 255, 255, 0.52);
  color: white;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.35s ease;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.btn-white-hq:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-dark);
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

/* ── Trust Badge Pills ── */
.hero-trust-bar-hq {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.trust-item-hq {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.trust-item-hq:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.38);
}

.trust-item-hq span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .home-hero-corporate {
    min-height: 60vh;
  }

  .hero-hq-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-trust-bar-hq {
    gap: 0.6rem;
    padding-top: 1.75rem;
    justify-content: center;
  }

  .hero-slider-arrow {
    display: none;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ─── Two-Row Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
}

.site-header::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 40%, var(--secondary) 100%);
}

/* Top bar */
.header-top {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 2rem;
  gap: 1rem;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.header-top-right {
  justify-content: flex-end;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-social {
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  transition: var(--transition);
}

.header-social:hover {
  color: var(--primary);
  background: rgba(74, 93, 69, 0.09);
}

.header-divider {
  width: 1px;
  height: 34px;
  background: #EBEBEB;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-light);
  font-size: 0.82rem;
}

.header-contact-item svg {
  color: white;
  flex-shrink: 0;
  background: var(--primary);
  padding: 5px;
  border-radius: 7px;
  width: 28px;
  height: 28px;
  box-shadow: 0 2px 8px rgba(74, 93, 69, 0.25);
}

.header-contact-label {
  display: block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--text-light);
  font-weight: 500;
}

.header-contact-value {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-dark);
}

.header-contact-value:hover {
  color: var(--primary);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.header-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  border-radius: 10px;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.header-icon-btn:hover {
  color: var(--primary);
  background: rgba(74, 93, 69, 0.09);
}

.header-icon-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--accent);
  color: white;
  font-size: 0.58rem;
  font-weight: 700;
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  text-align: center;
  line-height: 15px;
  padding: 0 3px;
  border: 1.5px solid white;
}

/* Bottom nav bar */
.header-nav {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #5c7257 100%);
}

.header-nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 0.9rem 1.5rem;
  display: block;
  position: relative;
  transition: var(--transition);
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.header-nav-link:hover {
  color: white;
}

.header-nav-link:hover::after {
  transform: scaleX(1);
}

.header-nav-link-active {
  color: white;
  font-weight: 600;
}

.header-nav-link-active::after {
  transform: scaleX(1);
}

/* Keep old cart badge for any references */
.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.nav-hamburger {
  background: none;
  display: none;
  padding: 0.25rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 85vw);
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  padding: 5rem 1.75rem 2rem;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border-left: 3px solid var(--primary);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-nav-link {
  display: block;
  padding: 0.9rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.nav-link-active {
  background: rgba(74, 93, 69, 0.07);
  color: var(--primary);
  padding-left: 1.1rem;
}

.mobile-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  margin: 0.75rem 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  z-index: 998;
}

/* ─── Home Hero ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-creme) 60%, #e8f0e7 100%);
}

.hero-bg-decor {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 93, 69, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
}

.hero-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-btn {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(74, 93, 69, 0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-blob {
  width: 100%;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  background: var(--primary);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-blob img {
  width: 100%;
  height: auto;
  transform: scale(1.05);
}

.hero-float-card {
  position: absolute;
  bottom: 8%;
  left: -8%;
  padding: 1.1rem 1.4rem;
  border-radius: 16px;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  box-shadow: var(--shadow);
}

.hero-float-top {
  bottom: auto;
  top: 8%;
  left: auto;
  right: -5%;
}

.float-icon-wrap {
  background: var(--secondary);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Stats ──────────────────────────────────────────────── */
.stats-section {
  background: var(--primary);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stat-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: white;
  padding: 0.5rem;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-top: 0.2rem;
}

/* ─── Features ───────────────────────────────────────────── */
.features-section {
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--bg-creme);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── Featured Products ──────────────────────────────────── */
.featured-section {
  background: var(--bg-creme);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.featured-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.featured-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.05);
}

.featured-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.featured-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.featured-card-body {
  padding: 1.5rem;
}

.featured-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.featured-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-actions {
  display: flex;
  gap: 0.75rem;
}

.featured-btn {
  flex: 1;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

/* ─── Brand Story ────────────────────────────────────────── */
.brand-story-section {
  background: var(--bg-light);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-story-img-wrap {
  position: relative;
}

.brand-story-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.brand-story-img-frame img {
  width: 100%;
}

.brand-story-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-creme);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.testimonial-location {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ─── CTA Banner ─────────────────────────────────────────── */
.cta-section {
  background: var(--bg-light);
}

.cta-card {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-title {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ─── Shop Page ──────────────────────────────────────────── */
.shop-header {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1498579150354-977475b7ea0b?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.shop-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(29, 40, 26, 0.90) 0%, rgba(60, 79, 55, 0.75) 100%);
  z-index: 0;
}

.shop-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-creme);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.shop-header .container {
  position: relative;
  z-index: 1;
  padding: 4.5rem 2rem 5.5rem;
}

.shop-body {
  padding: 2.5rem 2rem 5rem;
}

.shop-filters {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  font-size: 0.9rem;
  background: white;
  transition: var(--transition);
  outline: none;
}

.search-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 93, 69, 0.1);
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.category-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  background: white;
  border: 1.5px solid #E5E7EB;
  color: var(--text-light);
  transition: var(--transition);
}

.category-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.results-count {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

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

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

.product-price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  color: var(--primary);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 1px;
}

.product-name {
  font-size: 1.25rem;
  margin: 0.4rem 0 0.5rem;
}

.product-desc {
  font-size: 0.87rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-actions {
  display: flex;
  gap: 0.6rem;
}

.product-action-btn {
  flex: 1;
  justify-content: center;
  padding: 0.7rem 0.8rem;
  font-size: 0.85rem;
}

.product-action-btn.icon-only {
  flex: 0 0 auto;
  padding: 0.7rem 0.9rem;
}

/* Skeleton loader */
.shop-loading {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
}

.product-skeleton {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.skeleton-img {
  height: 260px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}

.skeleton-line {
  height: 14px;
  background: #f0f0f0;
  border-radius: 6px;
  margin: 1rem 1.25rem 0;
  animation: shimmer 1.4s infinite;
}

.skeleton-line.short {
  width: 40%;
}

.skeleton-line.medium {
  width: 65%;
  margin-bottom: 1rem;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* No results */
.no-results {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-light);
}

.no-results h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 1rem 0 0.5rem;
}

/* ─── Product Detail ─────────────────────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-detail-img-wrap {
  position: relative;
}

.product-detail-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.product-detail-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(74, 93, 69, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.product-detail-category {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-detail-name {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--primary);
  margin: 0.5rem 0;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

.product-detail-desc-box {
  background: white;
  padding: 1.75rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-detail-benefits {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.qty-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--primary);
  transition: var(--transition);
}

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

.qty-value {
  padding: 0 1rem;
  font-weight: 700;
  min-width: 40px;
  text-align: center;
}

.add-cart-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  font-size: 1rem;
}

/* ─── Cart ───────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.25rem;
  align-items: center;
}

.cart-item-img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.cart-item-price-unit {
  font-size: 0.85rem;
  color: var(--text-light);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.cart-item-total {
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 60px;
  text-align: right;
}

.cart-remove-btn {
  background: none;
  color: var(--text-light);
  display: flex;
}

.cart-remove-btn:hover {
  color: var(--accent);
}

.cart-summary {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.summary-divider {
  border: none;
  border-top: 1px solid #EEE;
  margin: 1.25rem 0;
}

.summary-total {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
}

.cart-login-notice {
  background: rgba(178, 83, 62, 0.08);
  border: 1px solid rgba(178, 83, 62, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  text-align: center;
  color: var(--accent);
}

.checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.secure-badge {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ─── Login ──────────────────────────────────────────────── */
.login-page {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--bg-creme) 60%, #e8f0e7 100%);
}

.login-card {
  width: 100%;
  max-width: 460px;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.login-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.login-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.login-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.login-title {
  font-size: 1.9rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.login-subtitle {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 0;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #DDD;
  transition: var(--transition);
}

.step-dot.active {
  background: var(--primary);
}

.step-line {
  flex: 1;
  height: 2px;
  background: #DDD;
  margin: 0 0.5rem;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-size: 0.95rem;
  background: white;
  transition: var(--transition);
  outline: none;
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 93, 69, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--primary);
}

.form-input.with-prefix {
  padding-left: 3.2rem;
}

.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: white;
}

.phone-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 93, 69, 0.1);
}

.phone-input-prefix {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
  background: #f4f6f4;
  border-right: 1.5px solid #E5E7EB;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.phone-input-wrap:focus-within .phone-input-prefix {
  background: #eaf1ea;
  border-right-color: var(--primary);
}

.phone-input-field {
  flex: 1;
  padding: 0.88rem 1rem;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: transparent;
}

.phone-input-field::placeholder {
  color: #9ca3af;
}

/* OTP boxes */
.otp-inputs {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
}

.otp-box {
  width: 52px;
  height: 56px;
  flex-shrink: 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  outline: none;
  transition: var(--transition);
  background: white;
  color: var(--primary);
  caret-color: var(--primary);
}

.otp-box:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 93, 69, 0.12);
  background: #fafff9;
}

.otp-box:not(:placeholder-shown) {
  border-color: var(--primary);
  background: #f4faf3;
}

.form-error {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.login-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.login-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.login-back-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 0.35rem 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.login-back-btn:hover {
  color: var(--primary);
  background: rgba(74, 93, 69, 0.06);
}

.login-back-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.login-footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2rem;
  line-height: 1.6;
}

/* ─── Corporate HQ Contact Page ──────────────────────────── */
.hq-contact-wrapper {
  background-color: var(--white);
}

.hq-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
  border-bottom: none;
  padding: 0;
}

.hq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(29, 40, 26, 0.88) 0%, rgba(60, 79, 55, 0.74) 100%);
  z-index: 0;
}

.hq-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.hq-hero .container {
  position: relative;
  z-index: 1;
  padding: 4.5rem 2rem 5.5rem;
}

.hq-hero .corporate-label {
  color: var(--secondary);
}

.hq-hero .hq-title {
  color: white;
}

.hq-hero .text-serif-accent {
  color: var(--secondary);
  -webkit-text-fill-color: var(--secondary);
}

.hq-hero .hq-subtitle {
  color: rgba(255, 255, 255, 0.82);
}

.corporate-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hq-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.text-serif-accent {
  color: var(--primary);
  font-style: italic;
}

.hq-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.hq-channels {
  padding: 60px 0;
  background: white;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.channel-card {
  padding: 2.5rem;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  transition: var(--transition);
}

.channel-card:hover {
  border-color: var(--primary);
  background: var(--bg-creme);
}

.channel-icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.channel-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.channel-detail {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.channel-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.channel-action-line {
  height: 2px;
  width: 30px;
  background: var(--secondary);
  transition: var(--transition);
}

.channel-card:hover .channel-action-line {
  width: 60px;
  background: var(--primary);
}

.hq-main-layout {
  padding: 100px 0;
  background: #fafafa;
}

.hq-layout-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 5rem;
}

.hq-form-container {
  background: white;
  padding: 4rem;
  border: 1px solid #eee;
  border-radius: 8px;
}

.hq-form-header {
  margin-bottom: 3rem;
}

.hq-form-header h2 {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.hq-form-header p {
  color: var(--text-light);
}

.hq-field {
  margin-bottom: 1.5rem;
}

.hq-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 0.5rem;
}

.hq-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hq-field input,
.hq-field select,
.hq-field textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.hq-field input:focus,
.hq-field select:focus,
.hq-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(74, 93, 69, 0.05);
}

.hq-submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--text-dark);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1rem;
}

.hq-submit-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.sidebar-title {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.hq-accordion {
  border-top: 1px solid #eee;
}

.hq-accordion-item {
  border-bottom: 1px solid #eee;
}

.hq-accordion-header {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  text-align: left;
}

.hq-accordion-body {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

.hq-social-box {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #eee;
}

.sidebar-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bbb;
  margin-bottom: 1.25rem;
}

.hq-social-row {
  display: flex;
  gap: 1.5rem;
}

.hq-social-row a {
  color: var(--text-light);
}

.hq-social-row a:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

.hq-office-box {
  margin-top: 3rem;
}

.office-card {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: white;
  border: 1px solid #eee;
  border-radius: 4px;
}

.office-icon {
  color: var(--secondary);
}

.office-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
}

.office-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.hq-success-card {
  text-align: center;
  padding: 2rem 0;
}

.success-icon-wrap {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.btn-primary-compact {
  margin-top: 1.5rem;
  padding: 0.6rem 2rem;
  background: var(--primary);
  color: white;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .hq-layout-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: #182918;
  color: white;
  padding: 5rem 0 0;
  position: relative;
}

.footer-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

.footer-tagline {
  opacity: 0.6;
  font-size: 0.87rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #182918;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(212, 189, 158, 0.3);
}

.footer-col-title {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 1.4rem;
  color: var(--secondary);
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-links a {
  opacity: 0.6;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a::before {
  content: '›';
  color: var(--secondary);
  font-size: 1.15rem;
  line-height: 1;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 3px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  opacity: 0.72;
  font-size: 0.87rem;
  line-height: 1.65;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.2rem 0;
  background: rgba(0, 0, 0, 0.22);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.55;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  opacity: 1;
}

/* ─── About Page ─────────────────────────────────────────── */
.about-page-wrapper {
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  min-height: 70vh;
  background: url('/assets/images/6.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-creme), transparent);
  z-index: 3;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  color: white;
}

.about-hero-title {
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(to right, var(--secondary), #f5e6d3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-desc {
  max-width: 600px;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.about-hero-trusted {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trusted-avatars {
  display: flex;
  margin-right: -0.5rem;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid white;
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.about-hero-trusted span {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
}

.about-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(15px);
  }
}

/* ─── Modern Stats ───────────────────────────────────────── */
.stats-section-refined {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stats-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-card-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1rem;
}

.stat-card-modern:not(:last-child) {
  border-right: 1px solid #f0f0f0;
}

.stat-icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(74, 93, 69, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.stat-value-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.stat-label-modern {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ─── Overview Section ───────────────────────────────────── */
.about-overview-section {
  padding: 120px 0;
  background-color: var(--bg-creme);
}

.about-overview-grid-refined {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

.img-stack {
  position: relative;
  height: 500px;
}

.img-main {
  width: 85%;
  height: 480px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.img-sub {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  border: 10px solid white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  top: 40px;
  right: 5%;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.experience-badge .years {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
}

.section-title-large {
  font-size: 3rem;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 2rem;
}

.overview-p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1.25rem;
}

.feature-check {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(74, 93, 69, 0.25);
}

.feature-content h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ─── Timeline Section ───────────────────────────────────── */
.timeline-section {
  padding: 100px 0;
  background: white;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--secondary) 10%, var(--secondary) 90%, transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: 50%;
  position: relative;
  margin-bottom: 60px;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 50%;
}

.timeline-content-box {
  width: 85%;
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  position: relative;
  transition: var(--transition);
}

.timeline-item.left .timeline-content-box {
  margin-right: 2rem;
}

.timeline-item.right .timeline-content-box {
  margin-left: 2rem;
}

.timeline-content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary);
}

.timeline-date {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.timeline-icon-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 0 0 8px white;
}

.timeline-item.left .timeline-icon-box {
  right: -23px;
}

.timeline-item.right .timeline-icon-box {
  left: -23px;
}

.timeline-content-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.timeline-content-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Mission & Vision Refined ────────────────────────────── */
.mv-section-refined {
  padding: 100px 0;
  background: var(--bg-light);
}

.mv-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mv-card-refined {
  position: relative;
  padding: 4rem 3rem;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.mv-card-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: var(--primary);
  opacity: 0.03;
  border-radius: 0 0 0 100%;
  transition: var(--transition);
  z-index: -1;
}

.mv-card-refined:hover .mv-card-bg {
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.05;
}

.mv-icon-luxury {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 20px rgba(74, 93, 69, 0.2);
}

.mv-card-refined.vision .mv-icon-luxury {
  background: linear-gradient(135deg, var(--secondary) 0%, #a68c6e 100%);
}

.mv-title-modern {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.mv-desc-modern {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.mv-card-footer {
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
}

.dot-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dot-link::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

/* ─── Values Section Modern ──────────────────────────────── */
.values-section-modern {
  padding: 120px 0;
  background: var(--bg-creme);
}

.section-header-centered {
  text-align: center;
  margin-bottom: 5rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 1rem auto 0;
  color: var(--text-light);
}

.values-grid-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-pill-card {
  display: flex;
  gap: 1.5rem;
  background: white;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.value-pill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pill-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-content h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pill-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── Premium CTA ────────────────────────────────────────── */
.cta-section-premium {
  padding: 100px 0;
  background: white;
}

.cta-card-luxury {
  position: relative;
  background: #1a2318;
  border-radius: 40px;
  padding: 6rem 4rem;
  overflow: hidden;
  text-align: center;
  color: white;
}

.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 189, 158, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
}

.cta-card-luxury h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: white;
}

.cta-card-luxury p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.btn-secondary-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--secondary);
  color: var(--text-dark);
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
}

.btn-secondary-luxury:hover {
  background: #e5d2b8;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 189, 158, 0.4);
}

/* ─── Policy Pages ───────────────────────────────────────── */
.policy-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
  border-bottom: none;
  padding: 0;
}

.policy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(20, 29, 18, 0.92) 0%, rgba(50, 67, 45, 0.80) 100%);
  z-index: 0;
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-creme);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.policy-hero .container {
  position: relative;
  z-index: 1;
  padding: 4.5rem 2rem 5.5rem;
}

.policy-content {
  max-width: 860px;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.policy-intro {
  background: white;
  border: 1px solid rgba(74, 93, 69, 0.1);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.policy-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.policy-summary-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 500;
}

.policy-summary-green {
  background: rgba(74, 93, 69, 0.08);
  color: var(--primary-dark);
}

.policy-summary-gold {
  background: rgba(212, 189, 158, 0.25);
  color: #7a6240;
}

.policy-summary-red {
  background: rgba(178, 83, 62, 0.09);
  color: var(--accent);
}

.policy-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.policy-section {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.policy-icon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.policy-section-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0;
}

.policy-section-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.policy-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.policy-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

.policy-contact-card {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: 20px;
  padding: 2.5rem;
}

.policy-contact-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.policy-contact-card p {
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.policy-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.policy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.policy-contact-item a {
  color: var(--secondary);
  font-weight: 500;
}

.policy-contact-item a:hover {
  opacity: 0.85;
}

/* ─── Responsive ─────────────────────────────────────────── */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-story-grid {
    gap: 3rem;
  }

  .product-detail-grid {
    gap: 2.5rem;
  }

  .key-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Two-row header mobile: hide text contacts, keep icon buttons */
  .header-top-left {
    display: none;
  }

  /* Hide only email/phone text in right section — keep cart/wishlist icons */
  .header-top-right .header-contact-item,
  .header-top-right .header-divider {
    display: none;
  }

  .header-top-right {
    flex: 0;
  }

  .header-top-inner {
    justify-content: space-between;
  }

  .header-logo {
    flex: 1;
    justify-content: flex-start;
    padding-left: 0.5rem;
  }

  .header-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem 4rem;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-float-card {
    display: none;
  }

  .hero-actions {
    gap: 1rem;
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .brand-story-badge {
    right: 0;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-wrap: wrap;
  }

  .cart-item-controls {
    width: 100%;
    justify-content: space-between;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .policy-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .key-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-overview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 60px 2rem;
  }

  .about-founded-badge {
    right: 0;
    bottom: -14px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero-content {
    padding: 5rem 2rem 4rem;
  }

  section {
    padding: 60px 0;
  }

  main,
  .main-content-wrapper {
    padding-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-summary-grid {
    grid-template-columns: 1fr 1fr;
  }

  .policy-section-header {
    padding: 1rem 1.25rem;
  }

  .policy-section-body {
    padding: 1.25rem;
  }

  .policy-contact-card {
    padding: 1.75rem;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-trust {
    gap: 0.75rem;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .login-card {
    padding: 2.5rem 1.5rem;
  }

  .contact-form-card {
    padding: 1.75rem 1.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-divider {
    display: none;
  }
}

/* ─── Logo Image ─────────────────────────────────────────── */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

/* ─── Key Benefits ───────────────────────────────────────── */
.key-benefits-section {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.key-benefits-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(74, 93, 69, 0.05);
  pointer-events: none;
}

.key-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.benefit-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  cursor: default;
}

.benefit-card:hover {
  box-shadow: 0 12px 36px rgba(74, 93, 69, 0.14);
}

.benefit-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.benefit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.benefit-card:hover .benefit-img {
  transform: scale(1.06);
}

.benefit-num-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(74, 93, 69, 0.35);
}

.benefit-content {
  padding: 1.4rem 1.5rem 1.6rem;
}

.benefit-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.benefit-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* ─── Trust Bar ──────────────────────────────────────────── */
.trust-bar-section {
  background: white;
  padding: 3rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.trust-bar-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.trust-bar-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.trust-bar-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.trust-bar-divider {
  width: 1px;
  height: 60px;
  background: #E5E7EB;
}

@media (max-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-bar-divider {
    width: 100%;
    height: 1px;
  }
}

/* ─── WhatsApp FAB ───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-fab:hover {
  background: #1ebe5a;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: white;
}

/* ─── Wishlist Page ──────────────────────────────────────── */
.wishlist-page {
  padding: 3rem 2rem 5rem;
}

.wishlist-header {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.wishlist-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(29, 40, 26, 0.88) 0%, rgba(60, 79, 55, 0.73) 100%);
  z-index: 0;
}

.wishlist-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-creme);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}

.wishlist-header .container {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 5rem;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.wishlist-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-light);
}

.wishlist-empty h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin: 1rem 0 0.5rem;
}

.wishlist-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.wishlist-card:hover {
  transform: translateY(-6px);
}

.wishlist-remove-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.wishlist-remove-btn:hover {
  background: var(--accent);
  color: white;
}

/* ─── Admin Panel ────────────────────────────────────────── */
.admin-container {
  min-height: 100vh;
  display: flex;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 0.5rem;
}

/* Modal form input overrides */
.admin-container .form-input {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.admin-container .form-input:focus {
  background: white;
  border-color: var(--primary);
}

.admin-sidebar button:hover {
  filter: brightness(0.9);
}

.admin-container table th {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — SUPPLEMENTAL
   ═══════════════════════════════════════════════════════ */

/* ── Medium tablet (≤ 900px) ─────────────────────────── */
@media (max-width: 900px) {

  /* About — overview image stack */
  .about-overview-grid-refined {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .img-stack {
    height: auto;
  }

  .img-main {
    width: 100%;
    height: 340px;
  }

  .img-sub {
    position: static;
    width: 140px;
    height: 140px;
    border-width: 6px;
    margin-top: 1rem;
  }

  .experience-badge {
    top: 1rem;
    right: 1rem;
    padding: 1rem;
  }

  .experience-badge .years {
    font-size: 1.75rem;
  }

  /* About — stats row */
  .stats-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .stat-card-modern:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.25rem;
    margin-bottom: 0.25rem;
  }

  /* About — mission / vision */
  .mv-grid-modern {
    grid-template-columns: 1fr;
  }

  /* About — values */
  .values-grid-scroller {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About — section padding */
  .about-overview-section,
  .timeline-section,
  .mv-section-refined,
  .values-section-modern {
    padding: 70px 0;
  }

  .cta-section-premium {
    padding: 70px 0;
  }
}

/* ── Phone landscape / small tablet (≤ 768px) ────────── */
@media (max-width: 768px) {

  /* ── Home hero: center content on mobile ── */
  .home-hero-content-hq {
    margin: 0 auto;
    text-align: center;
  }

  .hero-hq-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-trust-bar-hq {
    justify-content: center;
  }

  .corporate-hero-tag {
    justify-content: center;
  }

  .hero-subtitle-hq {
    margin: 0 auto 2.5rem;
  }

  /* ── About: timeline collapse to single column ── */
  .timeline-line {
    left: 20px;
    transform: none;
  }

  .timeline-item,
  .timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 56px;
    margin-bottom: 2rem;
  }

  .timeline-content-box {
    width: 100%;
    padding: 1.5rem;
  }

  .timeline-item.left .timeline-content-box {
    margin-right: 0;
  }

  .timeline-item.right .timeline-content-box {
    margin-left: 0;
  }

  .timeline-icon-box,
  .timeline-item.left .timeline-icon-box,
  .timeline-item.right .timeline-icon-box {
    left: 0;
    right: auto;
    top: 1.5rem;
    transform: none;
    width: 40px;
    height: 40px;
  }

  .timeline-date {
    font-size: 1.05rem;
  }

  /* ── About: CTA luxury card ── */
  .cta-card-luxury {
    padding: 3.5rem 2rem;
    border-radius: 24px;
  }

  /* ── Contact: form padding & two-column row ── */
  .hq-form-container {
    padding: 2rem 1.5rem;
  }

  .hq-input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hq-main-layout {
    padding: 60px 0;
  }

  /* ── Brand story badge: stop overflowing on small screens ── */
  .brand-story-badge {
    position: static;
    margin-top: 1.25rem;
    display: inline-flex;
    border-radius: 12px;
  }

  /* ── Shop ── */
  .search-wrap {
    max-width: 100%;
  }

  .shop-body {
    padding: 2rem 1.25rem 4rem;
  }

  /* ── Cart ── */
  .cart-item-img {
    width: 80px;
    height: 80px;
  }

  /* ── Channels grid (contact) ── */
  .channels-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Small phones (≤ 480px) ──────────────────────────── */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Hero buttons: stack & stretch */
  .hero-hq-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  .btn-primary-hq,
  .btn-white-hq {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-subtitle-hq {
    font-size: 1rem;
  }

  /* Trust badges: slightly smaller */
  .trust-item-hq {
    font-size: 0.65rem;
    padding: 0.4rem 0.85rem;
  }

  /* Key benefits: 1 column */
  .key-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Testimonials: 1 column */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Features: 1 column */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Product grid: 1 column */
  .product-grid,
  .shop-loading {
    grid-template-columns: 1fr;
  }

  /* Wishlist: 1 column */
  .wishlist-grid {
    grid-template-columns: 1fr;
  }

  /* About — values: 1 column */
  .values-grid-scroller {
    grid-template-columns: 1fr;
  }

  /* About — stats: 1 column */
  .stats-grid-modern {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

  .stat-card-modern:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.25rem;
  }

  /* About — mission cards */
  .mv-card-refined {
    padding: 2.5rem 1.75rem;
  }

  /* About — CTA */
  .cta-card-luxury {
    padding: 2.5rem 1.25rem;
    border-radius: 20px;
  }

  .btn-secondary-luxury {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  /* About — hero */
  .about-hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .about-hero-content {
    padding: 3.5rem 1.5rem 3rem;
  }

  .stats-section-refined {
    margin-top: -30px;
  }

  .section-title-large {
    font-size: 2rem;
  }

  /* About — section padding */
  .about-overview-section,
  .timeline-section,
  .mv-section-refined,
  .values-section-modern {
    padding: 50px 0;
  }

  /* Contact channels card */
  .channel-card {
    padding: 1.75rem;
  }

  /* Contact form */
  .hq-form-container {
    padding: 1.5rem 1.25rem;
  }

  /* OTP inputs: tighter on small phones */
  .otp-box {
    width: 44px;
    height: 50px;
    font-size: 1.25rem;
  }

  .otp-inputs {
    gap: 0.4rem;
  }

  /* Cart */
  .cart-item {
    gap: 1rem;
  }

  .cart-item-img {
    width: 72px;
    height: 72px;
  }

  .cart-item-name {
    font-size: 1rem;
  }

  .cart-summary {
    padding: 1.5rem;
  }

  /* CTA home */
  .cta-card {
    border-radius: var(--radius-lg);
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 0;
  }

  /* Policy summary */
  .policy-summary-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 0;
  }
}

/* ═══════════════════════════════════════════════════
   ✦  VHC VISUAL ENHANCEMENT LAYER  ✦
   ═══════════════════════════════════════════════════ */

/* Smooth scroll & text selection */
html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(197, 160, 127, 0.35);
  color: #1a2419;
}

/* Enhanced variables */
:root {
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(45, 59, 42, 0.10);
  --shadow-hover: 0 18px 50px rgba(45, 59, 42, 0.16);
  --gradient-primary: linear-gradient(135deg, #2D3B2A 0%, #3d5239 60%, #52634d 100%);
  --gradient-gold: linear-gradient(135deg, #d4a96a 0%, #C5A07F 50%, #a67840 100%);
  --gradient-hero: linear-gradient(108deg, rgba(12, 20, 10, 0.97) 0%, rgba(22, 36, 20, 0.84) 40%, rgba(15, 22, 13, 0.48) 70%, rgba(0, 0, 0, 0.18) 100%);
  --border-subtle: 1px solid rgba(45, 59, 42, 0.08);
}

/* Keyframes */
@keyframes floatY {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 127, 0.55)
  }

  80% {
    box-shadow: 0 0 0 16px rgba(197, 160, 127, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 127, 0)
  }
}

@keyframes shimmerLine {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

/* ── Header ─────────────────────────────────────────── */
.site-header::before {
  height: 4px;
  background: var(--gradient-gold);
  box-shadow: 0 2px 12px rgba(197, 160, 127, 0.5);
}

.header-top {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-nav {
  background: var(--gradient-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-nav-link {
  letter-spacing: 1.2px;
  padding: 1rem 1.8rem;
}

.header-nav-link::after {
  background: var(--gradient-gold);
  height: 3px;
}

/* ── Hero ───────────────────────────────────────────── */
.home-hero-corporate {
  min-height: 85vh;
}

.home-hero-bg-overlay {
  background: var(--gradient-hero);
}

.hero-title-hq {
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  letter-spacing: -1px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-subtitle-hq {
  font-size: 1.15rem;
  line-height: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary-hq {
  background: var(--gradient-gold);
  box-shadow: 0 6px 24px rgba(197, 160, 127, 0.45), 0 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: 1.8px;
  font-size: 0.75rem;
  padding: 1.1rem 2.6rem;
}

.btn-primary-hq:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(197, 160, 127, 0.6);
}

.btn-white-hq {
  backdrop-filter: blur(12px);
  letter-spacing: 1.8px;
  font-size: 0.75rem;
  padding: 1.1rem 2.6rem;
}

/* ── Stats ──────────────────────────────────────────── */
.stats-section {
  background: var(--gradient-primary);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255, 255, 255, 0.032);
  transform: skewX(-15deg);
  pointer-events: none;
}

.stat-item {
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  transition: background 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* ── Features ───────────────────────────────────────── */
.features-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, #edf2ec 100%);
}

.feature-card {
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(197, 160, 127, 0.3);
}

.feature-icon-box {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(45, 59, 42, 0.08) 0%, rgba(197, 160, 127, 0.12) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  border: 1px solid rgba(197, 160, 127, 0.2);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  animation: floatY 2.5s ease infinite;
}

.feature-title {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.feature-text {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ── Product Cards ──────────────────────────────────── */
.product-card {
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border-radius: var(--radius-xl);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  height: 270px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.35rem 1.4rem 1.6rem;
}

.product-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}

.product-title-hq {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  line-height: 1.35;
  font-family: 'Playfair Display', serif;
}

.price-hq {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.add-to-cart-hq {
  background: var(--gradient-primary);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(45, 59, 42, 0.3);
  transition: var(--transition);
  flex-shrink: 0;
}

.add-to-cart-hq:hover {
  background: var(--gradient-gold);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(197, 160, 127, 0.5);
}

.view-details-hq {
  display: block;
  text-align: center;
  background: rgba(45, 59, 42, 0.06);
  color: var(--primary);
  padding: 0.65rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 1px solid rgba(45, 59, 42, 0.12);
}

.view-details-hq:hover {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ── Benefit Cards ──────────────────────────────────── */
.benefit-card {
  border-radius: 22px;
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.benefit-img-wrap {
  height: 210px;
}

.benefit-num-badge {
  background: var(--gradient-gold);
  font-weight: 900;
  border-radius: 8px;
  letter-spacing: 0.5px;
  font-size: 0.72rem;
  padding: 5px 12px;
  box-shadow: 0 3px 14px rgba(197, 160, 127, 0.5);
}

.benefit-content {
  padding: 1.5rem 1.5rem 1.75rem;
}

.benefit-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.benefit-text {
  font-size: 0.875rem;
  line-height: 1.8;
}

/* ── Brand Story ────────────────────────────────────── */
.brand-story-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-creme) 100%);
  position: relative;
  overflow: hidden;
}

.brand-story-section::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 127, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

.brand-story-img-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.brand-story-img-frame img {
  transition: transform 0.7s ease;
}

.brand-story-img-wrap:hover .brand-story-img-frame img {
  transform: scale(1.04);
}

.brand-story-badge {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(197, 160, 127, 0.3);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  animation: floatY 4s ease-in-out infinite;
}

/* ── Testimonials ───────────────────────────────────── */
.testimonials-section {
  position: relative;
}

.testimonial-card {
  background: white;
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  padding: 2.25rem;
  position: relative;
  border-radius: var(--radius-xl);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(197, 160, 127, 0.25);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.testimonial-text {
  font-size: 0.97rem;
  font-style: italic;
  line-height: 1.85;
}

.testimonial-avatar {
  background: var(--gradient-primary);
  width: 48px;
  height: 48px;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(45, 59, 42, 0.25);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
}

/* ── Trust Bar ──────────────────────────────────────── */
.trust-bar-section {
  background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
}

.trust-bar-item {
  padding: 0.5rem 1rem;
  border-radius: 14px;
  transition: background 0.3s ease;
}

.trust-bar-item:hover {
  background: rgba(197, 160, 127, 0.08);
}

.trust-bar-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(45, 59, 42, 0.08) 0%, rgba(197, 160, 127, 0.12) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(197, 160, 127, 0.18);
}

.trust-bar-item:hover .trust-bar-icon {
  background: var(--gradient-primary);
  color: white;
  border-color: transparent;
}

.trust-bar-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.trust-bar-desc {
  font-size: 0.83rem;
  margin-top: 0.15rem;
}

/* ── CTA Section ────────────────────────────────────── */
.cta-card {
  background: var(--gradient-primary);
  padding: 5rem 3rem;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(45, 59, 42, 0.28);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-size: 2.5rem;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn {
  background: white;
  color: var(--primary);
  border-radius: 50px;
  padding: 1.1rem 3rem;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  position: relative;
  z-index: 1;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
  background: var(--secondary);
  color: white;
}

/* ── Section Eyebrow ────────────────────────────────── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(197, 160, 127, 0.12) 0%, rgba(45, 59, 42, 0.06) 100%);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(197, 160, 127, 0.25);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: 2.7rem;
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.02rem;
  line-height: 1.85;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, #101e0e 0%, #182918 60%, #1e3320 100%);
}

.footer-col-title {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 24px rgba(197, 160, 127, 0.35);
}

/* ── Shop Page ──────────────────────────────────────── */
.shop-header {
  min-height: 400px;
}

.search-input {
  border-radius: 14px;
  font-size: 0.92rem;
  box-shadow: var(--shadow-sm);
}

.category-tab {
  border-radius: 50px;
  font-size: 0.84rem;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.category-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(45, 59, 42, 0.28);
}

/* ── Contact Page ───────────────────────────────────── */
.channel-card {
  border-radius: 20px;
  border: 1.5px solid #f0f0f0;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.channel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 160, 127, 0.4);
  box-shadow: var(--shadow-hover);
}

.hq-form-container {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.hq-submit-btn {
  background: var(--gradient-primary) !important;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(45, 59, 42, 0.3);
}

.hq-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(45, 59, 42, 0.38) !important;
}

/* ── WhatsApp FAB ───────────────────────────────────── */
.whatsapp-fab {
  width: 56px;
  height: 56px;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.12);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65);
}

/* ── About Page ─────────────────────────────────────── */
.about-hero {
  min-height: 75vh;
}

.about-hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.mv-card-refined {
  border: var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.mv-card-refined:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.value-pill-card {
  border: var(--border-subtle);
  border-radius: 20px;
}

.value-pill-card:hover {
  border-color: rgba(197, 160, 127, 0.3);
  box-shadow: var(--shadow-hover);
}

/* ── Scroll Reveal Utility ──────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.5s;
}

/* ── Auth / User Pill in Header ─────────────────────────────── */
.header-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  background: rgba(197, 160, 127, 0.12);
  border: 1.5px solid rgba(197, 160, 127, 0.35);
  border-radius: 50px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-login-btn i {
  width: 15px;
  height: 15px;
}

.header-login-btn:hover {
  background: var(--primary);
  color: white;
  border-color: transparent;
}

.header-user-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem 0.4rem 0.85rem;
  background: rgba(45, 59, 42, 0.08);
  border: 1.5px solid rgba(45, 59, 42, 0.15);
  border-radius: 50px;
  white-space: nowrap;
}

.header-user-pill>i {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
}

.header-user-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.3px;
}

.header-logout-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
  padding: 0;
}

.header-logout-btn i {
  width: 13px;
  height: 13px;
}

.header-logout-btn:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

/* Profile link inside user pill */
.header-user-pill-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
}

.header-user-pill-inner i {
  width: 15px;
  height: 15px;
  color: var(--primary);
  flex-shrink: 0;
}

.header-user-pill-inner:hover .header-user-phone {
  color: var(--primary);
}

/* Orders icon button in the user pill */
.header-orders-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: none;
  border: 1.5px solid rgba(45, 59, 42, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.header-orders-btn i {
  width: 13px;
  height: 13px;
}

.header-orders-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}