/*
Theme Name:  Cast & Reel
Theme URI:   https://castreel.co.uk
Description: 1:1 port of the Cast & Reel static demo into WordPress with WooCommerce.
Author:      Cast & Reel
Version:     1.0.0
Text Domain: cast-reel
*/
/* ============================================================
   CAST & REEL — Complete Design System v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --primary:        #1b4332;
  --primary-hover:  #2d6a4f;
  --primary-light:  #52b788;
  --primary-pale:   #d8f3dc;
  --accent:         #c9a84c;
  --accent-hover:   #b8952e;
  --dark:           #080f0a;
  --bg-dark:        #0d1f17;
  --text:           #1c2b22;
  --text-muted:     #5a7264;
  --text-light:     #8fa699;
  --bg:             #f2f7f4;
  --bg-card:        #ffffff;
  --border:         #d4e6db;
  --border-light:   #eaf2ed;
  --red:            #d62828;
  --green-badge:    #40916c;

  --shadow-sm:  0 1px 3px rgba(27,67,50,0.08);
  --shadow-md:  0 4px 16px rgba(27,67,50,0.12);
  --shadow-lg:  0 8px 32px rgba(27,67,50,0.18);
  --shadow-xl:  0 16px 48px rgba(27,67,50,0.24);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --s1:  0.25rem; --s2:  0.5rem;  --s3:  0.75rem; --s4:  1rem;
  --s5:  1.25rem; --s6:  1.5rem;  --s8:  2rem;    --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  --r-sm:   4px;  --r-md:   8px;  --r-lg:  12px;
  --r-xl:   16px; --r-2xl:  24px; --r-full: 9999px;

  --t-fast: 0.15s ease;
  --t-mid:  0.25s ease;
  --t-slow: 0.4s ease;

  --container: 1320px;
  --container-sm: 900px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary-hover); border-radius: var(--r-full); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 600;
}
h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1.05rem; }
p  { margin-bottom: var(--s4); }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container    { max-width: var(--container);    margin: 0 auto; padding: 0 var(--s6); }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 var(--s6); }
.section      { padding: var(--s16) 0; }
.section-sm   { padding: var(--s12) 0; }
.section-alt  { background: var(--bg-card); }
.section-warm { background: #f5f0e8; }
.section-pale { background: #eaf3ed; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--s12);
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}
.section-header h2 { margin-bottom: var(--s4); }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--t-mid);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  font-family: var(--font-body);
}
.btn-primary     { background:var(--primary); color:#fff; border-color:var(--primary); }
.btn-primary:hover{ background:var(--primary-hover); border-color:var(--primary-hover); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-accent      { background:var(--accent); color:var(--dark); border-color:var(--accent); font-weight:700; }
.btn-accent:hover{ background:var(--accent-hover); border-color:var(--accent-hover); transform:translateY(-1px); box-shadow:var(--shadow-md); }
.btn-outline     { background:transparent; color:var(--primary); border-color:var(--primary); }
.btn-outline:hover{ background:var(--primary); color:#fff; transform:translateY(-1px); }
.btn-outline-white { background:transparent; color:#fff; border-color:rgba(255,255,255,0.5); }
.btn-outline-white:hover{ background:rgba(255,255,255,0.12); border-color:#fff; }
.btn-ghost       { background:transparent; color:var(--text-muted); border-color:transparent; }
.btn-ghost:hover { color:var(--primary); background:var(--bg); }
.btn-sm          { padding:0.5rem 1.25rem; font-size:0.8rem; }
.btn-lg          { padding:0.95rem 2.25rem; font-size:0.95rem; }
.btn-block       { width:100%; justify-content:center; }
.btn[disabled]   { opacity:0.6; cursor:not-allowed; transform:none !important; }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.9);
  text-align: center;
  padding: 0.55rem var(--s4);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.announcement-bar a { color: var(--accent); font-weight: 700; text-decoration: underline; }

/* ============================================================
   HEADER & NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow var(--t-mid);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.35); }

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--s5);
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.05rem;
}
.logo-text       { display:flex; flex-direction:column; line-height:1; }
.logo-text .brand   { font-family:var(--font-heading); font-size:1.2rem; font-weight:700; color:#fff; }
.logo-text .tagline { font-size:0.62rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); font-weight:600; margin-top:2px; }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--s1);
  margin-left: var(--s4);
}
.main-nav a {
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: all var(--t-fast);
}
.main-nav a:hover,
.main-nav a.active { color:#fff; background:rgba(255,255,255,0.09); }

/* Search */
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  padding: 0.45rem 1rem;
  gap: var(--s2);
  transition: all var(--t-mid);
  min-width: 210px;
}
.header-search:focus-within { background:rgba(255,255,255,0.11); border-color:var(--primary-light); min-width:260px; }
.header-search i     { color:rgba(255,255,255,0.45); font-size:0.82rem; flex-shrink:0; }
.header-search input { background:none; border:none; outline:none; color:#fff; font-size:0.85rem; width:100%; }
.header-search input::placeholder { color:rgba(255,255,255,0.38); }

/* Header Buttons */
.header-actions { display:flex; align-items:center; gap:var(--s2); margin-left:auto; }
.header-btn {
  position:relative; width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:var(--r-full); color:rgba(255,255,255,0.7);
  transition:all var(--t-fast); font-size:1rem;
}
.header-btn:hover { background:rgba(255,255,255,0.1); color:#fff; }

.cart-badge {
  position:absolute; top:4px; right:4px;
  width:18px; height:18px;
  background:var(--accent); color:var(--dark);
  font-size:0.62rem; font-weight:700;
  border-radius:var(--r-full);
  display:flex; align-items:center; justify-content:center;
  border: 2px solid var(--bg-dark);
  line-height:1;
}

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; gap:5px;
  width:40px; height:40px; align-items:center; justify-content:center;
  border-radius:var(--r-md); transition:background var(--t-fast);
}
.hamburger:hover { background:rgba(255,255,255,0.1); }
.hamburger span  { display:block; width:22px; height:2px; background:rgba(255,255,255,0.8); border-radius:var(--r-full); transition:all var(--t-mid); }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display:none; flex-direction:column;
  background:var(--bg-dark); border-top:1px solid rgba(255,255,255,0.06);
  padding:var(--s4) var(--s6) var(--s6); gap:var(--s1);
}
.mobile-nav.open { display:flex; }
.mobile-nav a    { padding:var(--s3) var(--s4); color:rgba(255,255,255,0.78); font-size:0.9rem; font-weight:500; border-radius:var(--r-md); transition:all var(--t-fast); }
.mobile-nav a:hover { background:rgba(255,255,255,0.08); color:#fff; }
.mobile-divider    { height:1px; background:rgba(255,255,255,0.07); margin:var(--s2) 0; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display:flex; align-items:center; gap:var(--s2);
  padding:var(--s4) 0; font-size:0.8rem; color:var(--text-muted);
}
.breadcrumb a:hover { color:var(--primary); }
.breadcrumb i       { font-size:0.65rem; opacity:0.45; }
.breadcrumb span    { color:var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero-bg-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 20, 12, 0.95) 0%,
    rgba(13, 33, 20, 0.85) 35%,
    rgba(27, 67, 50, 0.65) 70%,
    rgba(13, 31, 23, 0.75) 100%
  );
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 55%, rgba(82,183,136,0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 20%, rgba(201,168,76,0.08) 0%, transparent 40%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: var(--s20) 0 var(--s16);
}

