/*
Theme Name: SEOGidi
Theme URI: https://seogidi.com
Author: SEOGidi Technologies
Author URI: https://seogidi.com
Description: The official SEOGidi WordPress theme. Mobile-first, WooCommerce + Paystack ready, GDPR compliant, SEO optimised. Brand colours: Gold #F5A623 · Indigo #5B5EA6 · Red #E8231A.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://seogidi.com/terms-and-conditions/
Text Domain: seogidi
Tags: woocommerce, seo, business, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ═══════════════════════════════════════════
   SEOGIDI BRAND TOKENS
   Gold   #F5A623  ← logo "S"
   Indigo #5B5EA6  ← logo "Gidi"
   Red    #E8231A  ← magnifying glass ring
═══════════════════════════════════════════ */
:root {
  --gold:       #F5A623;
  --gold-d:     #C8850F;
  --gold-l:     #FEF6E7;
  --gold-m:     #FDEAC2;
  --ind:        #5B5EA6;
  --ind-d:      #3D4080;
  --ind-deep:   #2A2D6B;
  --ind-l:      #EEEEF9;
  --ind-m:      #D0D1EE;
  --red:        #E8231A;
  --red-l:      #FDECEA;
  --ink:        #0D0D14;
  --ink-2:      #2C2C3A;
  --ink-3:      #5C5C72;
  --ink-4:      #9898B0;
  --bg:         #FFFFFF;
  --bg-2:       #F8F7FF;
  --bg-3:       #F0EFF9;
  --bdr:        rgba(91,94,166,0.13);
  --bdr-2:      rgba(91,94,166,0.07);
  --r:          12px;
  --r-lg:       20px;
  --r-xl:       32px;
  --sh:         0 2px 8px rgba(91,94,166,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --sh-lg:      0 16px 48px rgba(91,94,166,0.16);
  --font:       'Plus Jakarta Sans', sans-serif;
  --mw:         1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
h4 { font-size: 1rem; }
p  { color: var(--ink-2); line-height: 1.75; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--ind); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--ind-d); }
img { display: block; max-width: 100%; height: auto; }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.4rem; }
input, textarea, select, button { font-family: var(--font); }

