/* ═══════════════════════════════════════════════════
   HAFIZ AND SON'S MART — Stylesheet
   Premium British Kitchenware
═══════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────── */
:root {
  --cream:       #F8F5F0;
  --white:       #FFFFFF;
  --charcoal:    #1A1A1A;
  --charcoal-2:  #2E2E2E;
  --mid:         #636363;
  --light:       #ADADAD;
  --border:      #E2DDD8;
  --gold:        #B8892A;
  --gold-dark:   #9A7220;
  --gold-light:  #FAF3E2;
  --success:     #2E7D5E;
  --error:       #C0392B;

  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --sh-sm: 0 1px 4px rgba(0,0,0,.07);
  --sh-md: 0 4px 20px rgba(0,0,0,.09);
  --sh-lg: 0 8px 40px rgba(0,0,0,.13);

  --max: 1200px;
  --hh: 72px;
  --transition: 0.22s ease;
}

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

/* ─── Typography ─────────────────────────────────── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--mid); }

/* ─── Layout ─────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 110px 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--charcoal); color: var(--white); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { color: var(--charcoal); margin-bottom: 12px; }
.section-head p { max-width: 560px; margin: 0 auto; }
.section-head .section-sub { font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }

/* ─── Buttons ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: var(--r-sm); font-weight: 600; font-size: .95rem; letter-spacing: .02em; transition: all var(--transition); cursor: pointer; white-space: nowrap; }
.btn--primary { background: var(--gold); color: var(--white); }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--sh-md); }
.btn--outline { background: transparent; color: var(--charcoal); border: 2px solid var(--charcoal); }
.btn--outline:hover { background: var(--charcoal); color: var(--white); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn--outline-white:hover { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.btn--ghost { background: transparent; color: var(--mid); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: .875rem; }
.btn--full { width: 100%; }
.btn--cart { width: 40px; height: 40px; padding: 0; border-radius: 50%; background: var(--charcoal); color: var(--white); flex-shrink: 0; }
.btn--cart:hover { background: var(--gold); transform: scale(1.08); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ─── Header ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  height: var(--hh);
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header--scrolled { border-color: var(--border); box-shadow: var(--sh-sm); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.site-logo { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--charcoal); flex-shrink: 0; letter-spacing: -.01em; }
.site-logo span { color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-menu a { padding: 6px 14px; border-radius: var(--r-sm); font-size: .9rem; font-weight: 500; color: var(--mid); transition: color var(--transition), background var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--charcoal); background: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.cart-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; color: var(--charcoal); transition: background var(--transition); }
.cart-btn:hover { background: var(--cream); }
#cart-badge { position: absolute; top: 0; right: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); color: var(--white); font-size: .7rem; font-weight: 700; display: none; align-items: center; justify-content: center; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all var(--transition); }

/* ─── Hero ──────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--charcoal-2);
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,137,42,.18) 0%, transparent 65%),
              linear-gradient(135deg, rgba(26,26,26,1) 0%, rgba(50,42,30,1) 100%);
}
.hero__grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(var(--gold) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content { position: relative; z-index: 2; max-width: 660px; padding: 100px 0; }
.hero__eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; border: 1px solid rgba(184,137,42,.4); padding: 5px 14px; border-radius: 100px; }
.hero__heading { color: var(--white); margin-bottom: 20px; }
.hero__heading em { color: var(--gold); font-style: normal; }
.hero__sub { font-size: 1.1rem; color: rgba(255,255,255,.72); margin-bottom: 40px; max-width: 500px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badge-row { display: flex; gap: 24px; margin-top: 56px; flex-wrap: wrap; }
.hero__badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: .85rem; }
.hero__badge svg { color: var(--gold); flex-shrink: 0; }

/* ─── Feature Strip ─────────────────────────────── */
.features-strip { background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { display: flex; align-items: center; gap: 14px; }
.feature-card__icon { width: 44px; height: 44px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.feature-card__title { font-size: .9rem; font-weight: 700; color: var(--charcoal); }
.feature-card__text { font-size: .8rem; color: var(--light); margin: 0; }

/* ─── Product Grid ──────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ─── Product Card ──────────────────────────────── */
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--transition), transform var(--transition); }
.product-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.product-card__image-link { display: block; }
.product-card__image-wrap { position: relative; aspect-ratio: 4/3; background: var(--cream); overflow: hidden; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__no-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--border); }
.product-card__badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: var(--white); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }
.product-card__body { padding: 16px; }
.product-card__category { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.product-card__name { font-size: 1rem; font-weight: 600; font-family: var(--font-head); color: var(--charcoal); margin-bottom: 12px; line-height: 1.35; }
.product-card__name a:hover { color: var(--gold); }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); }