@keyframes heroFadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-content > * { animation: heroFadeUp 0.75s ease both; }
.hero-eyebrow     { animation-delay: 0.1s; }
.hero h1          { animation-delay: 0.22s; }
.hero-desc        { animation-delay: 0.36s; }
.hero-cta         { animation-delay: 0.5s; }
.hero-trust-row   { animation-delay: 0.64s; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--r-full);
  padding: 0.38rem 1rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--s6);
}

.hero h1 {
  color: #fff; margin-bottom: var(--s5);
  line-height: 1.1; font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero h1 em { color: var(--accent); font-style: normal; display: block; }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--s8);
  max-width: 540px;
  line-height: 1.75;
}

.hero-cta { margin-bottom: var(--s10); }

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 500;
}
.hero-trust-item i { color: var(--primary-light); font-size: 0.85rem; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  background: var(--bg-dark);
  padding: var(--s12) 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content:''; position:absolute; top:-50%; right:-10%;
  width:400px; height:400px; border-radius:50%;
  background: radial-gradient(circle, rgba(82,183,136,0.08), transparent 70%);
  pointer-events:none;
}
.page-header-content { position:relative; z-index:1; }
.page-header h1     { color:#fff; margin-bottom:var(--s3); }
.page-header p      { color:rgba(255,255,255,0.6); font-size:1.05rem; margin-bottom:0; }
.page-header .breadcrumb        { color:rgba(255,255,255,0.38); padding:0 0 var(--s4); }
.page-header .breadcrumb a:hover{ color:rgba(255,255,255,0.8); }
.page-header .breadcrumb span   { color:rgba(255,255,255,0.8); }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.category-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s6);
  transition: all var(--t-mid);
  cursor: pointer;
}
.category-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-xl); }

.category-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform var(--t-slow);
}
.category-card:hover .category-card-bg { transform: scale(1.06); }

.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(8,20,12,0.92) 0%,
    rgba(8,20,12,0.45) 50%,
    rgba(8,20,12,0.15) 100%);
}

.category-card-content { position:relative; z-index:1; }

.category-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem; margin-bottom: var(--s3);
}
.category-card-title  { font-family:var(--font-heading); font-size:1.2rem; font-weight:600; color:#fff; margin-bottom:var(--s2); }
.category-card-desc   { font-size:0.8rem; color:rgba(255,255,255,0.6); margin-bottom:var(--s3); line-height:1.5; }
.category-card-count  { font-size:0.75rem; color:rgba(255,255,255,0.5); }

.category-card-arrow {
  position:absolute; top:var(--s4); right:var(--s4);
  width:32px; height:32px;
  background:rgba(255,255,255,0.12); border-radius:var(--r-full);
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,0.65); font-size:0.8rem;
  transition:all var(--t-mid); z-index:1;
}
.category-card:hover .category-card-arrow { background:var(--accent); color:var(--dark); transform:translate(2px,-2px); }

