/* ============================================
   KLEO COSMETIC BAR — style.css
   Premium Luxury Skincare Brand Stylesheet
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --cream: #faf7f4;
  --beige: #f2ede7;
  --blush: #e8d8ce;
  --rose:  #c9a99a;
  --mauve: #b08070;
  --gold:  #c9a96e;
  --gold-light: #e8d5a3;
  --charcoal: #2c2825;
  --warm-gray: #7a6e68;
  --light-gray: #d4cdc8;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Gill Sans', sans-serif;

  --shadow-soft: 0 4px 24px rgba(44,40,37,0.07);
  --shadow-card: 0 8px 40px rgba(44,40,37,0.10);
  --shadow-hover: 0 16px 56px rgba(44,40,37,0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;

  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.55s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250,247,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush);
  transition: var(--transition);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  white-space: nowrap;
}
.logo span {
  color: var(--gold);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--charcoal);
  background: var(--beige);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-primary-sm:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--warm-gray);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(250,247,244,0.75);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,247,244,0.12);
}
.footer-brand .logo {
  color: var(--cream);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(250,247,244,0.6);
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(250,247,244,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(250,247,244,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(250,247,244,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: rgba(250,247,244,0.6);
  align-items: flex-start;
}
.footer-contact-item .icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(250,247,244,0.35);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  color: rgba(250,247,244,0.35);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  border: 1.5px solid var(--charcoal);
}
.btn-dark:hover {
  background: transparent;
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-gold:hover {
  background: #b8944e;
  border-color: #b8944e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.4);
}
.btn-light {
  background: var(--cream);
  color: var(--charcoal);
  border: 1.5px solid var(--blush);
}
.btn-light:hover {
  background: var(--beige);
  border-color: var(--rose);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--beige) 0%, var(--blush) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--warm-gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.75rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--beige);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}
.product-info {
  padding: 1.25rem 1.25rem 1.5rem;
}
.product-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.35rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
}
.product-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--charcoal);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1.5px solid var(--blush);
}
.product-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(44,40,37,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 32px 80px rgba(44,40,37,0.22);
}
.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--charcoal);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  z-index: 2;
}
.modal-close:hover { background: var(--blush); }
.modal-product-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-product-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: var(--beige);
}
.modal-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-product-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.modal-product-content h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
}
.modal-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.modal-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Unavailable Modal */
.modal-unavail .modal-box {
  max-width: 420px;
  text-align: center;
  padding: 3rem 2.5rem;
}
.modal-unavail-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.modal-unavail h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.modal-unavail p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* ============================================
   HOME PAGE — HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f7f1eb 0%, #f0e6de 60%, #e8d5c8 100%);
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}
.hero-bg-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(176,128,112,0.12) 0%, transparent 70%);
  bottom: -100px;
  left: 5%;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 540px;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--mauve);
}
.hero-tagline {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 3rem;
}
.hero-scroll-hint::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--light-gray);
  display: block;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-main {
  width: 460px;
  height: 560px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 1;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-card);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
  z-index: 2;
}
.hero-card-1 {
  bottom: 80px;
  left: -20px;
}
.hero-card-2 {
  top: 60px;
  right: -20px;
  text-align: center;
}
.hero-card-float .card-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.hero-card-float .card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ============================================
   HOME — FEATURED PRODUCTS
   ============================================ */
.featured-section {
  background: var(--white);
}

/* ============================================
   HOME — CATEGORIES
   ============================================ */
.categories-section {
  background: var(--beige);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.category-card:hover img { transform: scale(1.08); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,40,37,0.65) 0%, rgba(44,40,37,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.category-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.category-count {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ============================================
   HOME — WHY KLEO
   ============================================ */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--blush);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-light);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.75;
}

/* ============================================
   HOME — TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--beige); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blush);
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
}
.author-location {
  font-size: 0.75rem;
  color: var(--warm-gray);
}

/* ============================================
   HOME — BANNER
   ============================================ */
.banner-section {
  padding: 5rem 2rem;
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.banner-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
  position: relative;
}
.banner-section h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.banner-section p {
  font-size: 0.95rem;
  color: rgba(250,247,244,0.65);
  margin-bottom: 2.5rem;
  position: relative;
}

/* ============================================
   SHOP PAGE
   ============================================ */
.shop-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-tab {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--blush);
  color: var(--warm-gray);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.product-count {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story-content .section-label { text-align: left; }
.about-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.about-story-content p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--blush);
}
.stat-item {}
.stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 0.35rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--beige);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--blush);
  transition: var(--transition);
}
.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.value-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.value-card p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
}
.team-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.25rem;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.team-card:hover .team-img img { transform: scale(1.04); }
.team-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.contact-info > p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  border: 1px solid var(--blush);
}
.contact-detail-text h5 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}
.contact-detail-text p {
  font-size: 0.88rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--blush);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--blush);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-success p { font-size: 0.9rem; color: var(--warm-gray); }

/* ============================================
   POLICY PAGES (Privacy, Terms)
   ============================================ */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--blush);
}
.policy-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.policy-content p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.9;
  margin-bottom: 1rem;
}
.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-content ul li {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.85;
  margin-bottom: 0.4rem;
}
.policy-meta {
  font-size: 0.82rem;
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--blush);
}

/* ============================================
   NEW ARRIVALS — BADGE
   ============================================ */
.badge-new {
  background: var(--rose);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto;
  border-radius: 2px;
}
.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-tagline { margin: 0 auto 2.5rem; }
  .hero-cta-group { justify-content: center; }
  .hero-scroll-hint { justify-content: center; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .modal-product-inner { grid-template-columns: 1fr; }
  .modal-product-img { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { flex-wrap: wrap; gap: 1.5rem; }
  .header-inner { padding: 0 1.25rem; }
  .section { padding: 3.5rem 1.25rem; }
  .page-hero { padding: 3.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .btn { padding: 0.8rem 1.6rem; font-size: 0.78rem; }
}
