/* ============================================================
   EDICAL — For Medical Services
   Premium Skincare Brand Website Stylesheet
   ============================================================ */

/* ── Google Fonts loaded from HTML ────────────────────────── */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --gold-dark: #9A7B2D;
  --gold: #B8860B;
  --gold-mid: #C49A3C;
  --gold-light: #D4A843;
  --gold-pale: #E8D5A0;
  --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4A843 50%, #C49A3C 100%);
  --gold-gradient-h: linear-gradient(90deg, #B8860B 0%, #D4A843 50%, #C49A3C 100%);

  --burgundy: #5C2028;
  --burgundy-mid: #6B2D3A;

  --cream: #F5F0E8;
  --cream-light: #FAF6F0;

  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-100: #F7F7F7;
  --gray-200: #EDEDED;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --dark: #1A1A1A;

  --text-primary: #1A1A1A;
  --text-secondary: #525252;
  --text-muted: #737373;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 24px rgba(184,134,11,0.18);

  --section-pad: 100px;
  --container-max: 1280px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; transition: color 0.3s var(--ease); }
ul, ol { list-style:none; }
button, input, textarea, select { font-family:inherit; font-size:inherit; border:none; outline:none; background:none; }
button { cursor:pointer; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared Labels & Titles ───────────────────────────────── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all 0.4s var(--ease);
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,134,11,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Inner pages: solid white header, always visible */
.navbar.navbar-solid {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient-h);
  border-radius: 2px;
  transition: width 0.4s var(--ease);
}

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

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Pattern.png') center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content { padding-right: 20px; }

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--dark);
}

.hero-content h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

/* Hero Search Bar */
.hero-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 24px;
  box-shadow: var(--shadow-md);
  max-width: 520px;
  margin-bottom: 48px;
  border: 1px solid var(--gray-200);
}

.hero-search input {
  flex: 1;
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: transparent;
}

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

.hero-search .btn {
  padding: 12px 24px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
  justify-content: center;
}

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

.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

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

/* Hero Image */
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-main {
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  object-position: top center;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--gold-gradient);
  opacity: 0.08;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease);
}

.about-img:hover { transform: scale(1.02); }
.about-img.large { 
  grid-column: 1 / -1; 
  object-position: center 20%; 
  aspect-ratio: 16 / 10;
}
.about-img.small { 
  object-position: center 15%; 
  aspect-ratio: 4 / 5;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
}

/* ══════════════════════════════════════════════════════════════
   VISION & MISSION
   ══════════════════════════════════════════════════════════════ */
.vision-mission {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Pattern.png') center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px 44px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(184,134,11,0.12);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

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

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

.vm-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gold-gradient);
  opacity: 0.04;
  transition: opacity 0.5s var(--ease);
}

.vm-card:hover::after {
  opacity: 0.08;
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(184,134,11,0.10);
  border-color: rgba(184,134,11,0.25);
}

.vm-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(184,134,11,0.10) 0%, rgba(212,168,67,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 1.4rem;
  transition: all 0.4s var(--ease);
}

.vm-card:hover .vm-card-icon {
  background: var(--gold-gradient);
  color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(184,134,11,0.25);
}

.vm-card h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.vm-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER (dark)
   ══════════════════════════════════════════════════════════════ */
.cta-banner {
  padding: var(--section-pad) 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Pattern.png') center / cover no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.cta-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  color: var(--cream-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-content h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 480px;
}

.cta-image { display: flex; justify-content: center; }
.cta-image img {
  max-width: 400px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES — WHY TRUST
   ══════════════════════════════════════════════════════════════ */
.features {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.features .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.features-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.features-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease);
}

.features-img:hover { transform: scale(1.02); }
.features-img:first-child { object-position: center 10%; }
.features-img:last-child { object-position: center 20%; }

.features-content h2 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.features-content h2 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.trust-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  margin-top: 20px;
}

.trust-list { margin-bottom: 28px; }

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-list li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCTS
   ══════════════════════════════════════════════════════════════ */
