/* =========================================================
   ZYRIZ – LUXURY GOLD EARRINGS | MAIN STYLESHEET
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --gold:       #D4AF37;
  --gold-light: #E8C547;
  --gold-dark:  #B8941E;
  --bg:         #0e0e0e;
  --bg2:        #141414;
  --bg3:        #1a1a1a;
  --text:       #f0ede6;
  --text-muted: #888;
  --white:      #ffffff;
  --border:     rgba(212,175,55,0.15);
  --radius:     4px;
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
  --ff-head:    'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Montserrat', sans-serif;
  --trans:      0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

/* ---- Utility ---- */
.zyriz-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.gold-text { color: var(--gold); }
.hidden { display: none !important; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--trans), transform 0.7s var(--trans); }
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   NAVIGATION
   ========================================================= */
#zyriz-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: background var(--trans), padding var(--trans), backdrop-filter var(--trans);
}
#zyriz-nav.scrolled {
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--ff-head); font-size: 28px; font-weight: 700; color: var(--gold); letter-spacing: 3px; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text); transition: color var(--trans); }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.cart-btn {
  background: none; border: none; color: var(--text);
  font-size: 22px; position: relative; padding: 4px;
  transition: color var(--trans);
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: #000; font-size: 10px;
  font-weight: 700; width: 18px; height: 18px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.nav-cta {
  background: var(--gold); color: #000; border: none;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 10px 22px; border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); display: block; transition: var(--trans); }

/* =========================================================
   HERO
   ========================================================= */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,175,55,0.08) 0%, transparent 60%), var(--bg);
  padding: 120px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: block; }
.hero-title {
  font-family: var(--ff-head); font-size: clamp(42px, 6vw, 80px);
  font-weight: 700; line-height: 1.05; margin-bottom: 28px;
}
.hero-title span { color: var(--gold); display: block; font-style: italic; }
.hero-subtitle { color: var(--text-muted); font-size: 15px; max-width: 440px; margin-bottom: 40px; line-height: 1.9; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #000; border: none;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 36px; border-radius: var(--radius);
  transition: all var(--trans); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,175,55,0.3); }
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--border);
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 16px 36px; border-radius: var(--radius);
  transition: all var(--trans);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.stat-item { }
