/* ═══════════════════════════════════════════════
   THREAD SHED STUDIO — Kids & Girls Fashion
   threadshedstudio.com · UK Store · ASDA Gift Cards
   Aesthetic: Warm British craft studio — earthy, textured, editorial
   Palette: Warm cream, terracotta, sage, dusty rose, navy, gold
   Fonts: Playfair Display + Lato + Cormorant Garamond
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,500;1,300;1,500&display=swap');

:root {
  --cream:        #FAF6EF;
  --warm-white:   #FFFDF8;
  --parchment:    #F2EAD8;
  --terracotta:   #C4673A;
  --terra-dark:   #A0522D;
  --terra-light:  #E8A882;
  --sage:         #7A9E7E;
  --sage-dark:    #4F7352;
  --sage-light:   #B8D4BB;
  --dusty-rose:   #D4A0A0;
  --rose-dark:    #9E5555;
  --blush:        #F0D8D0;
  --navy:         #1E2D4A;
  --navy-mid:     #344D6E;
  --gold:         #C9963A;
  --gold-light:   #F0C878;
  --asda-green:   #007942;
  --asda-dark:    #005A30;
  --asda-light:   #E8F5EE;
  --text-dark:    #1E2D4A;
  --text-mid:     #5A6478;
  --text-light:   #9AA0AE;
  --border:       #E8E0D0;
  --shadow-soft:  0 4px 24px rgba(30,45,74,0.07);
  --shadow-card:  0 10px 40px rgba(30,45,74,0.12);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-pill:  50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
}
.announcement-bar strong { color: var(--gold-light); }
.asda-pill {
  display: inline-block;
  background: var(--asda-green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  text-transform: uppercase;
}

/* ─── HEADER ─── */
header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(30,45,74,0.05);
}
.header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 28px; height: 74px;
  display: flex; align-items: center; gap: 36px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.15; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--navy); letter-spacing: -0.3px;
}
.logo-main em { font-style: italic; color: var(--terracotta); }
.logo-sub {
  font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 700;
  color: var(--text-light); letter-spacing: 3px;
  text-transform: uppercase;
}
nav { display: flex; gap: 2px; margin-left: 4px; }
nav a {
  font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.2px;
}
nav a:hover, nav a.active {
  background: var(--parchment);
  color: var(--terracotta);
}
nav a.sale-link { color: var(--terracotta); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.btn-icon {
  width: 42px; height: 42px; border-radius: 50%;
  border: none; background: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; position: relative;
  transition: background 0.2s;
  text-decoration: none; color: var(--text-dark);
}
.btn-icon:hover { background: var(--parchment); }
.cart-count {
  position: absolute; top: 1px; right: 1px;
  background: var(--terracotta); color: white;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── HERO ─── */
.hero {
  background: var(--parchment);
  min-height: 580px;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(196,103,58,0.12) 0%, transparent 65%);
}
.hero-texture {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(45deg, var(--navy) 0px, var(--navy) 1px, transparent 0px, transparent 50%);
  background-size: 8px 8px;
}
.hero-inner {
  max-width: 1320px; margin: 0 auto; padding: 80px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--warm-white); border-radius: var(--radius-pill);
  padding: 8px 18px; margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--terracotta);
  letter-spacing: 2px; text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.2vw, 68px);
  color: var(--navy); line-height: 1.1;
  margin-bottom: 22px; font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--terracotta); display: block; }
.hero-desc {
  font-family: 'Lato', sans-serif;
  font-size: 17px; color: var(--text-mid);
  margin-bottom: 36px; line-height: 1.75;
  max-width: 460px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.asda-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--asda-green); color: white;
  border-radius: var(--radius-sm); padding: 14px 22px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.2px;
}
.hero-visual {
  display: flex; gap: 16px; justify-content: center; align-items: flex-end;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--terracotta); color: white;
  font-family: 'Lato', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: var(--radius-pill);
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(196,103,58,0.35);
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,103,58,0.4); }
.btn-secondary {
  display: inline-block;
  background: transparent; color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-pill);
  text-decoration: none; border: 2px solid var(--navy);
  cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-outline-terra {
  display: inline-block;
  background: transparent; color: var(--terracotta);
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  padding: 10px 22px; border-radius: var(--radius-pill);
  text-decoration: none; border: 2px solid var(--terracotta);
  cursor: pointer; transition: all 0.2s;
}
.btn-outline-terra:hover { background: var(--terracotta); color: white; }

/* ─── FEATURES STRIP ─── */
.features-strip { background: var(--navy); }
.features-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.feature-item {
  padding: 20px 28px; display: flex; align-items: center; gap: 14px;
  color: white; border-right: 1px solid rgba(255,255,255,0.1);
}
.feature-item:last-child { border-right: none; }
.fi-icon { font-size: 22px; }
.fi-text strong { display: block; font-size: 13px; font-weight: 700; }
.fi-text span { font-size: 11px; opacity: 0.65; }