/* Category backgrounds — fishing-atmosphere CSS gradients */
.cat-rods .category-card-bg {
  background: linear-gradient(160deg, #051a12 0%, #0f3d25 35%, #1a6040 65%, #123020 100%);
}
.cat-reels .category-card-bg {
  background: linear-gradient(160deg, #081a2e 0%, #103a5c 35%, #1a5a80 65%, #0d2e4a 100%);
}
.cat-baits .category-card-bg {
  background: linear-gradient(160deg, #040e1e 0%, #082340 35%, #0f4870 65%, #1b6a9a 100%);
}
.cat-acc .category-card-bg {
  background: linear-gradient(160deg, #100a1e 0%, #1e1040 35%, #2d1a5a 65%, #1a0d3a 100%);
}

/* ============================================================
   WHY US / TRUST SECTION
   ============================================================ */
.why-us {
  background: var(--bg-dark);
  padding: var(--s16) 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content:''; position:absolute; top:-30%; left:-10%;
  width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(82,183,136,0.06), transparent 70%);
  pointer-events:none;
}
.why-us::after {
  content:''; position:absolute; bottom:-20%; right:-5%;
  width:350px; height:350px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
  pointer-events:none;
}

.why-us .section-header h2 { color:#fff; }
.why-us .section-header p  { color:rgba(255,255,255,0.55); }
.why-us .section-header .eyebrow { color:var(--accent); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
  position: relative;
  z-index: 1;
}

.why-us-card {
  padding: var(--s8) var(--s6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all var(--t-mid);
  background: rgba(255,255,255,0.02);
}
.why-us-card:hover {
  border-color: rgba(82,183,136,0.25);
  background: rgba(82,183,136,0.05);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.why-us-icon {
  width: 64px; height: 64px; margin: 0 auto var(--s5);
  background: linear-gradient(135deg, rgba(82,183,136,0.15), rgba(82,183,136,0.05));
  border: 1px solid rgba(82,183,136,0.2);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary-light);
  transition: all var(--t-mid);
}
.why-us-card:hover .why-us-icon {
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border-color: rgba(201,168,76,0.3);
  color: var(--accent);
}

.why-us-card h3 {
  color: #fff; font-size: 1.05rem;
  margin-bottom: var(--s3);
}
.why-us-card p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.65;
}
.why-us-card .why-us-stat {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
  margin-top: var(--s3);
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
  gap: var(--s6);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-mid);
  display: flex; flex-direction: column;
}
.product-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); border-color:var(--border); }

.product-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
}
.product-card-image img {
  width:100%; height:100%; object-fit:cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-card-image img { transform:scale(1.06); }

.product-badge {
  position: absolute; top:var(--s3); left:var(--s3);
  padding:0.25rem 0.65rem; border-radius:var(--r-full);
  font-size:0.68rem; font-weight:700;
  letter-spacing:0.05em; text-transform:uppercase; z-index:1;
}
.badge-sale       { background:var(--red); color:#fff; }
.badge-new        { background:var(--primary-light); color:#fff; }
.badge-featured   { background:var(--accent); color:var(--dark); }
.badge-bestseller { background:var(--primary); color:#fff; }

.product-card-actions {
  position:absolute; top:var(--s3); right:var(--s3);
  display:flex; flex-direction:column; gap:var(--s2);
  opacity:0; transform:translateX(8px); transition:all var(--t-mid);
}
.product-card:hover .product-card-actions { opacity:1; transform:translateX(0); }

.product-card-action-btn {
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  background:#fff; border-radius:var(--r-full);
  color:var(--text-muted); font-size:0.82rem;
  transition:all var(--t-fast); box-shadow:var(--shadow-sm);
}
.product-card-action-btn:hover { background:var(--primary); color:#fff; transform:scale(1.1); }

.product-card-body {
  padding: var(--s5); flex:1; display:flex; flex-direction:column;
}
.product-category-tag {
  font-size:0.68rem; font-weight:700; letter-spacing:0.09em;
  text-transform:uppercase; color:var(--primary-light); margin-bottom:var(--s2);
}
.product-card-title          { font-family:var(--font-heading); font-size:1rem; font-weight:600; color:var(--text); margin-bottom:var(--s2); line-height:1.3; }
.product-card-title a:hover  { color:var(--primary); }

.product-rating  { display:flex; align-items:center; gap:var(--s2); margin-bottom:var(--s4); }
.stars           { display:flex; gap:2px; color:var(--accent); font-size:0.72rem; }
.stars .empty    { color:var(--border); }
.rating-count    { font-size:0.72rem; color:var(--text-light); }

.product-card-footer {
  display:flex; align-items:center; justify-content:space-between; gap:var(--s3);
  margin-top:auto; padding-top:var(--s4); border-top:1px solid var(--border-light);
}
.product-price    { display:flex; flex-direction:column; }
.price-current    { font-size:1.15rem; font-weight:700; color:var(--primary); line-height:1; }
.price-original   { font-size:0.78rem; color:var(--text-light); text-decoration:line-through; margin-top:2px; }

.btn-add-to-cart {
  display:flex; align-items:center; gap:var(--s2);
  background:var(--primary); color:#fff;
  padding:0.55rem 1rem; border-radius:var(--r-full);
  font-size:0.78rem; font-weight:600;
  transition:all var(--t-mid); white-space:nowrap;
  border:none; cursor:pointer; font-family:var(--font-body);
}
.btn-add-to-cart:hover { background:var(--primary-hover); transform:translateY(-1px); }

/* ============================================================
   FEATURES BAR (compact trust strip)
   ============================================================ */
.features-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--s5) 0;
}
.features-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
}
.feature-item {
  display:flex; align-items:center; gap:var(--s3);
  padding:var(--s3) var(--s4);
  border-right:1px solid var(--border-light);
}
.feature-item:last-child { border-right:none; }
.feature-icon {
  width:40px; height:40px; flex-shrink:0;
  background:var(--primary-pale); border-radius:var(--r-lg);
  display:flex; align-items:center; justify-content:center;
  color:var(--primary); font-size:1rem;
}
.feature-text .title { font-weight:600; font-size:0.875rem; color:var(--text); margin-bottom:2px; }
.feature-text .desc  { font-size:0.78rem; color:var(--text-muted); }

/* ============================================================
   BRAND STRIP
   ============================================================ */
.brands-strip {
  background: var(--primary);
  padding: var(--s10) 0;
  overflow: hidden;
}
.brands-strip-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s6);
}
.brands-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  flex-wrap: wrap;
}
.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--t-mid);
  cursor: default;
  padding: var(--s2) var(--s5);
  border-radius: var(--r-md);
  border: 1px solid transparent;
}
.brand-logo:hover { opacity: 1; color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s6);
}
.testimonial-card {
  background:var(--bg-card); border:1px solid var(--border-light);
  border-radius:var(--r-xl); padding:var(--s8);
  position:relative; transition:all var(--t-mid);
}
.testimonial-card:hover { box-shadow:var(--shadow-md); border-color:var(--border); }
.testimonial-card::before {
  content:'\201C';
  position:absolute; top:var(--s5); right:var(--s6);
  font-family:var(--font-heading); font-size:5rem;
  color:var(--primary-pale); line-height:1; pointer-events:none;
}
.testimonial-stars  { display:flex; gap:3px; color:var(--accent); margin-bottom:var(--s4); font-size:0.85rem; }
.testimonial-text   { font-size:0.925rem; color:var(--text-muted); line-height:1.75; margin-bottom:var(--s6); font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:var(--s3); }
.author-avatar {
  width:44px; height:44px; border-radius:var(--r-full); flex-shrink:0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-weight:700; font-size:0.95rem;
}
.author-info .name { font-weight:600; font-size:0.875rem; color:var(--text); }
.author-info .role { font-size:0.75rem; color:var(--text-light); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--primary);
  padding: var(--s16) 0;
  position: relative; overflow: hidden;
}
.newsletter::before {
  content:''; position:absolute; top:-40%; right:-10%;
  width:500px; height:500px; border-radius:50%;
  background:rgba(82,183,136,0.07); pointer-events:none;
}
.newsletter-inner {
  display: grid; grid-template-columns:1fr 1fr; gap:var(--s12); align-items:center;
}
.newsletter-text h2 { color:#fff; margin-bottom:var(--s4); }
.newsletter-text p  { color:rgba(255,255,255,0.7); font-size:1.05rem; }

.newsletter-form { display:flex; flex-direction:column; gap:var(--s4); }
.newsletter-form .form-row { display:flex; gap:var(--s3); }
.newsletter-form input {
  flex:1; padding:0.875rem 1.25rem;
  border-radius:var(--r-full); border:2px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.08); color:#fff; font-size:0.9rem;
  transition:all var(--t-mid); outline:none;
}
.newsletter-form input::placeholder { color:rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color:var(--accent); background:rgba(255,255,255,0.13); }
.newsletter-disclaimer { font-size:0.72rem; color:rgba(255,255,255,0.42); }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  padding: var(--s12) 0; text-align:center; position:relative; overflow:hidden;
}
.promo-strip::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.04), transparent 60%);
}
.promo-strip h2 { color:#fff; margin-bottom:var(--s3); position:relative; }
.promo-strip p  { color:rgba(255,255,255,0.72); font-size:1.05rem; margin-bottom:var(--s8); position:relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: var(--s16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s12);
  padding-bottom: var(--s12);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand .logo { margin-bottom:var(--s5); }
.footer-brand p { font-size:0.85rem; line-height:1.7; color:rgba(255,255,255,0.45); max-width:280px; }
.footer-social { display:flex; gap:var(--s3); margin-top:var(--s6); }
.footer-social a {
  width:36px; height:36px;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--r-full); display:flex; align-items:center; justify-content:center;
  font-size:0.85rem; color:rgba(255,255,255,0.45); transition:all var(--t-mid);
}
.footer-social a:hover { background:var(--primary); border-color:var(--primary); color:#fff; transform:translateY(-2px); }
.footer-col h4 {
  color:#fff; font-family:var(--font-body); font-size:0.8rem;
  font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  margin-bottom:var(--s5);
}
.footer-col ul  { display:flex; flex-direction:column; gap:var(--s3); }
.footer-col a   { font-size:0.85rem; color:rgba(255,255,255,0.45); transition:color var(--t-fast); }
.footer-col a:hover { color:var(--primary-light); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding:var(--s5) 0; gap:var(--s4); flex-wrap:wrap;
}
.footer-bottom p { font-size:0.78rem; color:rgba(255,255,255,0.28); margin-bottom:0; }
.footer-payments { display:flex; gap:var(--s2); align-items:center; }
.payment-icon {
  height:24px; padding:0 8px;
  background:rgba(255,255,255,0.07); border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  font-size:0.65rem; font-weight:700;
  color:rgba(255,255,255,0.45); letter-spacing:0.04em;
}

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s8);
  align-items: start;
}
.filter-sidebar {
  background: var(--bg-card); border:1px solid var(--border-light);
  border-radius:var(--r-xl); padding:var(--s6);
  position:sticky; top:88px;
}
.filter-sidebar-header {
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom:var(--s6); padding-bottom:var(--s4);
  border-bottom:1px solid var(--border-light);
}
.filter-sidebar-header h3 { font-size:0.95rem; font-family:var(--font-body); font-weight:600; }
.filter-clear { font-size:0.78rem; color:var(--text-muted); text-decoration:underline; cursor:pointer; }
.filter-clear:hover { color:var(--red); }