/* ─── Skeleton ───────────────────────────────────── */
.product-card--skeleton { pointer-events: none; }
.skeleton { background: linear-gradient(90deg, var(--cream) 25%, #f0ece6 50%, var(--cream) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--r-sm); }
.skeleton--image { aspect-ratio: 4/3; width: 100%; margin-bottom: 16px; }
.skeleton--rect { aspect-ratio: 1/1; width: 100%; }
.skeleton--line { height: 14px; margin-bottom: 10px; }
.skeleton--line-sm { height: 10px; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ─── Filter Bar ─────────────────────────────────── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { padding: 7px 18px; border-radius: 100px; border: 1px solid var(--border); font-size: .85rem; font-weight: 500; color: var(--mid); background: var(--white); transition: all var(--transition); }
.filter-btn:hover, .filter-btn--active { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }

/* ─── How It Works ───────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.step-card { text-align: center; padding: 32px 20px; }
.step-card__num { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-light); color: var(--gold); font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card__icon { color: var(--gold); margin: 0 auto 16px; display: flex; justify-content: center; }
.step-card h4 { color: var(--charcoal); margin-bottom: 8px; }

/* ─── Testimonials ───────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px; }
.testimonial-card__stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card__text { font-size: .95rem; color: var(--charcoal-2); margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; color: var(--gold); font-size: .9rem; flex-shrink: 0; }
.testimonial-card__name { font-weight: 700; color: var(--charcoal); font-size: .9rem; }
.testimonial-card__location { font-size: .8rem; color: var(--light); margin: 0; }

/* ─── CTA Banner ─────────────────────────────────── */
.cta-banner { background: var(--charcoal); padding: 88px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(184,137,42,.15) 0%, transparent 70%); }
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── About Page ─────────────────────────────────── */
.about-hero { background: var(--cream); padding: 80px 0; }
.about-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-hero__content .section-sub { margin-bottom: 12px; display: block; }
.about-hero__content h1 { margin-bottom: 20px; }
.about-hero__image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--border); display: flex; align-items: center; justify-content: center; color: var(--light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 40px 24px; border: 1px solid var(--border); border-radius: var(--r-md); }
.value-card__icon { width: 60px; height: 60px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold); }
.value-card h4 { color: var(--charcoal); margin-bottom: 8px; }

/* ─── Contact Page ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-info h3 { margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item__icon { width: 40px; height: 40px; background: var(--gold-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-info-item__title { font-weight: 700; color: var(--charcoal); font-size: .9rem; margin-bottom: 2px; }
.contact-info-item__val { font-size: .9rem; color: var(--mid); margin: 0; }
.contact-form-wrap { background: var(--cream); padding: 40px; border-radius: var(--r-lg); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-input { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--white); color: var(--charcoal); transition: border-color var(--transition); }
.form-input:focus { outline: none; border-color: var(--gold); }
textarea.form-input { min-height: 130px; resize: vertical; }

/* ─── FAQ ────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; font-size: 1rem; font-weight: 600; color: var(--charcoal); text-align: left; }
.faq-question__icon { flex-shrink: 0; transition: transform var(--transition); color: var(--gold); }
.faq-item--open .faq-question__icon { transform: rotate(45deg); }
.faq-answer { display: none; padding-bottom: 20px; }
.faq-answer p { color: var(--mid); }
.faq-item--open .faq-answer { display: block; }

/* ─── Page Hero (inner pages) ───────────────────── */
.page-hero { background: var(--cream); padding: 60px 0; border-bottom: 1px solid var(--border); }
.page-hero h1 { margin-bottom: 8px; }
.breadcrumb { font-size: .85rem; color: var(--light); }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── Policy Pages ───────────────────────────────── */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { margin-top: 48px; margin-bottom: 12px; }
.policy-content h3 { margin-top: 28px; margin-bottom: 8px; font-size: 1.1rem; }
.policy-content p { margin-bottom: 14px; }
.policy-content ul { margin-bottom: 14px; padding-left: 20px; }
.policy-content ul li { margin-bottom: 6px; color: var(--mid); list-style: disc; }