.products {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Pattern.png') center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.products .container { position: relative; z-index: 2; }

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-subtitle { margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
}

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

.product-card-image {
  position: relative;
  background: linear-gradient(135deg, #f8f4ee 0%, #f0e8d8 100%);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  overflow: hidden;
}

.product-card-image img {
  max-height: 280px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

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

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-card-body { padding: 24px; }

.product-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.product-card-price {
  font-family: 'Inter', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}

.product-card-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.product-card-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-gold);
}

.product-card-btn:hover { transform: scale(1.1); }

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

/* ══════════════════════════════════════════════════════════════
   ARTICLES / BLOG
   ══════════════════════════════════════════════════════════════ */
.articles {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.articles-header {
  text-align: center;
  margin-bottom: 60px;
}

.articles-header .section-subtitle { margin: 0 auto; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.article-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease);
}

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

.article-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}

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

.article-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold-gradient);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.article-card-body { padding: 24px; }

.article-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s var(--ease);
}

.article-card:hover .article-card-title { color: var(--gold); }

.article-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.article-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}

.article-card-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════════════
   CONTACT & FAQ
   ══════════════════════════════════════════════════════════════ */
.contact-faq {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
  position: relative;
}

.contact-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Pattern.png') center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.contact-faq .container { position: relative; z-index: 2; }

.contact-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-faq-header .section-subtitle { margin: 0 auto; }

.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--off-white);
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }

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

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .btn { width: 100%; padding: 16px; margin-top: 8px; }

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--cream-light);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.contact-info-item:hover {
  background: var(--cream);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-info-text p { font-size: 0.92rem; color: var(--text-primary); font-weight: 500; }

/* FAQ */
.faq-wrapper h3 { font-size: 1.6rem; margin-bottom: 8px; }
.faq-wrapper > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 28px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.faq-item:hover { border-color: var(--gold-pale); }
.faq-item.active { border-color: var(--gold); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background 0.3s var(--ease);
}

.faq-question:hover { background: var(--cream-light); }

.faq-question h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.faq-item.active .faq-toggle {
  background: var(--gold-gradient);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 20px 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer { max-height: 300px; }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: #FAF6F0;
  padding: 80px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('Pattern.png') center / cover no-repeat;
  opacity: 0.03;
  pointer-events: none;
}

.footer .container { position: relative; z-index: 2; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(1.5);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FAF6F0;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--gray-400);
  transition: all 0.3s var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-light); transform: translateX(4px); display: inline-block; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }
.footer-contact-item span { font-size: 0.88rem; color: var(--gray-400); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.footer-bottom p { font-size: 0.82rem; color: var(--gray-500); }

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--gray-500); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS — Progressive Enhancement Only
   Elements are VISIBLE by default. JS adds .animate-ready,
   then .revealed on scroll.
   ══════════════════════════════════════════════════════════════ */
.animate-ready.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-ready.reveal-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-ready.reveal-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-ready.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-ready.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.08s !important; }
.delay-2 { transition-delay: 0.16s !important; }
.delay-3 { transition-delay: 0.24s !important; }

/* ── Back to Top ──────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(184,134,11,0.35);
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════════════════════════ */
.nav-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(184,134,11,0.08);
  transition: all 0.35s var(--ease);
  font-size: 1rem;
  color: var(--gold-dark);
}

.nav-cart:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,134,11,0.25);
}

.cart-count {
  display: none;
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-full);
  background: var(--burgundy);
  color: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid var(--white);
}

.product-card-detail {
  display: block;
}

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

.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 150px 0 80px;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.65) 50%, rgba(26,26,26,0.40) 100%),
    var(--page-hero-image) center / cover no-repeat;
  overflow: hidden;
}

.page-hero.compact {
  min-height: 340px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.page-hero p {
  max-width: 620px;
  color: rgba(255,255,255,0.84);
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-section {
  padding: 80px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold);
  font-weight: 600;
}

.breadcrumb strong {
  color: var(--text-primary);
  font-weight: 600;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.product-detail-gallery {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(250,246,240,0.96), rgba(245,240,232,0.72)),
    url('Pattern.png') center / cover no-repeat;
  box-shadow: var(--shadow-md);
}

.product-detail-gallery img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(92,32,40,0.16));
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-detail-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.stars {
  color: var(--gold);
}