.filter-group { margin-bottom:var(--s6); padding-bottom:var(--s6); border-bottom:1px solid var(--border-light); }
.filter-group:last-child { margin-bottom:0; padding-bottom:0; border-bottom:none; }
.filter-group-title { font-size:0.82rem; font-weight:600; color:var(--text); margin-bottom:var(--s4); }
.filter-options { display:flex; flex-direction:column; gap:var(--s3); }
.filter-option {
  display:flex; align-items:center; gap:var(--s3); cursor:pointer;
  padding:var(--s1); border-radius:var(--r-md); transition:background var(--t-fast);
}
.filter-option:hover { background:var(--bg); }
.filter-option input[type="checkbox"] { accent-color:var(--primary); width:15px; height:15px; cursor:pointer; }
.filter-option label { font-size:0.85rem; color:var(--text-muted); cursor:pointer; flex:1; }
.filter-option .count { font-size:0.72rem; color:var(--text-light); background:var(--bg); padding:0 0.4rem; border-radius:var(--r-full); }

.price-range { display:flex; flex-direction:column; gap:var(--s3); }
.price-range input[type="range"] { width:100%; accent-color:var(--primary); }
.price-range-labels { display:flex; justify-content:space-between; font-size:0.78rem; color:var(--text-muted); }

.shop-toolbar {
  display:flex; align-items:center; justify-content:space-between; gap:var(--s4);
  padding:var(--s4) var(--s5); background:var(--bg-card);
  border:1px solid var(--border-light); border-radius:var(--r-lg); margin-bottom:var(--s6);
}
.shop-results-count { font-size:0.85rem; color:var(--text-muted); }
.shop-toolbar-right { display:flex; align-items:center; gap:var(--s4); }

.sort-select {
  padding:0.5rem 2rem 0.5rem 0.85rem;
  border:1px solid var(--border); border-radius:var(--r-md);
  background:var(--bg); color:var(--text); font-size:0.82rem;
  cursor:pointer; appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a7264' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 0.6rem center; outline:none;
}
.sort-select:focus { border-color:var(--primary-light); }

.view-toggle { display:flex; gap:var(--s1); }
.view-btn {
  width:32px; height:32px; display:flex; align-items:center; justify-content:center;
  border-radius:var(--r-md); color:var(--text-muted); font-size:0.82rem;
  transition:all var(--t-fast); cursor:pointer;
}
.view-btn.active,.view-btn:hover { background:var(--primary); color:#fff; }

.shop-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s4);
}
.shop-mobile-bar .shop-results-count-mobile { font-size:0.85rem; color:var(--text-muted); }

#shop-grid.list-view { grid-template-columns:1fr; }
#shop-grid.list-view .product-card { flex-direction:row; }
#shop-grid.list-view .product-card-image { width:200px; flex-shrink:0; aspect-ratio:1; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { padding:var(--s12) 0; }
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--s12); align-items:start; }

.product-gallery { display:flex; flex-direction:column; gap:var(--s4); position:sticky; top:88px; }
.gallery-main {
  aspect-ratio:1; border-radius:var(--r-xl); overflow:hidden;
  background:linear-gradient(135deg,#1b4332,#2d6a4f); position:relative;
}
.gallery-main img { width:100%; height:100%; object-fit:cover; transition:transform var(--t-slow); }
.gallery-main:hover img { transform:scale(1.03); }

.gallery-thumbs  { display:flex; gap:var(--s3); overflow-x:auto; }
.gallery-thumb {
  width:80px; height:80px; border-radius:var(--r-lg); overflow:hidden;
  border:2px solid transparent; cursor:pointer; transition:all var(--t-fast);
  flex-shrink:0; background:linear-gradient(135deg,#1b4332,#2d6a4f);
}
.gallery-thumb:hover,.gallery-thumb.active { border-color:var(--primary); }
.gallery-thumb img { width:100%; height:100%; object-fit:cover; }

.product-info { display:flex; flex-direction:column; gap:var(--s5); }
.product-info-category { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--primary-light); margin-bottom:var(--s2); }
.product-info h1 { font-size:clamp(1.5rem,3vw,2rem); margin-bottom:var(--s3); }

.product-info-rating { display:flex; align-items:center; gap:var(--s4); font-size:0.85rem; }
.product-info-rating .stars { font-size:0.9rem; }
.rating-text { color:var(--text-muted); }
.rating-text strong { color:var(--text); }
.reviews-link { color:var(--primary-light); text-decoration:underline; }

.product-info-price {
  display:flex; align-items:baseline; gap:var(--s4);
  padding:var(--s5); background:var(--bg); border-radius:var(--r-lg);
}
.price-large { font-size:2rem; font-weight:700; color:var(--primary); }
.price-was   { font-size:1.1rem; color:var(--text-light); text-decoration:line-through; }
.price-save  { background:var(--red); color:#fff; padding:0.2rem 0.6rem; border-radius:var(--r-full); font-size:0.72rem; font-weight:700; }

.product-info-divider { height:1px; background:var(--border-light); }
.product-short-desc   { color:var(--text-muted); font-size:0.95rem; line-height:1.75; }

.product-option-group { display:flex; flex-direction:column; gap:var(--s3); }
.product-option-label { font-size:0.85rem; font-weight:600; color:var(--text); display:flex; gap:var(--s2); }
.product-option-label span { font-weight:400; color:var(--text-muted); }
.option-btns { display:flex; flex-wrap:wrap; gap:var(--s2); }
.option-btn {
  padding:0.4rem 1rem; border:1.5px solid var(--border); border-radius:var(--r-full);
  font-size:0.82rem; color:var(--text-muted); transition:all var(--t-fast); cursor:pointer;
}
.option-btn:hover,.option-btn.active { border-color:var(--primary); color:var(--primary); background:var(--primary-pale); }

/* Product detail — brand + badge line */
.product-brand-line { display:flex; align-items:center; gap:var(--s3); flex-wrap:wrap; margin-bottom:var(--s2); }
.product-brand-name { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text-muted); }

/* Product detail — trust panel */
.product-trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3) var(--s4);
  padding: var(--s5) var(--s5);
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
}
.product-trust-item { display:flex; align-items:flex-start; gap:var(--s3); }
.product-trust-item i { color:var(--primary-light); font-size:1rem; margin-top:2px; flex-shrink:0; }
.product-trust-item strong { display:block; font-size:0.78rem; font-weight:600; color:var(--text); line-height:1.3; }
.product-trust-item span { font-size:0.72rem; color:var(--text-muted); line-height:1.4; }

/* Delivery & returns tab content */
.delivery-info-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--s6); }
.delivery-info-item { display:flex; flex-direction:column; gap:var(--s2); }
.delivery-info-item h4 { font-size:0.9rem; color:var(--text); display:flex; align-items:center; gap:var(--s2); }
.delivery-info-item h4 i { color:var(--primary-light); }
.delivery-info-item p { font-size:0.85rem; color:var(--text-muted); line-height:1.7; margin:0; }
@media(max-width:600px){ .delivery-info-grid{ grid-template-columns:1fr; } .product-trust-panel{ grid-template-columns:1fr; } }