/* ─── SECTIONS ─── */
.section-kicker {
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--terracotta);
  display: block; margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 42px);
  color: var(--navy); line-height: 1.2; margin-bottom: 14px;
}
.section-sub { font-size: 15px; color: var(--text-mid); max-width: 500px; line-height: 1.7; }
section { padding: 80px 20px; }
.container { max-width: 1320px; margin: 0 auto; }

/* ─── CATEGORY GRID ─── */
.cat-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.cat-card {
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative; transition: transform 0.3s;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card svg { width: 100%; display: block; }
.cat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 18px 18px;
  background: linear-gradient(to top, rgba(30,45,74,0.88) 0%, transparent 100%);
  color: white;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px; display: block; margin-bottom: 3px;
}
.cat-sub { font-size: 12px; opacity: 0.75; font-family: 'Lato', sans-serif; font-weight: 400; }
.cat-arrow {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--navy);
  opacity: 0; transition: opacity 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; }

/* ─── PRODUCT GRID ─── */
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.product-card {
  background: var(--warm-white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: all 0.3s;
  border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: var(--terra-light); }
.product-image { position: relative; overflow: hidden; }
.product-image svg { width: 100%; display: block; }
.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none; cursor: pointer;
  font-size: 15px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; opacity: 0; color: var(--text-light);
}
.product-card:hover .wishlist-btn { opacity: 1; }
.wishlist-btn.active { opacity: 1; color: var(--rose-dark); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--terracotta); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--radius-pill); letter-spacing: 0.5px;
}
.product-badge.new { background: var(--sage-dark); }
.product-badge.sale { background: var(--rose-dark); }
.product-info { padding: 16px 16px 18px; }
.product-age {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--sage-dark); margin-bottom: 5px;
}
.product-name {
  font-family: 'Playfair Display', serif; font-size: 16px;
  color: var(--navy); margin-bottom: 5px; cursor: pointer; line-height: 1.35;
}
.product-name:hover { color: var(--terracotta); }
.product-rating { font-size: 12px; color: var(--gold); margin-bottom: 8px; }
.product-rating span { color: var(--text-light); font-size: 11px; }
.product-price {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--navy); margin-bottom: 12px;
}
.btn-add-cart {
  width: 100%; background: var(--navy); color: white;
  border: none; border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700;
  padding: 10px; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px;
}
.btn-add-cart:hover { background: var(--terracotta); }

/* ─── ASDA PAYMENT SECTION ─── */
.asda-section {
  background: linear-gradient(135deg, var(--asda-green) 0%, #005230 100%);
  padding: 72px 20px; position: relative; overflow: hidden;
}
.asda-section::before {
  content: '🛒'; position: absolute; right: 4%; top: 50%;
  transform: translateY(-50%); font-size: 180px; opacity: 0.06;
}
.asda-section-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center;
}
.asda-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px,3.2vw,40px); color: white; margin-bottom: 14px;
}
.asda-section p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.75; }
.asda-card-visual {
  width: 260px; height: 160px; border-radius: 14px;
  background: linear-gradient(135deg, #003D20 0%, #007942 50%, #00B05E 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  padding: 22px; position: relative; overflow: hidden; flex-shrink: 0;
}
.asda-card-visual::before {
  content: ''; position: absolute;
  top: -20px; right: -20px; width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.asda-card-visual .card-logo {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: white; letter-spacing: 1px;
}
.asda-card-visual .card-sub {
  font-family: 'Lato', sans-serif; font-size: 10px; color: rgba(255,255,255,0.7);
  letter-spacing: 2px; text-transform: uppercase; margin-top: 2px;
}
.asda-card-visual .card-chip {
  width: 34px; height: 26px; background: #FFD700; border-radius: 5px; margin: 14px 0;
}
.asda-card-visual .card-num {
  font-family: 'Lato', sans-serif; font-size: 12px;
  color: rgba(255,255,255,0.8); letter-spacing: 3px;
}
.asda-steps { display: flex; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.asda-step {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); border-radius: var(--radius-pill);
  padding: 8px 16px; color: white; font-size: 13px; font-weight: 700;
  font-family: 'Lato', sans-serif;
}

/* ─── ASDA BANNER (small) ─── */
.asda-banner {
  background: var(--asda-light); border-top: 3px solid var(--asda-green);
  border-bottom: 3px solid var(--asda-green); padding: 20px;
  text-align: center;
}
.asda-banner h3 {
  font-family: 'Playfair Display', serif; font-size: 20px;
  color: var(--navy); margin-bottom: 5px;
}
.asda-badge-inline {
  display: inline-block; background: var(--asda-green); color: white;
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: var(--radius-pill); letter-spacing: 1px;
  text-transform: uppercase; margin-left: 6px;
}
.asda-banner p { font-size: 14px; color: var(--text-mid); font-family: 'Lato', sans-serif; }

/* ─── AGE FILTER TABS ─── */
.age-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.age-tab {
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; border: 2px solid var(--border);
  background: white; color: var(--text-mid); transition: all 0.2s;
}
.age-tab.active, .age-tab:hover { background: var(--terracotta); border-color: var(--terracotta); color: white; }

/* ─── TESTIMONIALS ─── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-soft); border: 1px solid var(--border);
}
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 17px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: white;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 14px; font-family: 'Lato', sans-serif; }
.author-tag { font-size: 12px; color: var(--text-light); font-family: 'Lato', sans-serif; }

/* ─── NEWSLETTER ─── */
.newsletter {
  background: var(--parchment); padding: 80px 20px; text-align: center;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, var(--terracotta) 0, var(--terracotta) 1px, transparent 0, transparent 50%);
  background-size: 12px 12px; opacity: 0.04;
}
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px,3.2vw,42px); color: var(--navy); margin-bottom: 10px;
  position: relative;
}
.newsletter p { color: var(--text-mid); font-size: 16px; margin-bottom: 32px; position: relative; }
.newsletter-form {
  display: flex; max-width: 460px; margin: 0 auto;
  background: white; border-radius: var(--radius-pill); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
}
.newsletter-form input {
  flex: 1; padding: 15px 22px; border: none; outline: none;
  font-family: 'Lato', sans-serif; font-size: 15px; color: var(--text-dark);
}
.newsletter-form button {
  background: var(--terracotta); color: white;
  border: none; padding: 15px 26px; font-family: 'Lato', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  border-radius: var(--radius-pill); margin: 4px;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--terra-dark); }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: white; padding: 60px 20px 0; }
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col h4 {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--terra-light);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--terra-light); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-payment span {
  display: inline-block; background: var(--asda-green); color: white;
  font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: var(--radius-pill); letter-spacing: 1px;
}

