/* ============================================
   ILERA CARE - PREMIUM REDESIGN
   Floating Header, UI Hero, 3D Effects
   ============================================ */

:root {
  --brand-dark: #1a3320;
  --brand-green: #2d5a3d;
  --brand-light-green: #4a7c59;
  --brand-sand: #f5f0e8;
  --brand-cream: #faf8f4;
  --brand-gold: #c9a96e;
  --brand-gold-light: #e8d5a3;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-400: #a0a0a0;
  --gray-600: #666666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--brand-cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Prevent any accidental horizontal overflow on very small viewports */
html, body {
  max-width: 100vw;
  overscroll-behavior-x: none;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: var(--brand-gold-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================
   FLOATING HEADER
   ============================================ */
.header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  transform: none;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  top: 0.75rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  height: 56px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Shop button in header */
.header-shop-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.header-shop-btn:hover {
  background: var(--brand-sand);
  color: var(--brand-dark);
}

/* Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--brand-dark);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.header-icon:hover {
  background: var(--brand-sand);
  color: var(--brand-dark);
}

.header-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  width: 36px;
  height: 36px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-inner a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brand-dark);
  transition: color 0.3s ease;
}

.mobile-menu-inner a:hover {
  color: var(--brand-green);
}

/* ============================================
   HERO SECTION - UI DESIGN MATCH
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-sand) 50%, #e8e0d4 100%);
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

/* Hero Left */
.hero-left {
  order: 2;
}

.hero-content-box {
  max-width: 500px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--brand-dark);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(26, 51, 32, 0.3);
}

.hero-btn:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 51, 32, 0.4);
}

.hero-btn svg {
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(3px);
}

/* Hero Center */
.hero-center {
  order: 1;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

/* Decorative Leaves */
.hero-leaf {
  position: absolute;
  border-radius: 50% 0 50% 50%;
  z-index: 1;
}

.leaf-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-light-green), var(--brand-green));
  top: 10%;
  left: -10%;
  transform: rotate(-30deg);
  opacity: 0.8;
}

.leaf-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6b9b7a, var(--brand-light-green));
  bottom: 20%;
  right: -5%;
  transform: rotate(45deg);
  opacity: 0.7;
}

.leaf-3 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  top: 50%;
  right: -8%;
  transform: rotate(15deg);
  opacity: 0.6;
}

/* Hero Right */
.hero-right {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Review Card */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-gold);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-dark);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--brand-gold);
}

.rating {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-gold);
  background: rgba(201, 169, 110, 0.15);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

.review-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Sale Card */
.sale-card {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sale-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.sale-badge {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.sale-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.sale-desc {
  font-size: 0.8125rem;
  opacity: 0.8;
  line-height: 1.5;
}

.sale-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sale-card:hover .sale-arrow {
  background: rgba(255,255,255,0.25);
  transform: rotate(45deg);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
  padding: 5rem 0;
  background: var(--white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-text {
  max-width: 500px;
}

.philosophy-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.philosophy-desc.secondary {
  font-size: 0.9375rem;
  color: var(--gray-400);
}

.philosophy-visual {
  position: relative;
}

.philosophy-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-green);
}

.badge-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

/* ============================================
   ABOUT / WHO WE ARE - SINGLE SCREEN
   ============================================ */
.about {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl);
}

.about-img-side {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-dark), transparent);
}

.about-text-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--brand-gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ============================================
   VISION & MISSION - 3D CARDS
   ============================================ */
.vision-mission {
  padding: 5rem 0;
  background: var(--brand-cream);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  perspective: 1200px;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
  box-shadow: 
    0 1px 1px rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06);
  border-top: 4px solid var(--brand-green);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.06),
    0 24px 64px rgba(0,0,0,0.08);
}

.vm-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-sand), var(--brand-cream));
  color: var(--brand-green);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.vm-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SHOWCASE - FULL SCREEN EACH
   ============================================ */
.products-section {
  background: var(--white);
}

.product-showcase {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
}

.product-showcase.alt {
  background: var(--brand-cream);
}

.product-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product-showcase-inner.reverse {
  direction: ltr;
}