.product-add-to-cart { display:flex; gap:var(--s3); align-items:center; }
.qty-control { display:flex; align-items:center; border:1.5px solid var(--border); border-radius:var(--r-full); overflow:hidden; }
.qty-btn { width:40px; height:44px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; color:var(--text-muted); transition:all var(--t-fast); cursor:pointer; }
.qty-btn:hover { background:var(--bg); color:var(--primary); }
.qty-input { width:50px; height:44px; text-align:center; border:none; border-left:1.5px solid var(--border); border-right:1.5px solid var(--border); font-size:0.95rem; font-weight:600; color:var(--text); outline:none; background:var(--bg-card); }

.btn-add-large {
  flex:1; padding:0.875rem 1.5rem; background:var(--primary); color:#fff;
  border-radius:var(--r-full); font-size:0.95rem; font-weight:600;
  display:flex; align-items:center; justify-content:center; gap:var(--s3);
  transition:all var(--t-mid); border:none; cursor:pointer; font-family:var(--font-body);
}
.btn-add-large:hover { background:var(--primary-hover); transform:translateY(-1px); box-shadow:var(--shadow-md); }

.btn-wishlist {
  width:48px; height:48px; border:1.5px solid var(--border); border-radius:var(--r-full);
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); font-size:1rem; transition:all var(--t-fast); cursor:pointer; background:none;
}
.btn-wishlist:hover,.btn-wishlist.active { border-color:var(--red); color:var(--red); background:rgba(214,40,40,0.05); }

/* Tabs */
.product-tabs { margin-top:var(--s12); }
.tab-nav { display:flex; gap:0; border-bottom:2px solid var(--border-light); margin-bottom:var(--s8); overflow-x:auto; }
.tab-btn { padding:0.75rem 1.5rem; font-size:0.85rem; font-weight:600; color:var(--text-muted); border-bottom:2px solid transparent; margin-bottom:-2px; transition:all var(--t-fast); cursor:pointer; white-space:nowrap; background:none; }
.tab-btn:hover { color:var(--primary); }
.tab-btn.active { color:var(--primary); border-bottom-color:var(--primary); }
.tab-content { display:none; }
.tab-content.active { display:block; }
.tab-content p { color:var(--text-muted); line-height:1.8; font-size:0.95rem; }

.specs-table { width:100%; border-collapse:collapse; font-size:0.9rem; }
.specs-table tr { border-bottom:1px solid var(--border-light); }
.specs-table td { padding:var(--s3) var(--s4); vertical-align:top; }
.specs-table td:first-child { font-weight:600; color:var(--text); width:40%; background:var(--bg); }
.specs-table td:last-child  { color:var(--text-muted); }

.feature-list { display:flex; flex-direction:column; gap:var(--s3); }
.feature-list-item { display:flex; align-items:flex-start; gap:var(--s3); font-size:0.9rem; color:var(--text-muted); }
.feature-list-item i { color:var(--primary-light); margin-top:3px; flex-shrink:0; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout { display:grid; grid-template-columns:1fr 360px; gap:var(--s8); align-items:start; }
.cart-items  { background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); overflow:hidden; }
.cart-header { padding:var(--s5) var(--s6); border-bottom:1px solid var(--border-light); display:flex; align-items:center; justify-content:space-between; }
.cart-header h3 { font-size:0.95rem; font-family:var(--font-body); font-weight:600; }