.product-detail-price {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.product-detail-desc {
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 30px;
}

.product-option {
  width: 100%;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  margin-bottom: 28px;
}

.product-option h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.size-pill {
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold-pale);
  background: var(--cream-light);
  color: var(--text-primary);
  font-weight: 600;
}

.size-pill.active {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: transparent;
}

.product-actions-row {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.qty-control {
  height: 54px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  overflow: hidden;
}

.qty-control.small {
  width: 112px;
  height: 42px;
  grid-template-columns: 32px 1fr 32px;
}

.qty-control button {
  height: 100%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-control input {
  width: 100%;
  text-align: center;
  color: var(--text-primary);
  font-weight: 700;
}

.product-add-btn {
  width: 100%;
}

.product-secondary-link {
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-info-tabs {
  padding-top: 0;
}

.tabs-nav {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 26px;
  overflow-x: auto;
}

.tab-btn {
  padding: 0 0 14px;
  color: var(--text-muted);
  font-weight: 700;
  position: relative;
  white-space: nowrap;
}

.tab-btn.active {
  color: var(--gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold-gradient-h);
}

.tab-panel {
  display: none;
  max-width: 860px;
  color: var(--text-secondary);
  line-height: 1.9;
}

.tab-panel.active {
  display: block;
}

.related-products {
  padding-top: 80px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;
  align-items: start;
}

.cart-items-panel,
.cart-summary,
.checkout-panel,
.checkout-summary,
.contact-page-form,
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cart-items-panel {
  overflow: hidden;
}

.cart-table-head,
.cart-item {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) 0.75fr 130px 0.75fr 42px;
  gap: 18px;
  align-items: center;
}

.cart-table-head {
  padding: 18px 24px;
  background: var(--cream-light);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-item {
  padding: 22px 24px;
  border-top: 1px solid var(--gray-200);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.cart-product img,
.checkout-item img {
  width: 78px;
  height: 78px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--cream-light);
  border: 1px solid var(--gray-200);
  padding: 8px;
}

.cart-product h3,
.checkout-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  margin-bottom: 3px;
}

.cart-product p,
.checkout-item p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.remove-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--gold);
}

.remove-item:hover {
  background: var(--cream-light);
  color: #c0392b;
}

.cart-summary,
.checkout-summary {
  position: sticky;
  top: 100px;
  padding: 30px;
}

.cart-summary h2,
.checkout-summary h2,
.checkout-panel h2,
.contact-page-form h2,
.contact-info-card h2 {
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.summary-line {
  color: var(--text-muted);
  margin-bottom: 14px;
}

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

.summary-line .free {
  color: #2d8a4e;
}

.promo-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 24px 0 8px;
}

.promo-row input {
  min-width: 0;
  height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0 14px;
  background: var(--off-white);
}

.promo-row button {
  height: 46px;
  padding: 0 18px;
  border-radius: var(--radius-md);
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
}

.promo-message {
  min-height: 22px;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.promo-message.success { color: #2d8a4e; }
.promo-message.error { color: #c0392b; }

.summary-total {
  border-top: 1px solid var(--gray-200);
  padding-top: 22px;
  margin-top: 22px;
  font-size: 1.2rem;
}

.summary-total strong {
  color: var(--gold);
  font-family: math;
  font-size: 1.5rem;
}

.checkout-link,
.place-order-btn {
  width: 100%;
  margin-top: 22px;
}

.checkout-link.disabled {
  pointer-events: none;
  opacity: 0.48;
}

.continue-link {
  display: block;
  margin-top: 16px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 700;
}

.cart-empty {
  display: none;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  padding: 48px 24px;
}

.cart-empty.show {
  display: flex;
}

.cart-empty i {
  color: var(--gold);
  font-size: 3rem;
  margin-bottom: 18px;
}

.cart-empty h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.cart-empty p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto 48px;
}

.checkout-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
}

.checkout-step i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.checkout-step.done i,
.checkout-step.active i {
  border-color: transparent;
  background: var(--gold-gradient);
  color: var(--white);
}

.checkout-line {
  height: 2px;
  background: var(--gray-200);
  margin-bottom: 26px;
}

.checkout-line.done {
  background: var(--gold-gradient-h);
}

.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 40px;
  align-items: start;
}