/* Product Image */
.product-showcase-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.product-img-frame img {
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-showcase:hover .product-img-frame img {
  transform: scale(1.03);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

.product-img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Product Text */
.product-showcase-text {
  max-width: 480px;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-short {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(45, 90, 61, 0.4);
}

/* Buttons */
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 14px 38px rgba(26, 51, 32, 0.22);
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
}

.btn-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(26, 51, 32, 0.30);
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
}

.btn-add-to-cart:active {
  transform: translateY(-1px);
}

.shop-product-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}


/* Shop UI */
.shop-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-sand) 55%, #e8e0d4 100%);
}

.shop-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

.shop-hero-text {
  max-width: 640px;
}

.shop-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-hero-art-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(45, 90, 61, 0.18) 0%, rgba(45, 90, 61, 0) 68%);
  border: 1px solid rgba(45, 90, 61, 0.12);
  filter: blur(0.2px);
}

.shop-hero-art img {
  width: 360px;
  max-width: 80vw;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.35);
}

.shop-grid-section {
  padding: 2rem 0 5rem;
  background: var(--white);
}

.shop-grid-header {
  margin-bottom: 1.5rem;
}

.shop-grid-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  margin-top: 0.25rem;
}

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

.shop-product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brand-green);
  font-weight: 600;
  margin: 0 0 1rem;
}


.shop-product-card {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 90, 61, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45, 90, 61, 0.18);
}

.shop-product-media {
  padding: 1.25rem 1.25rem 0.25rem;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.06) 0%, rgba(201, 169, 110, 0.10) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product-media img {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.12));
}

.shop-product-content {
  padding: 1.25rem;
  text-align: center;
}

.shop-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brand-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.shop-product-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.shop-product-actions {
  display: flex;
  justify-content: center;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1200;
}

.cart-drawer {
  position: fixed;
  top: 1rem;
  right: 1rem;
  height: calc(100vh - 2rem);
  width: min(440px, calc(100vw - 2rem));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(45, 90, 61, 0.18);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  z-index: 1300;
  overflow: hidden;
}

.cart-drawer-header {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 90, 61, 0.10);
}

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.2;
}

.cart-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  background: rgba(245, 240, 232, 0.6);
  border: 1px solid rgba(45, 90, 61, 0.12);
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: var(--brand-sand);
  transform: translateY(-1px);
}

.cart-drawer-body {
  padding: 1rem;
  height: calc(100% - 170px);
  overflow: auto;
}

.cart-empty {
  padding: 2rem 0;
  text-align: center;
  color: var(--gray-600);
}

.cart-empty-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-dark);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 90, 61, 0.10);
  background: rgba(250, 248, 244, 0.8);
  margin-bottom: 0.9rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cart-line:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 90, 61, 0.20);
}

.cart-line-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.cart-line-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-line-top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-line-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.25;
}

.cart-line-qty {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.cart-line-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(45, 90, 61, 0.15);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.cart-qty-btn:hover {
  background: var(--brand-sand);
  transform: translateY(-1px);
}

.cart-remove-btn {
  background: transparent;
  color: #7a2b2b;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s ease;
}

.cart-remove-btn:hover {
  opacity: 0.85;
}

.cart-drawer-footer {
  padding: 0.9rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(45, 90, 61, 0.10);
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.3) 0%, rgba(250, 248, 244, 0.85) 100%);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total-label {
  color: var(--gray-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.cart-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brand-dark);
  font-weight: 500;
}

.cart-checkout-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.75rem;
}

.cart-checkout-btn:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
}

.cart-disclaimer {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Fix drawer hidden state transition */
.cart-drawer.hidden {
  display: none !important;
}

.cart-backdrop.hidden {
  display: none !important;
}

/* Cart badge on header */
.header-actions .cart-count {
  position: absolute;
  transform: translate(10px, -10px);
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(45, 90, 61, 0.25);
}

.header-shop-btn {
  position: relative;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-dark);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(26, 51, 32, 0.3);
}