.cart-item { display:flex; gap:var(--s5); padding:var(--s5) var(--s6); border-bottom:1px solid var(--border-light); align-items:center; transition:background var(--t-fast); }
.cart-item:last-child { border-bottom:none; }
.cart-item:hover { background:var(--bg); }
.cart-item-image { width:80px; height:80px; border-radius:var(--r-lg); overflow:hidden; flex-shrink:0; background:linear-gradient(135deg,#1b4332,#2d6a4f); }
.cart-item-image img { width:100%; height:100%; object-fit:cover; }
.cart-item-info { flex:1; min-width:0; }
.cart-item-category { font-size:0.68rem; color:var(--primary-light); font-weight:700; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:3px; }
.cart-item-name { font-weight:600; font-size:0.9rem; margin-bottom:var(--s2); color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.cart-item-name a:hover { color:var(--primary); }
.cart-item-controls { display:flex; align-items:center; gap:var(--s4); flex-shrink:0; }
.cart-qty { display:flex; align-items:center; border:1.5px solid var(--border); border-radius:var(--r-full); }
.cart-qty-btn { width:30px; height:30px; display:flex; align-items:center; justify-content:center; color:var(--text-muted); font-size:0.82rem; cursor:pointer; transition:all var(--t-fast); background:none; border:none; }
.cart-qty-btn:hover { color:var(--primary); }
.cart-qty-num { width:32px; text-align:center; font-size:0.85rem; font-weight:600; border-left:1px solid var(--border); border-right:1px solid var(--border); height:30px; display:flex; align-items:center; justify-content:center; }
.cart-item-price  { font-weight:700; color:var(--primary); font-size:1rem; white-space:nowrap; }
.cart-item-remove { color:var(--text-light); font-size:0.82rem; transition:color var(--t-fast); cursor:pointer; padding:var(--s2); background:none; border:none; }
.cart-item-remove:hover { color:var(--red); }

.cart-summary { background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); padding:var(--s6); position:sticky; top:88px; }
.cart-summary h3 { font-size:0.95rem; font-family:var(--font-body); font-weight:600; margin-bottom:var(--s5); padding-bottom:var(--s4); border-bottom:1px solid var(--border-light); }
.cart-summary-line { display:flex; justify-content:space-between; align-items:center; font-size:0.85rem; color:var(--text-muted); padding:var(--s2) 0; }
.cart-summary-line.total { font-size:1.1rem; font-weight:700; color:var(--text); padding-top:var(--s4); margin-top:var(--s2); border-top:2px solid var(--border); }
.cart-summary-line.total .price { color:var(--primary); }
.cart-promo { display:flex; gap:var(--s2); margin:var(--s5) 0; }
.cart-promo input { flex:1; padding:0.65rem 1rem; border:1.5px solid var(--border); border-radius:var(--r-full); font-size:0.85rem; outline:none; transition:border-color var(--t-fast); }
.cart-promo input:focus { border-color:var(--primary-light); }
.cart-trust { margin-top:var(--s5); padding-top:var(--s5); border-top:1px solid var(--border-light); display:flex; flex-direction:column; gap:var(--s3); }
.cart-trust-item { display:flex; align-items:center; gap:var(--s3); font-size:0.78rem; color:var(--text-muted); }
.cart-trust-item i { color:var(--primary-light); width:16px; text-align:center; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group     { display:flex; flex-direction:column; gap:var(--s2); margin-bottom:var(--s5); }
.form-group label { font-size:0.85rem; font-weight:600; color:var(--text); }
.form-group label .required { color:var(--red); margin-left:3px; }
.form-control {
  padding:0.75rem 1rem; border:1.5px solid var(--border); border-radius:var(--r-md);
  font-size:0.9rem; color:var(--text); background:var(--bg-card);
  outline:none; transition:all var(--t-mid); width:100%;
}
.form-control:focus { border-color:var(--primary-light); box-shadow:0 0 0 3px rgba(82,183,136,0.1); }
.form-control::placeholder { color:var(--text-light); }
textarea.form-control { resize:vertical; min-height:130px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:var(--s5); }

/* ============================================================
   CONTACT & INFO PAGES
   ============================================================ */
.contact-layout { display:grid; grid-template-columns:1fr 380px; gap:var(--s10); align-items:start; }
.contact-info-cards { display:flex; flex-direction:column; gap:var(--s4); margin-top:var(--s6); }
.contact-info-card  { display:flex; align-items:flex-start; gap:var(--s4); padding:var(--s5); background:var(--bg); border-radius:var(--r-lg); border:1px solid var(--border-light); }
.contact-info-card .icon { width:40px; height:40px; background:var(--primary-pale); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; color:var(--primary); font-size:1rem; flex-shrink:0; }
.contact-info-card .title  { font-weight:600; font-size:0.875rem; margin-bottom:var(--s1); }
.contact-info-card .detail { font-size:0.85rem; color:var(--text-muted); }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout { display:grid; grid-template-columns:1fr 400px; gap:var(--s10); align-items:start; }
.checkout-form   { background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); padding:var(--s8); }
.checkout-section { margin-bottom:var(--s8); padding-bottom:var(--s8); border-bottom:1px solid var(--border-light); }
.checkout-section:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.checkout-section-title { font-size:0.95rem; font-weight:600; margin-bottom:var(--s6); display:flex; align-items:center; gap:var(--s3); }
.checkout-section-num { width:28px; height:28px; background:var(--primary); color:#fff; border-radius:var(--r-full); display:flex; align-items:center; justify-content:center; font-size:0.78rem; font-weight:700; }

.payment-method { display:flex; align-items:center; gap:var(--s4); padding:var(--s4) var(--s5); border:1.5px solid var(--border); border-radius:var(--r-lg); cursor:pointer; transition:all var(--t-fast); }
.payment-method:hover { border-color:var(--primary-light); }
.payment-method.active { border-color:var(--primary); background:var(--primary-pale); }
.payment-method input[type="radio"] { accent-color:var(--primary); }
.payment-method .icon { font-size:1.2rem; color:var(--primary); }
.payment-method .name { font-weight:600; font-size:0.875rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-values { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:var(--s6); }
.value-card { padding:var(--s8); background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); transition:all var(--t-mid); }
.value-card:hover { box-shadow:var(--shadow-md); transform:translateY(-2px); }
.value-icon { width:52px; height:52px; background:var(--primary-pale); border-radius:var(--r-lg); display:flex; align-items:center; justify-content:center; color:var(--primary); font-size:1.2rem; margin-bottom:var(--s5); }
.value-card h3 { font-size:1.05rem; margin-bottom:var(--s3); }
.value-card p  { font-size:0.875rem; color:var(--text-muted); line-height:1.7; }

.team-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:var(--s6); }
.team-card { background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); overflow:hidden; text-align:center; transition:all var(--t-mid); }
.team-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.team-card-image { aspect-ratio:1; overflow:hidden; background:linear-gradient(135deg,var(--primary),var(--primary-hover)); }
.team-card-image img { width:100%; height:100%; object-fit:cover; }
.team-card-body { padding:var(--s5); }
.team-card .name { font-family:var(--font-heading); font-size:1.05rem; font-weight:600; margin-bottom:var(--s1); }
.team-card .role { font-size:0.72rem; color:var(--primary-light); font-weight:700; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:var(--s3); }
.team-card .bio  { font-size:0.82rem; color:var(--text-muted); line-height:1.6; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:var(--s8); }
.blog-card { background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); overflow:hidden; transition:all var(--t-mid); }
.blog-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:var(--border); }
.blog-card-image { aspect-ratio:16/9; overflow:hidden; background:linear-gradient(135deg,#1b4332,#2d6a4f); }
.blog-card-image img { width:100%; height:100%; object-fit:cover; transition:transform var(--t-slow); }
.blog-card:hover .blog-card-image img { transform:scale(1.05); }
.blog-card-body { padding:var(--s6); }
.blog-card-meta { display:flex; align-items:center; gap:var(--s3); margin-bottom:var(--s4); font-size:0.75rem; color:var(--text-light); }
.blog-card-tag  { background:var(--primary-pale); color:var(--primary); padding:0.2rem 0.65rem; border-radius:var(--r-full); font-size:0.68rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; }
.blog-card-title { font-family:var(--font-heading); font-size:1.15rem; font-weight:600; margin-bottom:var(--s3); line-height:1.3; }
.blog-card-title a:hover { color:var(--primary); }
.blog-card-excerpt { font-size:0.875rem; color:var(--text-muted); line-height:1.7; margin-bottom:var(--s5); }
.blog-card-read-more { font-size:0.85rem; font-weight:600; color:var(--primary-light); display:inline-flex; align-items:center; gap:var(--s2); transition:gap var(--t-fast); }
.blog-card-read-more:hover { gap:var(--s3); }

/* ============================================================
   INFO PAGES (shipping, returns, faq, etc.)
   ============================================================ */
.info-layout { display:grid; grid-template-columns:240px 1fr; gap:var(--s10); align-items:start; }
.info-sidebar { position:sticky; top:88px; background:var(--bg-card); border:1px solid var(--border-light); border-radius:var(--r-xl); padding:var(--s5); }
.info-sidebar h4 { font-size:0.8rem; font-family:var(--font-body); font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:var(--text-muted); margin-bottom:var(--s4); }
.info-sidebar ul { display:flex; flex-direction:column; gap:var(--s1); }
.info-sidebar a  { display:block; padding:var(--s2) var(--s3); font-size:0.85rem; color:var(--text-muted); border-radius:var(--r-md); transition:all var(--t-fast); }
.info-sidebar a:hover,.info-sidebar a.active { background:var(--primary-pale); color:var(--primary); }

.info-content h2 { font-size:1.5rem; margin-bottom:var(--s4); margin-top:var(--s10); }
.info-content h2:first-child { margin-top:0; }
.info-content h3 { font-size:1.1rem; margin-bottom:var(--s3); margin-top:var(--s8); color:var(--primary); }
.info-content p  { color:var(--text-muted); line-height:1.8; margin-bottom:var(--s4); }
.info-content ul,.info-content ol { padding-left:var(--s6); margin-bottom:var(--s5); }
.info-content li { color:var(--text-muted); line-height:1.8; margin-bottom:var(--s2); }
.info-content ul { list-style:disc; }
.info-content ol { list-style:decimal; }

.info-box { background:var(--bg); border:1px solid var(--border-light); border-radius:var(--r-lg); padding:var(--s6); margin:var(--s6) 0; }
.info-box-highlight { background:var(--primary-pale); border-color:var(--border); }
.info-box h4 { font-size:0.95rem; margin-bottom:var(--s3); }
.info-box p  { font-size:0.875rem; color:var(--text-muted); }

.faq-list { display:flex; flex-direction:column; gap:var(--s3); }
.faq-item { border:1px solid var(--border-light); border-radius:var(--r-lg); overflow:hidden; }
.faq-question { display:flex; align-items:center; justify-content:space-between; padding:var(--s5) var(--s6); cursor:pointer; font-weight:600; font-size:0.95rem; transition:background var(--t-fast); user-select:none; }
.faq-question:hover { background:var(--bg); }
.faq-question i { color:var(--text-light); transition:transform var(--t-mid); flex-shrink:0; }
.faq-item.open .faq-question i { transform:rotate(180deg); }
.faq-item.open .faq-question { background:var(--bg); color:var(--primary); }
.faq-answer { display:none; padding:0 var(--s6) var(--s5); font-size:0.9rem; color:var(--text-muted); line-height:1.75; border-top:1px solid var(--border-light); background:var(--bg); }
.faq-item.open .faq-answer { display:block; }

/* ============================================================
   MISC
   ============================================================ */
.empty-state { text-align:center; padding:var(--s16) var(--s8); }
.empty-state-icon { width:80px; height:80px; background:var(--bg); border-radius:var(--r-full); display:flex; align-items:center; justify-content:center; font-size:2rem; color:var(--text-light); margin:0 auto var(--s6); }
.empty-state h3 { font-size:1.25rem; margin-bottom:var(--s3); }
.empty-state p  { color:var(--text-muted); margin-bottom:var(--s6); }

.pagination { display:flex; align-items:center; justify-content:center; gap:var(--s2); margin-top:var(--s10); }
.page-btn { width:40px; height:40px; display:flex; align-items:center; justify-content:center; border:1.5px solid var(--border); border-radius:var(--r-md); font-size:0.85rem; color:var(--text-muted); transition:all var(--t-fast); cursor:pointer; background:none; }
.page-btn:hover,.page-btn.active { background:var(--primary); border-color:var(--primary); color:#fff; }
.page-btn.disabled { opacity:0.4; cursor:not-allowed; }

.stock-indicator { display:flex; align-items:center; gap:var(--s2); font-size:0.85rem; }
.stock-dot  { width:8px; height:8px; border-radius:50%; }
.in-stock .stock-dot  { background:var(--primary-light); }
.in-stock .stock-text { color:var(--green-badge); font-weight:600; }
.low-stock .stock-dot  { background:var(--accent); }
.low-stock .stock-text { color:var(--accent-hover); font-weight:600; }

.tag { display:inline-flex; align-items:center; gap:var(--s2); padding:0.2rem 0.7rem; border-radius:var(--r-full); font-size:0.7rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; }
.tag-green { background:var(--primary-pale); color:var(--primary); }
.tag-gold  { background:rgba(201,168,76,0.14); color:var(--accent-hover); }
.tag-red   { background:rgba(214,40,40,0.1); color:var(--red); }

/* ============================================================
   TOAST
   ============================================================ */
.toast-container { position:fixed; bottom:var(--s6); right:var(--s6); z-index:9999; display:flex; flex-direction:column; gap:var(--s3); pointer-events:none; }
.toast {
  display:flex; align-items:center; gap:var(--s3);
  background:#0d1f17; color:#fff;
  padding:var(--s4) var(--s5); border-radius:var(--r-lg);
  box-shadow:0 8px 32px rgba(0,0,0,0.4);
  font-size:0.875rem; min-width:280px; max-width:360px;
  pointer-events:auto;
  animation:toastIn 0.25s ease forwards;
  border-left:3px solid var(--primary-light);
}
.toast.error   { border-left-color:var(--red); }
.toast.info    { border-left-color:var(--accent); }
.toast.warning { border-left-color:var(--accent); }
.toast i { font-size:1rem; flex-shrink:0; }
.toast.success i { color:var(--primary-light); }
.toast.error   i { color:var(--red); }
.toast.info    i { color:var(--accent); }
.toast-close { margin-left:auto; background:none; border:none; color:rgba(255,255,255,0.4); cursor:pointer; font-size:0.78rem; padding:2px; transition:color var(--t-fast); }
.toast-close:hover { color:#fff; }
@keyframes toastIn  { from{transform:translateX(100%);opacity:0} to{transform:translateX(0);opacity:1} }
@keyframes toastOut { from{transform:translateX(0);opacity:1} to{transform:translateX(100%);opacity:0} }
@keyframes cartBounce { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }
.bounce { animation:cartBounce 0.4s ease; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width:1024px) {
  .categories-grid    { grid-template-columns:repeat(2,1fr); }
  .why-us-grid        { grid-template-columns:repeat(2,1fr); }
  .features-bar-inner { grid-template-columns:repeat(2,1fr); }
  .feature-item:nth-child(2) { border-right:none; }
  .footer-grid        { grid-template-columns:1fr 1fr; gap:var(--s8); }
  .shop-layout        { grid-template-columns:240px 1fr; }
  .newsletter-inner   { grid-template-columns:1fr; gap:var(--s8); }
  .contact-layout     { grid-template-columns:1fr; }
  .checkout-layout    { grid-template-columns:1fr; }
  .info-layout        { grid-template-columns:200px 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width:768px) {
  :root { --s16:3rem; --s20:3.5rem; }

  .main-nav,.header-search { display:none; }
  .hamburger { display:flex; }
  .header-inner { height:64px; }

  .hero { min-height:100svh; }
  .hero-content { padding:var(--s16) 0 var(--s12); }

  .categories-grid { grid-template-columns:1fr 1fr; gap:var(--s3); }
  .category-card { aspect-ratio:1; }

  .why-us-grid        { grid-template-columns:1fr 1fr; }
  .features-bar-inner { grid-template-columns:1fr 1fr; }
  .feature-item       { border-right:none; }

  .products-grid { grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:var(--s4); }
  .testimonials-grid { grid-template-columns:1fr; }

  .footer-grid { grid-template-columns:1fr; gap:var(--s8); }
  .footer-bottom { flex-direction:column; text-align:center; }

  .shop-layout { grid-template-columns:1fr; }
  .filter-sidebar { position:static; display:none; }
  .filter-sidebar.mobile-open { display:block; }
  .shop-mobile-bar { display:flex; }

  .product-detail-grid { grid-template-columns:1fr; }
  .product-gallery { position:static; }

  .cart-layout { grid-template-columns:1fr; }
  .cart-summary { position:static; }

  .form-row { grid-template-columns:1fr; }

  .newsletter-form .form-row { flex-direction:column; }

  #shop-grid.list-view .product-card { flex-direction:column; }
  #shop-grid.list-view .product-card-image { width:100%; }

  .info-layout { grid-template-columns:1fr; }
  .info-sidebar { position:static; }

  .blog-grid { grid-template-columns:1fr; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width:480px) {
  .container { padding:0 var(--s4); }
  .products-grid { grid-template-columns:1fr 1fr; gap:var(--s3); }
  .product-card-body { padding:var(--s4); }
  .why-us-grid { grid-template-columns:1fr; }
  .features-bar-inner { grid-template-columns:1fr; }
  .hero h1 { font-size:2rem; }
}

/* ============================================================
   UK REDESIGN — Step 1: Homepage Components
   ============================================================ */

/* Utility Bar
   ============================================================ */
.utility-bar {
  background: #060d09;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.48rem 0;
  position: relative;
  z-index: 1001;
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.utility-bar-left,
.utility-bar-right { display:flex; align-items:center; gap:var(--s5); }
.utility-bar-left a,
.utility-bar-right a,
.utility-bar-right span {
  color: rgba(255,255,255,0.42);
  font-size: 0.72rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t-fast);
  white-space: nowrap;
}
.utility-bar-left a:hover,
.utility-bar-right a:hover { color: var(--accent); }
.utility-bar i { font-size: 0.62rem; }
.utility-bar-sep {
  width: 1px; height: 13px;
  background: rgba(255,255,255,0.1);
}

/* Hero Split
   ============================================================ */
.hero-split {
  position: relative;
  background: var(--bg-dark);
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.hero-split-img {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
}
.hero-split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-dark) 0%,
    rgba(8,15,10,0.82) 20%,
    rgba(8,15,10,0.35) 60%,
    transparent 100%
  );
  z-index: 1;
}
.hero-split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 20%);
  z-index: 1;
}
.hero-split-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}
.hero-split-content {
  max-width: 580px;
  padding: var(--s24) 0 var(--s20);
}
.hero-season-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s5);
}
.hero-season-tag i { font-size: 0.6rem; }
.hero-split h1 {
  color: #fff;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: var(--s5);
  font-weight: 700;
}
.hero-split h1 em { color: var(--accent); font-style: normal; display: block; }
.hero-split-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.02rem;
  line-height: 1.78;
  margin-bottom: var(--s8);
  max-width: 480px;
}
.hero-split-ctas {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  margin-bottom: var(--s10);
}
.hero-split-trust {
  display: flex;
  align-items: center;
  gap: var(--s6);
  flex-wrap: wrap;
  padding-top: var(--s6);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-split-trust-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
}
.hero-split-trust-item i { color: var(--primary-light); font-size: 0.78rem; }