/* ── LAYOUT ── */
.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
}
.site-main { min-height: 60vh; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

/* ── BUTTONS ── */
.btn, button.btn, a.btn, input[type="submit"].btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-gold  { background: var(--gold); color: var(--ink); }
.btn-gold:hover  { background: var(--gold-d); color: var(--ink); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.4); }
.btn-ind   { background: var(--ind); color: #fff; }
.btn-ind:hover   { background: var(--ind-d); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,94,166,0.35); }
.btn-red   { background: var(--red); color: #fff; }
.btn-red:hover   { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,35,26,0.35); color: #fff; }
.btn-outline { background: transparent; color: var(--ind); border: 2px solid var(--ind); }
.btn-outline:hover { background: var(--ind-l); color: var(--ind); }
.btn-ghost  { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }
.btn-sm { padding: 9px 18px; font-size: 0.845rem; }
.btn-lg { padding: 17px 34px; font-size: 1.025rem; }
.btn-xl { padding: 20px 40px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-gold   { background: var(--gold-m); color: var(--gold-d); }
.badge-ind    { background: var(--ind-l); color: var(--ind-d); }
.badge-red    { background: var(--red-l); color: var(--red); }
.badge-dark   { background: var(--ink); color: #fff; }
.badge-green  { background: #E6F4EC; color: #1A7A42; }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ind);
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: rgba(255,255,255,0.4); }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::before { display: none; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--ink-3); max-width: 560px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── GOLD BAR ── */
.gold-bar { width: 44px; height: 4px; background: var(--gold); border-radius: 2px; margin: 18px 0; }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.8rem; color: var(--ink-3); padding: 14px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--ind); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--ink-4); }
.breadcrumb.on-dark { color: rgba(255,255,255,0.4); }
.breadcrumb.on-dark a { color: var(--gold); }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr-2);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--sh); }
.header-inner {
  display: flex; align-items: center; gap: 8px;
  height: 64px; max-width: var(--mw); margin: 0 auto; padding: 0 24px;
}
.site-logo img { height: 36px; width: auto; display: block; max-width: 140px; }
.primary-nav { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.primary-nav li { position: relative; }
.primary-nav a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 0.87rem; font-weight: 600; color: var(--ink-2);
  transition: all 0.15s; white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current-page-ancestor > a { color: var(--ind); background: var(--ind-l); }
.header-cta { margin-left: 16px; }
.cart-icon-wrap { position: relative; padding: 8px 12px; border-radius: 8px; color: var(--ink-2); font-size: 0.87rem; font-weight: 600; transition: all 0.15s; }
.cart-icon-wrap:hover { background: var(--ind-l); color: var(--ind); }
.cart-count-badge {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: var(--ink);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.62rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; flex-direction: column; gap: 5px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all 0.3s; }
@media (max-width: 900px) {
  .primary-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}
.mobile-nav {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--bg); padding: 24px; flex-direction: column;
  gap: 6px; overflow-y: auto; z-index: 999;
  border-top: 3px solid var(--gold);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block; padding: 14px 20px; border-radius: var(--r);
  font-weight: 600; font-size: 1rem; color: var(--ink); transition: all 0.15s;
}
.mobile-nav a:hover { background: var(--ind-l); color: var(--ind); }
.mobile-nav .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   STATS STRIP (replaces ticker)
══════════════════════════════════════════ */
.stats-strip { background: var(--ink); position: relative; overflow: hidden; }
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, rgba(91,94,166,0.1) 50%, rgba(232,35,26,0.05) 100%);
  pointer-events: none;
}
.stats-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}
.strip-cell {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.strip-cell:last-child { border-right: none; }
.strip-cell::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left;
}
.strip-cell:nth-child(1)::after { background: var(--gold); }
.strip-cell:nth-child(2)::after { background: var(--ind-m); }
.strip-cell:nth-child(3)::after { background: rgba(232,35,26,0.8); }
.strip-cell:nth-child(4)::after { background: var(--gold); }
.strip-cell:hover::after { transform: scaleX(1); }
.strip-num {
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1;
  display: block; margin-bottom: 4px;
}
.strip-cell:nth-child(1) .strip-num { color: var(--gold); }
.strip-cell:nth-child(2) .strip-num { color: var(--ind-m); }
.strip-cell:nth-child(3) .strip-num { color: rgba(232,35,26,0.85); }
.strip-cell:nth-child(4) .strip-num { color: var(--gold); }
.strip-label  { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.38); }
.strip-sub    { font-size: 0.64rem; color: rgba(255,255,255,0.2); margin-top: 3px; }
@media (max-width: 600px) {
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-cell:nth-child(even) { border-right: none; }
  .strip-cell { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero-section {
  background: var(--ink);
  position: relative; overflow: hidden;
  padding: 100px 0 96px;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 65% 30%, rgba(91,94,166,0.25) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 85%, rgba(245,166,35,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 90% 75%, rgba(232,35,26,0.08) 0%, transparent 55%);
}
.hero-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2;
  background: linear-gradient(90deg, var(--gold), var(--ind), var(--red));
}
.hero-section > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3);
  padding: 7px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-pill .blink { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-section h1 { color: #fff; line-height: 1.08; margin-bottom: 22px; }
.hero-section h1 .gold { color: var(--gold); }
.hero-section h1 .red-line { position: relative; display: inline-block; }
.hero-section h1 .red-line::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 3px;
  background: var(--red); border-radius: 2px;
}
.hero-desc { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 40px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num { font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; display: block; }
.hero-stat-num .acc { color: var(--gold); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.42); margin-top: 4px; font-weight: 500; display: block; }
.hero-visual { position: relative; }
.hero-img-frame { border-radius: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.hero-img-frame img { width: 100%; height: 400px; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -24px; left: -32px;
  background: var(--bg); border-radius: var(--r-lg); padding: 18px 22px;
  box-shadow: var(--sh-lg); min-width: 210px; border-top: 3px solid var(--gold);
}
.hero-float-card .fl-label { font-size: 0.72rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.hero-float-card .fl-value { font-size: 2rem; font-weight: 800; color: var(--ind); line-height: 1; }
.hero-float-card .fl-sub { font-size: 0.75rem; color: var(--ink-3); margin-top: 4px; }
.hero-float-badge {
  position: absolute; top: -20px; right: -20px;
  background: var(--red); color: #fff; border-radius: 50%;
  width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; font-size: 0.65rem; font-weight: 700; text-align: center;
  box-shadow: 0 8px 24px rgba(232,35,26,0.4); line-height: 1.3;
  text-transform: uppercase; letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .hero-section { padding: 64px 0 72px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip { padding: 44px 0; border-bottom: 1px solid var(--bdr-2); }
.trust-strip-label { text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-4); margin-bottom: 28px; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { font-size: 0.88rem; font-weight: 700; color: var(--ink-4); opacity: 0.5; transition: opacity 0.2s; }
.trust-logo:hover { opacity: 1; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px; background: var(--bdr); border: 1px solid var(--bdr);
  border-radius: var(--r-lg); overflow: hidden;
}
.service-card { background: var(--bg); padding: 36px 30px; transition: all 0.25s; position: relative; overflow: hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; width:3px; height:0; background:var(--gold); transition:height 0.3s; }
.service-card:hover { background: var(--bg-2); }
.service-card:hover::before { height: 100%; }
.service-icon { width:52px; height:52px; border-radius:14px; background:var(--ind-l); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:18px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════
   PACKAGE CARDS
══════════════════════════════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: start; }
.pkg-card {
  background: var(--bg); border: 1.5px solid var(--bdr);
  border-radius: var(--r-xl); padding: 36px 32px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.pkg-card::after { content:''; position:absolute; top:0; left:0; right:0; height:4px; border-radius:var(--r-xl) var(--r-xl) 0 0; }
.pkg-card.starter::after { background: linear-gradient(90deg, var(--gold), #FBCA60); }
.pkg-card.pro::after    { background: linear-gradient(90deg, var(--ind), var(--red)); }
.pkg-card.elite::after  { background: linear-gradient(90deg, var(--red), var(--ind)); }
.pkg-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.pkg-card.pro { background: var(--ind-deep); border-color: transparent; box-shadow: 0 16px 48px rgba(91,94,166,0.35); }
.pkg-badge { position:absolute; top:24px; right:24px; background:var(--gold); color:var(--ink); font-size:0.68rem; font-weight:800; letter-spacing:0.08em; text-transform:uppercase; padding:4px 12px; border-radius:100px; }
.pkg-tier  { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:8px; color:var(--ink-3); }
.pkg-card.pro .pkg-tier { color:rgba(255,255,255,0.45); }
.pkg-name  { font-size:1.6rem; font-weight:800; margin-bottom:8px; color:var(--ink); }
.pkg-card.pro .pkg-name { color:#fff; }
.pkg-desc  { font-size:0.875rem; color:var(--ink-3); line-height:1.6; margin-bottom:0; }
.pkg-card.pro .pkg-desc { color:rgba(255,255,255,0.5); }
.pkg-price { display:flex; align-items:baseline; gap:6px; margin:24px 0; }
.price-from   { font-size:0.85rem; color:var(--ink-3); }
.price-amount { font-size:2.6rem; font-weight:800; color:var(--ind); }
.pkg-card.pro .price-amount { color:var(--gold); }
.price-period { font-size:0.85rem; color:var(--ink-3); }
.pkg-card.pro .price-from,.pkg-card.pro .price-period { color:rgba(255,255,255,0.4); }
.pkg-features { list-style:none; padding:0; display:flex; flex-direction:column; gap:11px; margin:20px 0 28px; }
.pkg-features li { display:flex; align-items:flex-start; gap:10px; font-size:0.875rem; color:var(--ink-2); }
.pkg-card.pro .pkg-features li { color:rgba(255,255,255,0.78); }
.pkg-check { width:18px; height:18px; border-radius:50%; background:var(--gold-m); color:var(--gold-d); display:flex; align-items:center; justify-content:center; font-size:0.6rem; font-weight:800; flex-shrink:0; margin-top:1px; }
.pkg-card.pro .pkg-check { background:rgba(245,166,35,0.2); color:var(--gold); }
.pkg-note { text-align:center; font-size:0.75rem; color:var(--ink-3); margin-top:10px; }
.pkg-card.pro .pkg-note { color:rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════
   HOW IT WORKS / PROCESS
══════════════════════════════════════════ */
.process-steps { display:flex; flex-direction:column; }
.process-step { display:grid; grid-template-columns:64px 1fr; position:relative; }
.process-step:not(:last-child)::before { content:''; position:absolute; left:31px; top:52px; bottom:-20px; width:2px; background:var(--bdr); }
.step-num { width:40px; height:40px; border-radius:50%; background:var(--ind); color:#fff; font-weight:800; font-size:0.9rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:4px; }
.step-body { padding:4px 0 44px 20px; }
.step-body h3 { font-size:1rem; margin-bottom:8px; }
.step-body p  { font-size:0.88rem; color:var(--ink-3); margin:0; }

/* ══════════════════════════════════════════
   WHY CARDS (dark bg)
══════════════════════════════════════════ */
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.why-card { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08); border-radius:var(--r-lg); padding:32px 28px; transition:all 0.2s; }
.why-card:hover { background:rgba(255,255,255,0.08); }
.why-num { font-size:3rem; font-weight:800; color:rgba(255,255,255,0.07); margin-bottom:12px; line-height:1; }
.why-card h3 { font-size:1rem; color:#fff; margin-bottom:8px; }
.why-card p  { font-size:0.875rem; color:rgba(255,255,255,0.45); margin:0; }
@media (max-width:600px){ .why-grid { grid-template-columns:1fr; } }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testi-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.testi-card { background:var(--bg); border:1.5px solid var(--bdr); border-radius:var(--r-lg); padding:28px; transition:all 0.25s; }
.testi-card:hover { box-shadow:var(--sh-lg); border-color:var(--ind-m); }
.testi-stars { color:var(--gold); font-size:0.9rem; letter-spacing:2px; margin-bottom:14px; }
.testi-text { font-size:0.95rem; line-height:1.75; color:var(--ink-2); font-style:italic; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.author-av { width:40px; height:40px; border-radius:50%; background:var(--ind); color:#fff; font-weight:800; font-size:0.85rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.author-name { font-weight:700; font-size:0.9rem; }
.author-role { font-size:0.78rem; color:var(--ink-3); }

/* ══════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════ */
.page-hero { background:var(--ink); padding:80px 0; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 60% at 70% 40%, rgba(91,94,166,0.2) 0%, transparent 65%); }
.page-hero::after  { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--ind),var(--red)); }
.page-hero > .container { position:relative; z-index:1; }
.page-hero h1 { color:#fff; margin-bottom:14px; }
.page-hero .lead { color:rgba(255,255,255,0.58); font-size:1.05rem; max-width:580px; margin-bottom:0; }

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band { background:var(--ind-deep); padding:72px 0; position:relative; overflow:hidden; text-align:center; }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 50% 80% at 80% 50%,rgba(245,166,35,0.1) 0%,transparent 65%); pointer-events:none; }
.cta-band > .container { position:relative; z-index:1; }
.cta-band h2 { color:#fff; max-width:560px; margin:0 auto 12px; }
.cta-band p  { color:rgba(255,255,255,0.5); max-width:480px; margin:0 auto 28px; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

/* ══════════════════════════════════════════
   BLOG CARDS
══════════════════════════════════════════ */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.blog-card { border-radius:var(--r-lg); overflow:hidden; border:1.5px solid var(--bdr); transition:all 0.25s; }
.blog-card:hover { box-shadow:var(--sh-lg); transform:translateY(-3px); border-color:var(--ind-m); }
.blog-card-img { height:180px; overflow:hidden; background:var(--bg-3); }
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.blog-card:hover .blog-card-img img { transform:scale(1.04); }
.blog-body { padding:24px; }
.blog-cat { font-size:0.72rem; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--ind); margin-bottom:10px; }
.blog-card h3 { font-size:1rem; line-height:1.45; margin-bottom:10px; }
.blog-card p  { font-size:0.85rem; color:var(--ink-3); line-height:1.6; margin:0; }
.blog-meta { margin-top:14px; font-size:0.78rem; color:var(--ink-4); display:flex; gap:16px; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; }
@media(max-width:900px){ .contact-grid{grid-template-columns:1fr;gap:48px;} }
.contact-method { display:flex; align-items:flex-start; gap:16px; padding:18px; background:var(--bg-2); border-radius:var(--r); margin-bottom:14px; transition:all 0.2s; }
.contact-method:hover { background:var(--ind-l); }
.contact-icon { width:40px; height:40px; border-radius:10px; background:var(--ind); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-method h4 { font-size:0.78rem; color:var(--ink-3); margin-bottom:4px; font-weight:600; }
.contact-method a, .contact-method p { font-weight:600; color:var(--ink); font-size:0.95rem; margin:0; }
.form-card { background:var(--bg); border:1.5px solid var(--bdr); border-radius:var(--r-xl); padding:40px 36px; box-shadow:var(--sh); border-top:4px solid var(--ind); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media(max-width:600px){ .form-row{grid-template-columns:1fr;} }
.form-group { display:flex; flex-direction:column; gap:7px; margin-bottom:16px; }
.form-group label { font-size:0.82rem; font-weight:700; color:var(--ink-2); }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:12px 16px; border:1.5px solid var(--bdr);
  border-radius:var(--r); font-family:var(--font); font-size:0.94rem;
  color:var(--ink); background:var(--bg); transition:border-color 0.2s; outline:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--ind); box-shadow:0 0 0 3px var(--ind-l); }
.form-group textarea { min-height:120px; resize:vertical; }
.form-note { font-size:0.78rem; color:var(--ink-3); margin-bottom:20px; }

/* ══════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════ */
.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--bdr-2); }
.faq-trigger {
  width:100%; background:none; border:none;
  display:flex; justify-content:space-between; align-items:center;
  padding:22px 0; cursor:pointer; text-align:left;
  font-family:var(--font); font-size:0.975rem; font-weight:700;
  color:var(--ink); gap:16px; transition:color 0.2s;
}
.faq-trigger:hover { color:var(--ind); }
.faq-icon { width:28px; height:28px; border-radius:50%; border:2px solid var(--bdr); flex-shrink:0; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--ink-3); transition:all 0.3s; }
.faq-item.open .faq-icon { background:var(--gold); border-color:var(--gold); color:var(--ink); transform:rotate(45deg); }
.faq-item.open .faq-trigger { color:var(--ind); }
.faq-body { display:none; padding-bottom:20px; font-size:0.95rem; color:var(--ink-3); line-height:1.75; }
.faq-item.open .faq-body { display:block; }

/* ══════════════════════════════════════════
   NOTICE BOXES
══════════════════════════════════════════ */
.notice { background:var(--gold-l); border-left:4px solid var(--gold); padding:14px 18px; border-radius:0 var(--r) var(--r) 0; font-size:0.9rem; color:var(--ink-2); }
.notice-ind { background:var(--ind-l); border-left-color:var(--ind); }

/* ══════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
══════════════════════════════════════════ */
.woocommerce-breadcrumb { padding: 14px 0; font-size: 0.8rem; color: var(--ink-3); }
.woocommerce-breadcrumb a { color: var(--ind); font-weight: 600; }
/* Product page */
.woocommerce div.product { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; padding: 48px 0; }
@media(max-width:900px){ .woocommerce div.product { grid-template-columns:1fr; } }
.woocommerce div.product .woocommerce-product-gallery { border-radius: var(--r-xl); overflow: hidden; }
.woocommerce div.product .summary { }
.woocommerce div.product h1.product_title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.woocommerce div.product .price { font-size: 2.4rem; font-weight: 800; color: var(--ind); display: block; margin-bottom: 20px; }
.woocommerce div.product .price del { color: var(--ink-4); font-size: 1.2rem; text-decoration: line-through; font-weight: 400; }
.woocommerce div.product .price ins { text-decoration: none; }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 1.05rem; color: var(--ink-3); margin-bottom: 28px; line-height: 1.7; }
.woocommerce div.product form.cart { margin-bottom: 24px; }
.woocommerce div.product form.cart .qty { width: 64px; height: 44px; border: 1.5px solid var(--bdr); border-radius: var(--r); text-align: center; font-family: var(--font); font-size: 1rem; font-weight: 700; color: var(--ink); }
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-family: var(--font) !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  padding: 14px 28px !important;
  font-size: 0.95rem !important;
  border: none !important;
  transition: all 0.22s !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold-d) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(245,166,35,0.4) !important;
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--ind) !important;
  color: #fff !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover { background: var(--ind-d) !important; box-shadow: 0 8px 24px rgba(91,94,166,0.35) !important; }
/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 2px solid var(--bdr-2); display: flex; gap: 0; list-style: none; padding: 0; margin: 0 0 32px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: none; border: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { display: block; padding: 14px 22px; font-weight: 700; color: var(--ink-3); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 0.2s; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ind); border-bottom-color: var(--ind); }
/* Cart */
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table th { font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); padding: 12px 16px; border-bottom: 2px solid var(--bdr); text-align: left; }
.woocommerce table.shop_table td { padding: 20px 16px; border-bottom: 1px solid var(--bdr-2); vertical-align: middle; }
.woocommerce table.shop_table .product-name a { font-weight: 700; color: var(--ink); }
.woocommerce table.shop_table .product-price, .woocommerce table.shop_table .product-subtotal { font-weight: 800; color: var(--ind); }
.woocommerce .cart-collaterals { margin-top: 40px; }
.woocommerce .cart_totals { background: var(--bg-2); border-radius: var(--r-xl); padding: 28px; border: 1.5px solid var(--bdr); }
.woocommerce .cart_totals h2 { font-size: 1.1rem; margin-bottom: 20px; }
/* Checkout */
.woocommerce-checkout #order_review { background: var(--bg-2); border-radius: var(--r-xl); padding: 28px; border: 1.5px solid var(--bdr); }
.woocommerce form .form-row label { font-size: 0.82rem; font-weight: 700; color: var(--ink-2); display: block; margin-bottom: 6px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--bdr);
  border-radius: var(--r); font-family: var(--font); font-size: 0.94rem;
  color: var(--ink); background: var(--bg); transition: border-color 0.2s; outline: none;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus { border-color: var(--ind); box-shadow: 0 0 0 3px var(--ind-l); }
/* Notice / messages */
.woocommerce-message, .woocommerce-info { background: var(--ind-l); border-left-color: var(--ind); border-radius: 0 var(--r) var(--r) 0; padding: 14px 18px; font-size: 0.9rem; }
.woocommerce-error { background: var(--red-l); border-left-color: var(--red); border-radius: 0 var(--r) var(--r) 0; padding: 14px 18px; font-size: 0.9rem; }
/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation { background: var(--bg-2); border-radius: var(--r-lg); padding: 8px; border: 1px solid var(--bdr); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; padding: 0; margin: 0; }
.woocommerce-account .woocommerce-MyAccount-navigation li a { display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: var(--r); font-size: 0.9rem; font-weight: 600; color: var(--ink-2); transition: all 0.15s; }
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a { background: var(--ind); color: #fff; }
/* Ratings */
.star-rating span::before { color: var(--gold); }
.woocommerce .star-rating { color: var(--gold); }

/* ══════════════════════════════════════════
   GDPR CONSENT BANNER
══════════════════════════════════════════ */
.consent-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(13,13,20,0.72);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 24px; transition: opacity 0.4s;
}
.consent-overlay.hidden { opacity: 0; pointer-events: none; }
.consent-box {
  background: var(--bg); border-radius: var(--r-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  max-width: 860px; width: 100%;
  border-top: 4px solid var(--gold); overflow: hidden;
}
.consent-main { padding: 28px 32px; }
.consent-title { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.consent-text  { font-size: 0.82rem; color: var(--ink-3); line-height: 1.65; max-width: 580px; }
.consent-text a { color: var(--ind); text-decoration: underline; text-underline-offset: 2px; }
.consent-btns  { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.consent-expanded { display: none; background: var(--bg-2); border-top: 1px solid var(--bdr-2); padding: 24px 32px; }
.consent-expanded.open { display: block; }
.consent-toggles { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; margin-top: 16px; }
.consent-toggle-row { display: flex; align-items: flex-start; gap: 12px; padding: 14px; background: var(--bg); border-radius: var(--r); border: 1px solid var(--bdr); }
.consent-toggle-info h4 { font-size: 0.82rem; font-weight: 700; margin-bottom: 3px; }
.consent-toggle-info p  { font-size: 0.74rem; color: var(--ink-3); line-height: 1.5; margin: 0; }
.toggle-pill { flex-shrink: 0; width: 40px; height: 22px; background: var(--bdr); border-radius: 100px; border: none; cursor: pointer; position: relative; transition: background 0.25s; }
.toggle-pill.on { background: var(--gold); }
.toggle-pill.locked { background: var(--ind); cursor: not-allowed; opacity: 0.7; }
.toggle-pip { width: 16px; height: 16px; background: #fff; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: transform 0.25s; pointer-events: none; }
.toggle-pill.on .toggle-pip { transform: translateX(18px); }
.flags-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--bdr-2); }
.flag-badge { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 700; color: var(--ink-3); background: var(--bg); border: 1px solid var(--bdr); padding: 4px 10px; border-radius: 100px; }
#cookieReopen {
  position: fixed; bottom: 24px; left: 24px; z-index: 8000;
  background: var(--bg); border: 1.5px solid var(--bdr); border-radius: 100px;
  padding: 7px 14px; font-family: var(--font); font-size: 0.72rem; font-weight: 700;
  color: var(--ink-3); cursor: pointer; box-shadow: var(--sh);
  display: none; align-items: center; gap: 6px;
}

/* ══════════════════════════════════════════
   COMPLIANCE STRIP
══════════════════════════════════════════ */
.compliance-strip { background: var(--bg-2); border-top: 1px solid var(--bdr-2); padding: 14px 0; }
.compliance-inner { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.compliance-badge { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 700; color: var(--ink-3); padding: 4px 11px; border: 1px solid var(--bdr); border-radius: 100px; background: var(--bg); }

/* ══════════════════════════════════════════
   STICKY BAR + BACK TO TOP
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(13,13,20,0.97); backdrop-filter: blur(16px);
  padding: 14px 24px; border-top: 2px solid var(--gold);
  display: flex; justify-content: center; align-items: center; gap: 20px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }
.sticky-cta .dismiss { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1.2rem; padding: 0 0 0 12px; }
.back-top {
  position: fixed; bottom: 80px; right: 24px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ind); color: #fff; border: none;
  display: none; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; box-shadow: 0 4px 16px rgba(91,94,166,0.4);
  transition: all 0.2s;
}
.back-top.show { display: flex; }
.back-top:hover { background: var(--gold); color: var(--ink); transform: translateY(-3px); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer { background: var(--ink); padding: 72px 0 0; }
.footer-gradient { height: 2px; background: linear-gradient(90deg, var(--gold), var(--ind), var(--red)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 56px 0; }
@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;gap:32px;} }
@media(max-width:600px){ .footer-grid{grid-template-columns:1fr;} }
.footer-logo {
  height: auto;
  width: 160px;
  max-width: 160px;
  display: block;
  object-fit: contain;
  opacity: 0.88;
  margin-bottom: 16px;
}
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.42); line-height: 1.75; max-width: 270px; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.42); margin-bottom: 8px; }
.footer-contact-item a { color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.social-btn { width: 34px; height: 34px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; color: rgba(255,255,255,0.4); transition: all 0.2s; text-decoration: none; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer-col h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.855rem; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links a.highlight { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 0.78rem; }
.footer-regions { display: flex; gap: 7px; flex-wrap: wrap; }
.region-tag { font-size: 0.68rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.region-ng { background: rgba(245,166,35,0.1); color: rgba(245,166,35,0.7); }
.region-af { background: rgba(91,94,166,0.15); color: rgba(91,94,166,0.8); }
.region-em { background: rgba(232,35,26,0.1); color: rgba(232,35,26,0.6); }
.region-uk { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.32); }
.cookie-settings-btn { background: none; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.35); font-size: 0.72rem; font-weight: 700; padding: 5px 12px; border-radius: 100px; cursor: pointer; font-family: var(--font); transition: all 0.2s; margin-top: 14px; }
.cookie-settings-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.prose h2 { font-size: 1.25rem; color: var(--ind); margin: 44px 0 14px; padding-top: 12px; border-top: 1px solid var(--bdr-2); }
.prose h2:first-of-type { margin-top: 0; border-top: none; }
.prose p,.prose li { font-size: 0.94rem; color: var(--ink-2); line-height: 1.82; }
.prose ul,.prose ol { margin-bottom: 14px; }
.prose a { color: var(--ind); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose .highlight-box { background: var(--ind-l); border: 1px solid var(--ind-m); border-radius: var(--r-lg); padding: 24px 28px; margin: 28px 0; }
.prose .highlight-box h3 { margin-top: 0; color: var(--ind-d); font-size: 0.95rem; }
.prose .highlight-box p { font-size: 0.88rem; margin-bottom: 0; color: var(--ind-d); }
.prose .gold-box { background: var(--gold-l); border: 1px solid var(--gold-m); border-radius: var(--r-lg); padding: 24px 28px; margin: 28px 0; }
.prose .gold-box p { font-size: 0.88rem; margin-bottom: 0; color: var(--gold-d); }

/* ══════════════════════════════════════════
   PRODUCT PAGE — RESPONSIVE FIXES
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .prod-page-grid {
    grid-template-columns: 1fr !important;
  }
  .prod-buy-box-sticky {
    position: static !important;
  }
}

/* WooCommerce notices styled */
.woocommerce-message  { border-left: 4px solid var(--gold) !important; background: var(--gold-l) !important; color: var(--gold-d) !important; padding: 14px 18px !important; border-radius: 0 var(--r) var(--r) 0 !important; }
.woocommerce-error    { border-left: 4px solid var(--red) !important; background: var(--red-l) !important; }
.woocommerce-info     { border-left: 4px solid var(--ind) !important; background: var(--ind-l) !important; color: var(--ind-d) !important; }

/* Product image gallery */
.woocommerce div.product div.images { border-radius: var(--r-xl); overflow: hidden; }
.woocommerce div.product div.images img { border-radius: var(--r-xl); }

/* Star ratings */
.woocommerce .star-rating::before { color: var(--gold); }
.woocommerce .star-rating span::before { color: var(--gold); }

/* Review form */
.woocommerce #reviews #reply-title { font-size: 1rem; font-weight: 800; }
.woocommerce #review_form .comment-form-rating { margin-bottom: 16px; }
.woocommerce #review_form .stars a { color: var(--gold); font-size: 1.2rem; }

/* Cart/Checkout */
.woocommerce-cart table.cart td.actions .coupon .input-text { border: 1.5px solid var(--bdr); border-radius: var(--r); padding: 10px 14px; font-family: var(--font); }
.woocommerce-checkout .woocommerce-checkout-payment { background: var(--bg-2); border-radius: var(--r-lg); padding: 24px; border: 1px solid var(--bdr); }
.woocommerce-checkout .payment_method_paystack label img { height: 28px; width: auto; }

/* Product archive / shop */
.woocommerce ul.products li.product { border: 1.5px solid var(--bdr); border-radius: var(--r-xl); padding: 24px; transition: all .25s; overflow: hidden; }
.woocommerce ul.products li.product:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.woocommerce ul.products li.product .price { font-size: 1.4rem; font-weight: 800; color: var(--ind); }
.woocommerce ul.products li.product a.button { background: var(--gold) !important; color: var(--ink) !important; border-radius: 100px !important; }

/* My account */
.woocommerce-account .woocommerce-MyAccount-content { padding: 0 0 0 32px; }
@media (max-width: 768px) { .woocommerce-account .woocommerce-MyAccount-content { padding: 0; } }