/* ─── Product Detail ─────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-detail__gallery { position: sticky; top: calc(var(--hh) + 24px); }
.product-detail__main-img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 1/1; object-fit: cover; }
.product-detail__no-img { aspect-ratio: 1/1; background: var(--cream); border-radius: var(--r-lg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--light); }
.product-detail__cat { font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-detail__name { margin-bottom: 16px; }
.product-detail__price { font-size: 1.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 20px; font-family: var(--font-head); }
.product-detail__desc { color: var(--mid); margin-bottom: 24px; line-height: 1.75; }
.product-detail__trust { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.product-detail__trust span { font-size: .85rem; color: var(--success); font-weight: 500; }
.product-detail__actions { display: flex; gap: 12px; align-items: center; }
.product-detail-skeleton { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.product-detail-skeleton__info { display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* ─── Qty Control ────────────────────────────────── */
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden; }
.qty-btn { width: 38px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--charcoal); transition: background var(--transition); }
.qty-btn:hover { background: var(--cream); }
.qty-val { min-width: 38px; text-align: center; font-weight: 600; }

/* ─── Cart Sidebar ───────────────────────────────── */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.cart-overlay--visible { opacity: 1; pointer-events: all; }
.cart-sidebar { position: fixed; top: 0; right: 0; bottom: 0; width: 400px; max-width: 100vw; background: var(--white); z-index: 1001; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); box-shadow: var(--sh-lg); }
.cart-sidebar--open { transform: none; }
.cart-sidebar__header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-sidebar__header h2 { font-size: 1.25rem; font-family: var(--font-head); }
.cart-close-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--mid); transition: background var(--transition); }
.cart-close-btn:hover { background: var(--cream); color: var(--charcoal); }
.cart-sidebar__items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-sidebar__footer { padding: 20px 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.cart-subtotal-row { display: flex; justify-content: space-between; align-items: center; }
.cart-subtotal-row span { color: var(--mid); }
.cart-subtotal-row strong { font-size: 1.2rem; font-family: var(--font-head); }
.cart-sidebar__note { font-size: .8rem; color: var(--light); text-align: center; margin: 0; }
.cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 60px 20px; color: var(--light); text-align: center; }
.cart-empty p { margin: 0; }
.cart-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cart-item__image { width: 72px; height: 72px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; background: var(--cream); }
.cart-item__image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--border); }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: .9rem; font-weight: 600; color: var(--charcoal); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.cart-item__price { font-size: .85rem; color: var(--gold); font-weight: 700; margin: 0 0 8px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; }
.cart-item__qty .qty-btn { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: var(--r-sm); font-size: 1rem; }
.cart-item__qty .qty-val { font-size: .85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__remove { flex-shrink: 0; align-self: flex-start; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: var(--light); border-radius: var(--r-sm); transition: all var(--transition); }
.cart-item__remove:hover { background: #fee; color: var(--error); }

/* ─── Toast ──────────────────────────────────────── */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--charcoal); color: var(--white); padding: 12px 20px; border-radius: var(--r-md); display: flex; align-items: center; gap: 10px; font-size: .9rem; z-index: 9999; opacity: 0; transition: all .3s ease; white-space: nowrap; box-shadow: var(--sh-lg); }
.toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--error { background: var(--error); }
.toast__icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: .75rem; flex-shrink: 0; }

/* ─── Success / Cancel Pages ────────────────────── */
.result-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.result-page__inner { max-width: 500px; padding: 40px; }
.result-page__icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.result-page__icon--success { background: #E8F5F0; color: var(--success); }
.result-page__icon--cancel { background: #FEF3F2; color: var(--error); }
.result-page h1 { margin-bottom: 12px; }
.result-page p { margin-bottom: 28px; }

/* ─── Empty & Error ──────────────────────────────── */
.empty-msg { text-align: center; padding: 40px; color: var(--light); grid-column: 1/-1; }

/* ─── Footer ─────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand__logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand__logo span { color: var(--gold); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: var(--font-head); color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; font-size: .8rem; color: rgba(255,255,255,.35); gap: 16px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --hh: 60px; }
  .nav-menu { display: none; position: fixed; top: var(--hh); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 4px; z-index: 800; box-shadow: var(--sh-md); }
  .nav-menu--open { display: flex; }
  .nav-menu a { padding: 10px 0; width: 100%; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .hero { min-height: 85vh; }
  .hero__badge-row { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-hero__inner { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-detail__gallery { position: static; }
  .product-detail-skeleton { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1/-1; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100vw; }
  .product-detail__actions { flex-direction: column; }
  .product-detail__actions .btn { width: 100%; }
}