.btn-primary:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 51, 32, 0.4);
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-secondary-white:hover {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories {
  padding: 5rem 0;
  background: var(--white);
}

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

.category-card {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

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

.category-card:hover .category-img img {
  transform: scale(1.08);
}

.category-info {
  padding: 1.25rem;
  text-align: center;
}

.category-info h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-sand) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.team-img {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--brand-sand), var(--brand-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-img-placeholder {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  box-shadow: var(--shadow-md);
}

.team-social {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--brand-green);
  color: var(--white);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl);
}

.contact-content {
  padding: 2.5rem;
}

.contact-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 0.9375rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.contact-visual {
  display: none;
}

.contact-img-wrapper {
  height: 100%;
  overflow: hidden;
}

.contact-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-dark);
  padding: 4rem 0 2rem;
  color: var(--white);
}

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

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}

.footer-links-col ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a,
.footer-contact-col li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal,
.scroll-reveal-item,
.scroll-reveal-left,
.scroll-reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed,
.scroll-reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  transform: translateX(-40px);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  transform: translateX(40px);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger */
.scroll-reveal-item:nth-child(1) { transition-delay: 0.08s; }
.scroll-reveal-item:nth-child(2) { transition-delay: 0.16s; }
.scroll-reveal-item:nth-child(3) { transition-delay: 0.24s; }
.scroll-reveal-item:nth-child(4) { transition-delay: 0.32s; }
.scroll-reveal-item:nth-child(5) { transition-delay: 0.40s; }

/* ============================================
   RESPONSIVE - TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-left {
    order: 1;
  }

  .hero-center {
    order: 2;
  }

  .hero-right {
    order: 3;
    grid-column: 1 / -1;
    flex-direction: row;
  }

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

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

/* ============================================
   RESPONSIVE - DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
  .desktop-only {
    display: flex;
  }

  .mobile-only {
    display: none !important;
  }

  .header-inner {
    padding: 0.75rem 2rem;
  }

  /* Hero 3-column */
  .hero-container {
    grid-template-columns: 1fr 1.2fr 0.9fr;
    gap: 2rem;
  }

  .hero-right {
    grid-column: auto;
    flex-direction: column;
  }

  .hero-image-wrapper {
    max-width: 420px;
  }

  /* Philosophy */
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  /* About */
  .about-card {
    grid-template-columns: 1fr 1fr;
  }

  .about-text-side {
    padding: 3rem;
  }

  /* Products */
  .product-showcase-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .product-showcase-inner.reverse .product-showcase-img {
    order: 2;
  }

  .product-showcase-inner.reverse .product-showcase-text {
    order: 1;
  }

  /* Vision Mission */
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Contact */
  .contact-card {
    grid-template-columns: 1fr 1fr;
  }

  .contact-visual {
    display: block;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .hero {
    padding: 7rem 3rem 4rem;
  }

  .hero-container {
    gap: 3rem;
  }

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

  .product-showcase {
    padding: 5rem 3rem;
  }

  .vm-card {
    padding: 3rem;
  }
}

/* ============================================
   3D TILT EFFECT (Desktop only)
   ============================================ */
@media (min-width: 768px) {
  [data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
  }
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

/* Small-screen adjustments to avoid accidental horizontal scroll */
@media (max-width: 639px) {
  .hero {
    padding: 4rem 1rem 2rem;
  }

  .header {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .header-inner {
    padding: 0.5rem 1rem;
    height: 52px;
  }

  .container {
    padding: 0 1rem;
  }
}

/* WordPress + WooCommerce integration */
.header-nav li, .mobile-menu-inner li { list-style:none; display:inline-flex; }
.header-nav ul, .mobile-menu-inner ul { margin:0; padding:0; display:contents; }
.bkc-cart-link{position:relative;}
.bkc-cart-count{position:absolute;top:-7px;right:-7px;min-width:17px;height:17px;padding:0 4px;border-radius:999px;background:#c69c45;color:#fff;font-size:10px;line-height:17px;text-align:center;font-weight:700;}
.added_to_cart.wc-forward{display:none!important;}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button{border-radius:999px;background:#1a3320;color:#fff;}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover{background:#254a2f;color:#fff;}
