/* ============================================================
   DashE — DASH E-Commerce Platform
   Commercial retail aesthetic with DASH brand palette
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=Playfair+Display:wght@400;600;700&display=swap');

:root {
  /* DASH palette — retail twist */
  --navy: #1B3A5C;
  --navy-dark: #122842;
  --navy-light: #2A5580;
  --gold: #D4A843;
  --gold-light: #E8C97A;
  --gold-pale: #FDF6E9;
  --blue: #2E5FA3;
  --blue-light: #4A7DC4;

  /* Neutrals */
  --bg: #FAFAF8;
  --bg-card: #FFFFFF;
  --bg-warm: #F7F5F0;
  --text: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --border: #E5E2DA;
  --border-light: #F0EDE6;

  /* Status */
  --green: #2D8B55;
  --green-light: #E8F5EC;
  --red: #C0392B;
  --red-light: #FDECEB;
  --orange: #E67E22;

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  /* Spacing */
  --container: 1200px;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(27,58,92,0.06);
  --shadow: 0 4px 16px rgba(27,58,92,0.08);
  --shadow-lg: 0 8px 32px rgba(27,58,92,0.12);
  --shadow-gold: 0 4px 20px rgba(212,168,67,0.2);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

img { max-width: 100%; display: block; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-top {
  background: var(--navy-dark);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  letter-spacing: 0.05em;
}

.header-top a { color: var(--gold-light); }

.header-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  text-decoration: none;
  cursor: pointer;
}

.logo-dash {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.logo-e {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.logo-tag {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-left: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  align-self: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  cursor: pointer;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.cart-btn {
  position: relative;
  background: none;
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.cart-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-badge {
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
}

.cart-badge.empty { display: none; }

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, #0D1B2A 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,95,163,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,168,67,0.15);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(212,168,67,0.2);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .gold { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,168,67,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-dark); }

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-block { width: 100%; justify-content: center; }

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */

.section { padding: 72px 24px; }
.section-warm { background: var(--bg-warm); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
}

.container { max-width: var(--container); margin: 0 auto; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.category-card:hover::after { transform: scaleX(1); }

.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}

.category-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.cat-count {
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img .img-icon {
  font-size: 48px;
  opacity: 0.3;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-badge.sale { background: var(--red); color: #fff; }
.product-badge.specialist { background: var(--navy-dark); color: var(--gold); }
.product-badge.legal { background: var(--red); color: #fff; }

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card .desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-current {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.price-original {
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn { flex: 1; justify-content: center; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */

.product-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px;
}

.pd-breadcrumb {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pd-breadcrumb a { color: var(--text-mid); }
.pd-breadcrumb span { margin: 0 8px; }

.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pd-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pd-image .img-icon { font-size: 80px; opacity: 0.2; }

.pd-info h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.2;
}

.pd-delivery-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.tag-digital { background: #E8F5EC; color: #2D8B55; }
.tag-service { background: #EAF0FA; color: var(--blue); }
.tag-dcc { background: var(--gold-pale); color: #9A7520; }

.pd-price-block {
  margin-bottom: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.pd-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
}

.pd-price .original {
  font-size: 20px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 12px;
  font-weight: 400;
}

.pd-pricing-note {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 8px;
  font-style: italic;
}

.pd-description {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pd-features {
  list-style: none;
  margin-bottom: 28px;
}

.pd-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

.pd-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pd-qty label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition);
}

.qty-control button:hover { background: var(--border); }

.qty-control input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
}

.pd-actions { display: flex; gap: 12px; margin-bottom: 24px; }

.pd-crosssell {
  background: var(--gold-pale);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pd-crosssell .cs-icon { font-size: 28px; }

.pd-crosssell .cs-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.pd-crosssell .cs-text p {
  font-size: 13px;
  color: var(--text-mid);
}

/* ============================================================
   CART / CHECKOUT
   ============================================================ */

.cart-page, .checkout-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.cart-page h1, .checkout-page h1 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 32px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0.3;
}

.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 16px; color: var(--navy); margin-bottom: 4px; }
.cart-item-info .delivery { font-size: 12px; color: var(--text-light); }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  min-width: 100px;
  text-align: right;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color var(--transition);
}
.cart-remove:hover { color: var(--red); }

.cart-summary {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 24px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-mid);
}

.cart-summary-row.total {
  border-top: 2px solid var(--navy);
  margin-top: 12px;
  padding-top: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.cart-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* Checkout form */
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,95,163,0.1);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   ORDER COMPLETE
   ============================================================ */

.order-complete {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 24px;
}

.order-complete .check-icon {
  width: 80px;
  height: 80px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
}

.order-complete h1 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 12px;
}

.order-complete p { font-size: 16px; color: var(--text-mid); }

.order-id {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: 0.05em;
}

/* ============================================================
   SURVEY ENQUIRY FORM
   ============================================================ */

.enquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.enquiry-modal.active { opacity: 1; visibility: visible; }

.enquiry-modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
}

.enquiry-modal.active .enquiry-modal-content { transform: translateY(0); }

.enquiry-modal h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.enquiry-modal .subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px 24px;
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom .ecosystem a {
  color: var(--gold);
  margin: 0 8px;
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 500;
  z-index: 300;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--green); }
.toast.error { border-left: 4px solid var(--red); }

/* ============================================================
   EMPTY STATE
   ============================================================ */

.empty-state {
  text-align: center;
  padding: 60px 24px;
}

.empty-state .empty-icon {
  font-size: 60px;
  margin-bottom: 20px;
  opacity: 0.3;
}

.empty-state h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.empty-state p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */

.features-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px;
}

.features-strip .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

.feature-item .fi-icon { font-size: 22px; }

/* ============================================================
   LOADING
   ============================================================ */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .header-main { height: 60px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 16px 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .hero { padding: 48px 24px; }
  .pd-grid { grid-template-columns: 1fr; gap: 32px; }
  .pd-image { height: 250px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cart-item { flex-wrap: wrap; }
  .cart-item-price { min-width: auto; }
  .logo-tag { display: none; }
  .features-strip .container { gap: 24px; }
  .pd-actions { flex-direction: column; }
  .cart-actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr; }
}