/* Trust Bar
   ============================================================ */
.trust-bar {
  background: var(--bg-card);
  border-top: 3px solid var(--primary);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(27,67,50,0.07);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s5) var(--s5);
  border-right: 1px solid var(--border-light);
  text-decoration: none;
  transition: background var(--t-fast);
  color: inherit;
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-item:hover { background: var(--bg); }
.trust-bar-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  transition: all var(--t-fast);
  box-shadow: 0 2px 8px rgba(27,67,50,0.25);
}
.trust-bar-item:hover .trust-bar-icon { background: var(--accent); color: var(--dark); }
.trust-bar-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1px;
}
.trust-bar-text span { font-size: 0.72rem; color: var(--text-muted); }

/* 6-Card Category Grid (species-led)
   ============================================================ */
.categories-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
}
.categories-grid-6 .category-card { aspect-ratio: 4/3; }

/* Product Tabs
   ============================================================ */
.products-tabs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s8);
  flex-wrap: wrap;
}
.products-tab-nav {
  display: flex;
  gap: 3px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-full);
  padding: 4px;
}
.products-tab-btn {
  padding: 0.48rem 1.2rem;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
  font-family: var(--font-body);
}
.products-tab-btn:hover { color: var(--primary); }
.products-tab-btn.active { background: var(--primary); color: #fff; }

/* Editorial / Seasonal Banner
   ============================================================ */
.editorial-banner {
  background: var(--bg-dark);
  padding: var(--s16) 0;
  overflow: hidden;
  position: relative;
}
.editorial-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(82,183,136,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.editorial-banner-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}
.editorial-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(82,183,136,0.12);
  border: 1px solid rgba(82,183,136,0.22);
  color: var(--primary-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s4);
}
.editorial-banner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.18;
  margin-bottom: var(--s4);
}
.editorial-banner p {
  color: rgba(255,255,255,0.58);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: var(--s8);
  max-width: 440px;
}
.editorial-banner-img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.editorial-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.editorial-banner-img:hover img { transform: scale(1.03); }