.stat-num { font-family: var(--ff-head); font-size: 32px; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }
.hero-image-wrap {
  position: relative; border-radius: 2px; overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--trans);
}
.hero-image-wrap:hover .hero-img { transform: scale(1.04); }
.hero-badge {
  position: absolute; bottom: 30px; left: -20px;
  background: var(--bg); border: 1px solid var(--border);
  padding: 16px 20px; border-radius: var(--radius);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.badge-text { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }

/* Gold shimmer bar */
.gold-bar { height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 80px; margin: 20px 0; }

/* =========================================================
   VISION STATEMENT
   ========================================================= */
#vision {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.vision-quote {
  font-family: var(--ff-head); font-size: clamp(28px, 4vw, 54px);
  font-weight: 400; font-style: italic; line-height: 1.3;
  max-width: 900px; margin: 0 auto 32px;
  color: var(--text);
}
.vision-quote em { color: var(--gold); font-style: normal; }
.vision-body { font-size: 14px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* =========================================================
   FEATURES GRID
   ========================================================= */
#features { padding: 120px 0; }
.features-head { margin-bottom: 60px; }
.features-head h2 { font-family: var(--ff-head); font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feature-card {
  background: var(--bg2);
  padding: 48px 36px;
  position: relative; overflow: hidden;
  transition: background var(--trans);
  border: 1px solid var(--border);
}
.feature-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--trans);
}
.feature-card:hover { background: var(--bg3); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { font-size: 36px; margin-bottom: 24px; display: block; }
.feature-card h3 { font-family: var(--ff-head); font-size: 22px; margin-bottom: 12px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }

/* =========================================================
   EVERYTHING INCLUDED
   ========================================================= */
#included { padding: 120px 0; background: var(--bg2); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.included-text h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,50px); font-weight: 700; margin-bottom: 24px; }
.included-text p { color: var(--text-muted); font-size: 14px; line-height: 1.9; margin-bottom: 36px; }
.included-list { display: flex; flex-direction: column; gap: 16px; }
.included-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 14px; line-height: 1.7;
}
.included-list li .check { color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.included-image { position: relative; }
.included-image img { border-radius: 2px; }
.included-image::before {
  content: ''; position: absolute; inset: -12px; border: 1px solid var(--border); border-radius: 2px; pointer-events: none;
}

/* =========================================================
   PRODUCT COLLECTION
   ========================================================= */
#collection { padding: 120px 0; }
.collection-head { text-align: center; margin-bottom: 60px; }
.collection-head h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,52px); font-weight: 700; }
.collection-head p { color: var(--text-muted); margin-top: 16px; font-size: 14px; }
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.product-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--trans); }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #000;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 20px;
}
.product-info { padding: 20px; }
.product-name { font-family: var(--ff-head); font-size: 18px; margin-bottom: 4px; }
.product-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 20px; font-weight: 700; color: var(--gold); font-family: var(--ff-head); }
.add-cart-btn {
  background: var(--gold); color: #000; border: none;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 10px 16px; border-radius: var(--radius);
  transition: all var(--trans);
}
.add-cart-btn:hover { background: var(--gold-light); transform: scale(1.05); }

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
#comparison { padding: 120px 0; background: var(--bg2); }
.comparison-head { text-align: center; margin-bottom: 60px; }
.comparison-head h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,50px); font-weight: 700; }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: 20px 24px; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.comparison-table th:first-child { width: 40%; }
.comparison-table th.zyriz-col { color: var(--gold); }
.comparison-table td { padding: 18px 24px; font-size: 14px; border-bottom: 1px solid var(--border); }
.comparison-table tr:hover td { background: var(--bg3); }
.check-yes { color: var(--gold); font-size: 18px; }
.check-no { color: #555; font-size: 18px; }

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
#process { padding: 120px 0; }
.process-head { text-align: center; margin-bottom: 80px; }
.process-head h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,50px); font-weight: 700; }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 48px; left: 16%; right: 16%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.step-card { padding: 40px 32px; text-align: center; background: var(--bg2); border: 1px solid var(--border); }
.step-num {
  font-family: var(--ff-head); font-size: 64px; font-weight: 700;
  color: rgba(212,175,55,0.15); line-height: 1; margin-bottom: 16px;
}
.step-icon { font-size: 28px; margin-bottom: 16px; }
.step-card h3 { font-family: var(--ff-head); font-size: 22px; margin-bottom: 12px; }
.step-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
#testimonials { padding: 120px 0; background: var(--bg2); }
.testimonials-head { text-align: center; margin-bottom: 60px; }
.testimonials-head h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,50px); font-weight: 700; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card { background: var(--bg3); border: 1px solid var(--border); padding: 32px; border-radius: var(--radius); }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--ff-head); font-size: 18px; font-style: italic; line-height: 1.6; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 14px; }
.author-name { font-weight: 600; font-size: 14px; }
.author-location { font-size: 12px; color: var(--text-muted); }

/* =========================================================
   FAQ
   ========================================================= */