/* ─── SHOP / FILTER ─── */
.shop-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px;
  max-width: 1320px; margin: 0 auto; padding: 60px 24px 80px;
}
.sidebar { position: sticky; top: 100px; align-self: start; }
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy);
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--border);
}
.filter-option {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 9px; cursor: pointer;
  font-size: 14px; color: var(--text-mid);
}
.filter-option input { accent-color: var(--terracotta); width: 15px; height: 15px; cursor: pointer; }
.filter-option:hover { color: var(--terracotta); }

/* ─── CART / CHECKOUT ─── */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left; padding: 12px 18px;
  background: var(--cream); font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-mid);
  border-bottom: 2px solid var(--border);
}
.cart-table td { padding: 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  cursor: pointer; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--navy);
}
.qty-btn:hover { background: var(--parchment); border-color: var(--terracotta); color: var(--terracotta); }

/* ─── CHECKOUT FORM ─── */
.co-input {
  width: 100%; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-family: 'Lato', sans-serif; font-size: 15px; outline: none;
  color: var(--text-dark); background: white; transition: border-color 0.2s;
  box-sizing: border-box;
}
.co-input:focus { border-color: var(--terracotta); }
.co-label {
  display: block; font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy); margin-bottom: 7px;
}
.asda-card-input {
  background: linear-gradient(135deg, #003D20, #007942);
  border-radius: 18px; padding: 30px;
}
.asda-card-input .co-input {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25);
  color: white; font-size: 17px; font-weight: 700; letter-spacing: 3px;
}
.asda-card-input .co-input::placeholder { color: rgba(255,255,255,0.4); letter-spacing: 3px; }
.asda-card-input .co-input:focus { border-color: rgba(255,255,255,0.65); }
.asda-card-input .co-label { color: rgba(255,255,255,0.75); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9000;
  background: var(--navy); color: white;
  padding: 14px 22px; border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(30,45,74,0.3);
  transform: translateY(100px); opacity: 0; transition: all 0.3s;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ─── SEARCH MODAL ─── */
.search-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(30,45,74,0.55); z-index: 2000;
  align-items: flex-start; justify-content: center;
  padding-top: 80px; backdrop-filter: blur(4px);
}
.search-box {
  background: white; padding: 32px; border-radius: var(--radius);
  width: 90%; max-width: 540px; box-shadow: 0 24px 80px rgba(30,45,74,0.3);
}
.search-input {
  width: 100%; padding: 15px 20px;
  border: 2px solid var(--border); border-radius: var(--radius-pill);
  font-family: 'Lato', sans-serif; font-size: 16px; outline: none;
  color: var(--text-dark); transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--terracotta); }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 13px; color: var(--text-light); padding: 14px 24px;
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--terracotta); text-decoration: none; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .cat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .asda-section-inner { grid-template-columns: 1fr; }
  .asda-card-visual { display: none; }
}
@media (max-width: 768px) {
  .header-inner nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .features-inner { grid-template-columns: repeat(2,1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
}