.checkout-form-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.checkout-panel {
  padding: 34px;
}

.checkout-panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-panel h2 i {
  color: var(--gold);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.payment-method {
  height: 58px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-weight: 700;
}

.payment-method.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--cream-light);
}

.card-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-fields.hidden {
  display: none;
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.checkout-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

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

.checkout-empty {
  color: var(--text-secondary);
  line-height: 1.7;
}

.checkout-empty a {
  color: var(--gold);
  font-weight: 700;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 700;
}

.trust-badges i {
  color: var(--gold);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 44px;
  align-items: start;
}

.contact-page-form {
  padding: 42px;
}

.contact-page-form .btn {
  width: 100%;
  margin-top: 6px;
}

.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-side-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info-card {
  padding: 30px;
}

.compact-faq {
  max-width: 900px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.84rem; }
  .section-title { font-size: 2.2rem; }
  .hero-content h1 { font-size: 3rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .product-detail-grid,
  .cart-layout,
  .checkout-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .cart-summary,
  .checkout-summary {
    position: static;
  }
  .contact-page-info {
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .hamburger { display: flex; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 28px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 1000;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }

  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { padding-right: 0; order: 1; }
  .hero-image { order: 0; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-description { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-search { margin: 0 auto 48px; }
  .hero-image-main { max-width: 350px; }

  .about .container { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid { grid-template-columns: 1fr; }
  .cta-banner .container { grid-template-columns: 1fr; text-align: center; }
  .cta-content p { margin: 0 auto 32px; }
  .features .container { grid-template-columns: 1fr; gap: 40px; }
  .features-content { order: 1; }
  .features-images { order: 0; }
  .articles-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .contact-faq-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero,
  .page-hero.compact {
    min-height: 320px;
    padding: 128px 0 56px;
  }
  .page-hero h1 { font-size: 2.4rem; }
  .page-section { padding: 56px 0; }
  .product-detail-gallery {
    min-height: 420px;
    padding: 32px;
  }
  .product-detail-gallery img {
    max-height: 380px;
  }
  .product-actions-row,
  .form-row,
  .payment-methods,
  .trust-badges {
    grid-template-columns: 1fr;
  }
  .cart-table-head {
    display: none;
  }
  .cart-item {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  .cart-product {
    grid-column: 1 / -1;
  }
  .cart-item > div:nth-child(2) {
    display: none;
  }
  .cart-item > strong {
    align-self: center;
  }
  .checkout-steps {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
  }
  .checkout-line {
    display: none;
  }
  .checkout-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .checkout-item strong {
    grid-column: 2;
  }
  .contact-page-form {
    padding: 30px 22px;
  }
  .animate-ready.reveal-left,
  .animate-ready.reveal-right {
    transform: translateY(32px);
  }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .container { padding: 0 16px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-stats { flex-direction: column; gap: 20px; align-items: center; }
  .stat-item { text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 28px; font-size: 0.85rem; }
  .contact-form-wrapper { padding: 28px 20px; }
  .vm-card { padding: 32px 24px; }
  .cta-content h2 { font-size: 2.2rem; }
  .section-title { font-size: 1.75rem; }
  .page-hero h1 { font-size: 2rem; }
  .breadcrumb {
    flex-wrap: wrap;
  }
  .cart-summary,
  .checkout-summary,
  .checkout-panel,
  .contact-info-card {
    padding: 24px 18px;
  }
  .cart-item {
    padding: 20px 18px;
  }
  .cart-product {
    align-items: flex-start;
  }
  .cart-product img {
    width: 66px;
    height: 66px;
  }
  .promo-row {
    grid-template-columns: 1fr;
  }
}