#faq { padding: 120px 0; }
.faq-head { text-align: center; margin-bottom: 60px; }
.faq-head h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,50px); font-weight: 700; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--border); }
.faq-question {
  width: 100%; background: var(--bg2); color: var(--text); border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; font-size: 15px; font-weight: 500;
  text-align: left; cursor: pointer; transition: background var(--trans);
}
.faq-question:hover { background: var(--bg3); }
.faq-question.active { background: var(--bg3); }
.faq-question .faq-icon { color: var(--gold); font-size: 20px; transition: transform var(--trans); flex-shrink: 0; }
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer { background: var(--bg2); overflow: hidden; max-height: 0; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer-inner { padding: 0 28px 24px; font-size: 14px; color: var(--text-muted); line-height: 1.9; }

/* =========================================================
   CHECKOUT / ORDER SECTION
   ========================================================= */
#checkout { padding: 120px 0; background: var(--bg2); }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.checkout-info h2 { font-family: var(--ff-head); font-size: clamp(32px,4vw,50px); font-weight: 700; margin-bottom: 20px; }
.checkout-info p { color: var(--text-muted); font-size: 14px; line-height: 1.9; margin-bottom: 24px; }
.whatsapp-highlight { display: flex; align-items: center; gap: 10px; color: #25D366; font-weight: 600; font-size: 15px; }
#order-summary { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; min-height: 80px; }
#order-summary p { font-size: 14px; color: var(--text-muted); }
.order-item { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.order-total { display: flex; justify-content: space-between; padding-top: 14px; font-weight: 700; color: var(--gold); font-family: var(--ff-head); font-size: 18px; }
.order-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: 14px 16px; border-radius: var(--radius); font-size: 14px;
  font-family: var(--ff-body); transition: border-color var(--trans);
  outline: none; width: 100%;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }
.whatsapp-btn {
  background: #25D366; color: #fff; border: none;
  font-size: 13px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 18px 32px; border-radius: var(--radius);
  transition: all var(--trans); display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
}
.whatsapp-btn:hover { background: #20bf5a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.3); }
.whatsapp-btn .wa-icon { font-size: 20px; }

/* =========================================================
   FINAL CTA BANNER
   ========================================================= */
#cta-banner {
  padding: 120px 0; text-align: center;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, transparent 70%), var(--bg);
  border-top: 1px solid var(--border);
}
.cta-banner-title { font-family: var(--ff-head); font-size: clamp(40px,6vw,80px); font-weight: 700; margin-bottom: 24px; }
.cta-banner-title span { color: var(--gold); font-style: italic; }
.cta-banner-sub { color: var(--text-muted); font-size: 15px; max-width: 500px; margin: 0 auto 48px; }

/* =========================================================
   CART DRAWER
   ========================================================= */
#cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1100;
  opacity: 0; pointer-events: none; transition: opacity var(--trans);
}
#cart-overlay.open { opacity: 1; pointer-events: all; }
#cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--bg2); border-left: 1px solid var(--border); z-index: 1200;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s var(--trans);
}
#cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-family: var(--ff-head); font-size: 22px; }
.cart-close { background: none; border: none; color: var(--text); font-size: 24px; line-height: 1; transition: color var(--trans); }
.cart-close:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty { color: var(--text-muted); font-size: 14px; text-align: center; margin-top: 40px; }
.cart-item { display: flex; gap: 14px; align-items: center; padding: 14px; background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius); }
.cart-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; }
.cart-item-price { font-size: 13px; color: var(--gold); margin-top: 2px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.qty-btn { background: var(--bg2); border: 1px solid var(--border); color: var(--text); width: 24px; height: 24px; border-radius: 50%; font-size: 14px; line-height: 1; transition: border-color var(--trans); display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-num { font-size: 14px; min-width: 20px; text-align: center; }
.remove-item { background: none; border: none; color: var(--text-muted); font-size: 16px; transition: color var(--trans); }
.remove-item:hover { color: #e55; }
.cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.cart-total-row span:last-child { color: var(--gold); font-family: var(--ff-head); font-size: 20px; }
.checkout-drawer-btn {
  background: var(--gold); color: #000; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; padding: 16px;
  border: none; border-radius: var(--radius); width: 100%;
  transition: all var(--trans); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.checkout-drawer-btn:hover { background: var(--gold-light); transform: translateY(-1px); }

/* =========================================================
   FOOTER
   ========================================================= */
#footer { background: #080808; padding: 80px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { font-family: var(--ff-head); font-size: 28px; color: var(--gold); letter-spacing: 3px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.9; max-width: 280px; }
.footer-col h4 { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 12px; transition: color var(--trans); }
.footer-col a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 36px; height: 36px; background: var(--bg2); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all var(--trans); }
.social-links a:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); }

/* =========================================================
   MOBILE FIRST – RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: fixed; inset: 0; top: 72px; background: var(--bg); padding: 40px 24px; gap: 28px; z-index: 999; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { aspect-ratio: 3/2; order: -1; }
  .hero-badge { left: 16px; bottom: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