/* Blog Preview
   ============================================================ */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}
.blog-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all var(--t-mid);
}
.blog-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.blog-preview-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: rgba(201,168,76,0.45);
  transition: color var(--t-mid);
}
.blog-preview-card:hover .blog-preview-img { color: rgba(201,168,76,0.7); }
.blog-preview-img img { width:100%; height:100%; object-fit:cover; display:block; transition:transform var(--t-slow); }
.blog-preview-card:hover .blog-preview-img img { transform: scale(1.05); }
.blog-img-review  { background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%); }
.blog-img-species { background: linear-gradient(135deg, #0a2215 0%, #1b4332 100%); }
.blog-img-howto   { background: linear-gradient(135deg, #162d20 0%, #2a5c3a 100%); }
.blog-preview-body {
  padding: var(--s5);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-preview-tag {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.18rem 0.55rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s3);
}
.blog-preview-card h3 {
  font-size: 0.98rem;
  line-height: 1.42;
  color: var(--text);
  margin-bottom: var(--s3);
  flex: 1;
  transition: color var(--t-fast);
}
.blog-preview-card:hover h3 { color: var(--primary); }
.blog-preview-meta {
  font-size: 0.73rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-top: auto;
  padding-top: var(--s3);
  border-top: 1px solid var(--border-light);
}

/* Newsletter GDPR
   ============================================================ */
.newsletter-gdpr {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-top: var(--s2);
}
.newsletter-gdpr input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.newsletter-gdpr label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.55;
  cursor: pointer;
}
.newsletter-gdpr label a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.newsletter-gdpr label a:hover { color: var(--accent); }

/* SEO Content Block
   ============================================================ */
.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s10);
}
.seo-block h2 { font-size: 1.3rem; margin-bottom: var(--s4); }
.seo-block p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; }
.seo-extra { display: none; }
.seo-extra.open { display: block; }
.seo-toggle {
  font-size: 0.8rem; font-weight: 600; color: var(--primary);
  cursor: pointer; background: none; border: none;
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s3) 0 0;
  font-family: var(--font-body);
  transition: color var(--t-fast);
}
.seo-toggle:hover { color: var(--primary-hover); }

/* UK Responsive Additions
   ============================================================ */
@media (max-width:1024px) {
  .utility-bar-left { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(3, 1fr); }
  .trust-bar-item:nth-child(3) { border-right: none; }
  .trust-bar-item:nth-child(4) { border-right: 1px solid var(--border-light); }
  .categories-grid-6 { grid-template-columns: repeat(3, 1fr); }
  .editorial-banner-inner { grid-template-columns: 1fr; }
  .editorial-banner-img { max-width: 480px; margin: 0 auto; }
  .blog-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:768px) {
  .utility-bar { display: none; }
  .hero-split { min-height: auto; }
  .hero-split-img { display: none; }
  .hero-split-content { padding: var(--s16) 0 var(--s12); }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-item:nth-child(2) { border-right: none; }
  .trust-bar-item:nth-child(4) { border-right: none; }
  .categories-grid-6 { grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
  .categories-grid-6 .category-card { aspect-ratio: 1; }
  .products-tabs-header { flex-direction: column; align-items: flex-start; }
  .editorial-banner-img { display: none; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .hero-split-ctas .btn { flex: 1; justify-content: center; }
}
@media (max-width:480px) {
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-bar-item { border-right: none; border-bottom: 1px solid var(--border-light); }
  .trust-bar-item:last-child { border-bottom: none; }
  .hero-split-ctas { flex-direction: column; }
  .hero-split-ctas .btn { width: 100%; }
  .categories-grid-6 { grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
}
