/* ============================================================
   Ghevar.in — Frontend Stylesheet
   Theme: Royal Burgundy + Gold, festive Indian mithai brand
   ============================================================ */

:root {
  --primary: #7a1626;
  --primary-dark: #5c0f1c;
  --primary-light: #9c2b3d;
  --gold: #f7c948;
  --gold-dark: #d9a520;
  --cream: #fff8ec;
  --text: #3a2a22;
  --text-soft: #7a6a60;
  --line: #eedfca;
  --white: #ffffff;
  --green: #1e7d46;
  --red: #c0392b;
  --shadow: 0 8px 28px rgba(122, 22, 38, .12);
  --radius: 14px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--primary-dark); }

.container { width: min(1200px, 92%); margin: 0 auto; }

/* ---------- Announcement + Header ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  color: #fff;
  text-align: center;
  font-size: .85rem;
  padding: .55rem 1rem;
  letter-spacing: .3px;
}
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.brand img { height: 44px; width: auto; }
.main-nav { display: flex; gap: 1.6rem; }
.main-nav a { color: var(--text); font-weight: 500; font-size: .95rem; padding: .4rem 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); border-color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-actions a { color: var(--text); display: inline-flex; align-items: center; }
.cart-link { position: relative; }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--primary); color: #fff;
  font-size: .68rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; border: 0; cursor: pointer;
  font-family: var(--font-body); font-weight: 600;
  padding: .7rem 1.5rem; border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--gold); color: var(--primary-dark); }
.btn-sm { padding: .45rem 1rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2rem; font-size: 1.05rem; }
.btn-block { display: block; width: 100%; }
.text-link { font-weight: 600; color: var(--primary); }

/* ---------- Flash ---------- */
.flash { padding: .9rem 1.2rem; border-radius: var(--radius); margin: 1rem auto; width: min(92%, 1200px); font-weight: 500; }
.flash-success { background: #e3f5e9; color: var(--green); border: 1px solid #b8e3c6; }
.flash-error, .flash-warning { background: #fdeaea; color: var(--red); border: 1px solid #f5c6c0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(rgba(45,8,16,.55), rgba(45,8,16,.75)), url('../images/hero-platter.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6.5rem 0 5rem;
  text-align: center;
}
.hero-content { max-width: 760px; }
.hero-eyebrow { display: inline-block; background: rgba(247,201,72,.18); border: 1px solid var(--gold); color: var(--gold); padding: .35rem 1rem; border-radius: 999px; font-size: .8rem; letter-spacing: 1px; margin-bottom: 1.2rem; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; text-shadow: 0 3px 18px rgba(0,0,0,.4); }
.hero p { font-size: 1.15rem; opacity: .95; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats div { text-align: center; }
.hero-stats strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); }
.hero-stats span { font-size: .85rem; opacity: .9; }

.offer-strip { background: var(--gold); color: var(--primary-dark); text-align: center; padding: .8rem 1rem; font-size: .95rem; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section-tint { background: #fdf3e2; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-head p { color: var(--text-soft); margin-top: .3rem; }
.section-head .text-link { display: block; margin-top: .6rem; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 1.5rem; }
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 4px 16px rgba(122,22,38,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-img { position: relative; display: block; aspect-ratio: 1/1; overflow: hidden; background: #f7efe0; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-img img { transform: scale(1.06); }
.badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #fff;
  font-size: .7rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px;
}
.badge-off { background: var(--gold); color: var(--primary-dark); left: auto; right: 10px; }
.product-card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.product-card-body h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.product-card-body h3 a { color: var(--primary-dark); }
.product-unit { font-size: .8rem; color: var(--text-soft); margin-bottom: .6rem; flex: 1; }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: .5rem; }
.price strong { font-size: 1.15rem; color: var(--primary); font-family: var(--font-head); }
.price s { color: var(--text-soft); font-size: .85rem; margin-left: .3rem; }

/* ---------- Categories ---------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
.category-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 4px 14px rgba(0,0,0,.1); }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(60,10,20,.85)); display: flex; align-items: flex-end; padding: 1rem; }
.category-overlay span { color: #fff; font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }

/* ---------- Why / values ---------- */
.why-grid, .values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; text-align: center; }
.why-icon { font-size: 2.4rem; margin-bottom: .6rem; }
.why-item h3, .values-grid h3 { margin-bottom: .4rem; }
.why-item p, .values-grid p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 14px rgba(122,22,38,.08); transition: transform .2s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 1.1rem 1.2rem 1.3rem; }
.blog-cat { color: var(--primary); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.blog-card-body h3 { font-size: 1.1rem; margin: .35rem 0 .45rem; line-height: 1.4; }
.blog-card-body h3 a { color: var(--primary-dark); }
.blog-card-body p { color: var(--text-soft); font-size: .9rem; }
.blog-card-meta { display: flex; gap: 1rem; font-size: .78rem; color: var(--text-soft); margin-top: .7rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(rgba(122,22,38,.9), rgba(92,15,28,.95)), url('../images/hero-platter.jpg') center/cover;
  color: #fff; text-align: center; padding: 4.5rem 1rem;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .6rem; }
.cta-banner p { opacity: .95; margin-bottom: 1.6rem; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(rgba(92,15,28,.88), rgba(122,22,38,.8)), url('../images/hero-platter.jpg') center/cover; color: #fff; text-align: center; padding: 4rem 1rem; }
.page-hero-small { padding: 2.8rem 1rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { opacity: .95; margin-top: .4rem; }

/* ---------- Breadcrumbs ---------- */
.breadcrumb { font-size: .82rem; color: var(--text-soft); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--primary); }

/* ---------- Product page ---------- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.product-gallery img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: .4rem; }
.rating-line { color: var(--text-soft); font-size: .9rem; margin-bottom: .8rem; }
.star { color: #d8c7a8; }
.star.on { color: var(--gold-dark); }
.product-short { color: var(--text-soft); margin-bottom: 1rem; }
.price-row { display: flex; align-items: center; gap: .8rem; margin-bottom: .3rem; }
.price-now { font-size: 2rem; font-family: var(--font-head); color: var(--primary); font-weight: 800; }
.price-was { color: var(--text-soft); font-size: 1.1rem; }
.save-badge { background: #e3f5e9; color: var(--green); padding: .25rem .7rem; border-radius: 999px; font-size: .8rem; font-weight: 600; }
.price-incl { font-size: .8rem; color: var(--text-soft); margin-bottom: 1.2rem; }
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.qty-row label { font-weight: 600; }
.qty-control { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty-btn { width: 40px; height: 42px; background: #fdf3e2; border: 0; font-size: 1.2rem; cursor: pointer; color: var(--primary); }
.qty-control input { width: 56px; height: 42px; border: 0; text-align: center; font-size: 1rem; font-weight: 600; }
.stock-line { color: var(--green); font-size: .88rem; margin-top: .8rem; font-weight: 600; }
.stock-line.out { color: var(--red); }
.perks { list-style: none; margin: 1.2rem 0; }
.perks li { padding: .3rem 0; font-size: .92rem; color: var(--text); }
.info-block { margin: 1.2rem 0; }
.info-block h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.info-block ul { padding-left: 1.2rem; }
.product-description { margin-bottom: 2.5rem; }
.product-description h2 { font-size: 1.6rem; margin-bottom: .8rem; }
.product-description p { margin-bottom: .8rem; color: var(--text); }
.buy-buttons { margin-top: .5rem; }

/* ---------- FAQ ---------- */
.faq-section, .faq-page { margin-bottom: 2.5rem; }
.faq-section h2 { margin-bottom: 1rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: .7rem; overflow: hidden; }
.faq-item summary { padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; list-style: none; position: relative; padding-right: 2.5rem; }
.faq-item summary::after { content: '+'; position: absolute; right: 1.1rem; font-size: 1.3rem; color: var(--primary); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 1.2rem 1.1rem; color: var(--text-soft); font-size: .95rem; }

/* ---------- Reviews ---------- */
.reviews-section { margin-bottom: 2.5rem; }
.reviews-section h2 { margin-bottom: 1rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.2rem; }
.review-head { display: flex; justify-content: space-between; margin-bottom: .4rem; }
.review-card small { color: var(--text-soft); }
.related-section h2 { margin-bottom: 1.2rem; }

/* ---------- Cart ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.cart-item { display: flex; gap: 1rem; background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1rem; margin-bottom: .8rem; }
.cart-item-img { width: 90px; height: 90px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 1rem; }
.cart-item-unit { font-size: .82rem; color: var(--text-soft); margin: .2rem 0 .5rem; }
.qty-input { width: 64px; padding: .4rem; border: 1.5px solid var(--line); border-radius: 8px; font-size: .95rem; text-align: center; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.item-total { font-family: var(--font-head); color: var(--primary); font-size: 1.05rem; }
.remove-btn { background: none; border: 0; color: var(--red); font-size: 1rem; cursor: pointer; }
.cart-summary { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; position: sticky; top: 90px; }
.cart-summary h3 { margin-bottom: .9rem; }
.summary-item, .summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; font-size: .92rem; }
.summary-total { border-top: 1.5px solid var(--line); margin-top: .6rem; padding-top: .9rem; font-weight: 700; font-size: 1.05rem; }
.summary-hint { font-size: .8rem; color: var(--text-soft); margin: .5rem 0; }
.continue-link { display: block; text-align: center; margin-top: .9rem; font-size: .88rem; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; }
.checkout-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; margin-bottom: 1.4rem; }
.checkout-block h2 { font-size: 1.2rem; margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: .95rem; background: #fffdf8;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold-dark); }
.err { color: var(--red); font-size: .78rem; }
.radio-card { display: flex; align-items: flex-start; gap: .7rem; background: #fffdf8; border: 1.5px solid var(--line); border-radius: 12px; padding: 1rem; margin-bottom: .7rem; cursor: pointer; }
.radio-card input { margin-top: .25rem; }
.secure-note { text-align: center; font-size: .82rem; color: var(--text-soft); margin-top: .8rem; }

/* ---------- Success ---------- */
.success-box { text-align: center; max-width: 640px; padding: 3rem 0; }
.success-icon { font-size: 3.5rem; margin-bottom: .6rem; }
.success-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; text-align: left; margin: 1.6rem 0; }
.success-row { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.success-row:last-child { border-bottom: 0; }
.success-note { font-size: .9rem; color: var(--text-soft); margin-bottom: 1.4rem; }

/* ---------- Blog single ---------- */
.blog-single { display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem; }
.blog-meta { display: flex; gap: 1.2rem; font-size: .82rem; color: var(--text-soft); margin-bottom: .8rem; }
.blog-single h1 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); margin-bottom: .7rem; }
.blog-excerpt { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 1.2rem; }
.blog-hero-img { border-radius: var(--radius); margin-bottom: 1.6rem; box-shadow: var(--shadow); }
.blog-content p { margin-bottom: 1.1rem; }
.blog-content a { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.blog-cta { background: #fdf3e2; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; text-align: center; margin-top: 2rem; }
.blog-cta h3 { margin-bottom: .9rem; }
.blog-sidebar .sidebar-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; margin-bottom: 1.2rem; }
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: .8rem; }
.sidebar-card ul { list-style: none; }
.sidebar-card li { padding: .3rem 0; }
.side-post { display: flex; gap: .7rem; align-items: center; padding: .45rem 0; }
.side-post img { width: 58px; height: 48px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.side-post span { font-size: .86rem; font-weight: 500; line-height: 1.35; }
.sidebar-cta { text-align: center; }

/* ---------- Search ---------- */
.search-big { display: flex; gap: .6rem; max-width: 560px; margin: 1.2rem auto 0; }
.search-big input { flex: 1; padding: .8rem 1.1rem; border: 2px solid #fff; border-radius: 999px; font-size: 1rem; }
.search-results-title { margin-bottom: 1.4rem; }
.search-group { margin: 1.4rem 0 .9rem; }

/* ---------- About / contact ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.about-img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-text h2 { margin-bottom: .8rem; }
.about-text p { margin-bottom: .9rem; color: var(--text-soft); }
.about-text h3 { margin: 1.2rem 0 .5rem; }
.about-list { list-style: none; margin-bottom: 1.4rem; }
.about-list li { padding: .35rem 0; }
.contact-layout { display: grid; grid-template-columns: 340px 1fr; gap: 2rem; align-items: start; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem; margin-bottom: 1rem; }
.info-card h3 { font-size: 1rem; margin-bottom: .3rem; }
.info-card p { font-size: .9rem; color: var(--text-soft); }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.contact-form h2 { margin-bottom: 1.2rem; }

/* ---------- Empty / prose / misc ---------- */
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state h1 { margin-bottom: .6rem; }
.empty-state p { color: var(--text-soft); margin-bottom: 1.2rem; }
.prose p { margin-bottom: 1rem; color: var(--text-soft); }
.prose b { color: var(--text); }
.seo-block { max-width: 860px; }
.seo-block h2 { margin-bottom: .8rem; }
.seo-block p { color: var(--text-soft); margin-bottom: .9rem; }

/* ---------- Pagination ---------- */
.pagination { margin-top: 2.2rem; }
.pagination ul { display: flex; gap: .4rem; list-style: none; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination .dots { display: block; min-width: 40px; padding: .5rem .7rem; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: 10px; font-weight: 600; color: var(--text); }
.pagination .active a { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .dots { border: 0; background: none; }

/* ---------- Shop toolbar ---------- */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 0 0; }
.cat-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.chip { background: var(--white); border: 1.5px solid var(--line); border-radius: 999px; padding: .4rem 1rem; font-size: .85rem; font-weight: 600; color: var(--text); }
.chip.active, .chip:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.sort-form { display: flex; align-items: center; gap: .5rem; font-size: .9rem; }
.sort-form select { padding: .45rem .8rem; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white); }

/* ---------- Footer ---------- */
.site-footer { background: #3a0d18; color: #ecd9bd; margin-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2.2rem; padding: 3.2rem 0; }
.footer-col h4 { color: var(--gold); margin-bottom: .9rem; font-size: 1.05rem; }
.footer-col ul { list-style: none; }
.footer-col li { padding: .28rem 0; }
.footer-col a { color: #ecd9bd; font-size: .92rem; }
.footer-col a:hover { color: var(--gold); }
.footer-brand p { font-size: .92rem; margin: .9rem 0; }
.trust-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.trust-chip { background: rgba(247,201,72,.12); border: 1px solid rgba(247,201,72,.35); color: var(--gold); padding: .3rem .7rem; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.newsletter { display: flex; gap: .4rem; margin: .8rem 0; }
.newsletter input { flex: 1; padding: .6rem .8rem; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; font-size: .85rem; }
.newsletter input::placeholder { color: #d8c2a8; }
.socials { display: flex; gap: 1.1rem; margin: .8rem 0; }
.socials a { color: var(--gold); font-size: .88rem; font-weight: 600; }
.contact-line { font-size: .88rem; margin-top: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.1rem 0; text-align: center; font-size: .83rem; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .product-layout, .about-grid, .cart-layout, .checkout-layout, .contact-layout, .blog-single { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-summary, .blog-sidebar { position: static; }
}
@media (max-width: 768px) {
  .main-nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    background: var(--white); flex-direction: column; padding: 5rem 2rem; gap: 1.4rem;
    transform: translateX(100%); transition: transform .25s ease; box-shadow: -10px 0 40px rgba(0,0,0,.15);
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 4.5rem 0 3.5rem; }
  .hero-stats { gap: 1.4rem; }
}
