/* ============================================================
   NOVELSPROUT — MAIN STYLESHEET
   Dark premium theme | WooCommerce compatible
   ============================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --bg:        #080808;
  --bg2:       #111111;
  --bg3:       #181818;
  --border:    #242424;
  --border2:   #2e2e2e;
  --text:      #f0ede8;
  --text-muted:#888880;
  --text-dim:  #555550;
  --green:     #40916c;
  --green-dark:#2d6a4f;
  --green-pale:#0d2b1f;
  --green-glow:rgba(64,145,108,0.15);
  --gold:      #c9a84c;
  --gold-light:#e9c46a;
  --rust:      #c0563a;
  --white:     #ffffff;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.6);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition: all 0.2s ease;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--alt { background: var(--bg2); }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { color: var(--text-muted); line-height: 1.75; }

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.section-title { margin-bottom: 14px; }
.section-sub { max-width: 520px; margin-bottom: 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: #fff;
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border2);
}
.btn--outline:hover { border-color: var(--text); color: var(--white); }
.btn--gold {
  background: var(--gold);
  color: #000;
}
.btn--gold:hover { background: var(--gold-light); }
.btn--ghost {
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--border); }
.btn--sm { padding: 8px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--green { background: var(--green-pale); color: var(--green); border: 1px solid var(--green-dark); }
.badge--rust { background: rgba(192,86,58,0.15); color: #e07a5f; border: 1px solid rgba(192,86,58,0.3); }
.badge--gold { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 1px solid rgba(201,168,76,0.3); }

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--green); }
.form-control::placeholder { color: var(--text-dim); }
textarea.form-control { min-height: 120px; resize: vertical; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 100%; gap: 12px;
}
.site-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.site-logo img {
  height: 34px; width: 34px;
  object-fit: contain;
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.site-logo .logo-text span { color: var(--green); }

/* Desktop Nav */
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  padding: 7px 13px; font-size: .84rem; font-weight: 500;
  color: var(--text-muted); border-radius: 8px; transition: var(--transition);
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--white); background: var(--bg3); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; }

/* Cart in header — always visible */
.header-cart {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text-muted); transition: var(--transition); cursor: pointer;
}
.header-cart:hover { border-color: var(--green); color: var(--green); }
.cart-bubble {
  position: absolute; top: -6px; right: -6px;
  background: var(--green); color: #fff;
  font-size: .6rem; font-weight: 800; min-width: 18px; height: 18px;
  border-radius: 100px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--bg); line-height: 1;
}

/* Hamburger toggle — always visible */
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 9px 10px;
  cursor: pointer; color: var(--text); width: 40px; height: 40px;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE DRAWER ── */
.drawer-overlay {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,.7); backdrop-filter: blur(4px);
}
.drawer-overlay.open { display: block; }

.mobile-drawer {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: min(340px, 88vw); z-index: 999;
  background: var(--bg2); border-left: 1px solid var(--border);
  transition: right .3s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow: hidden;
}
.mobile-drawer.open { right: 0; }

.mobile-drawer-inner {
  display: flex; flex-direction: column; height: 100%; overflow-y: auto;
}
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--bg2); z-index: 1;
}
.mobile-drawer-logo {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white);
}
.mobile-drawer-logo span { color: var(--green); }
.drawer-close {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 8px;
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-muted); font-size: 1rem; transition: var(--transition);
}
.drawer-close:hover { color: var(--white); border-color: var(--border2); }

.mobile-drawer-nav {
  display: flex; flex-direction: column; padding: 12px 16px; gap: 4px; flex: 1;
}
.mobile-drawer-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 500; color: var(--text);
  transition: var(--transition); border: 1px solid transparent;
}
.mobile-drawer-nav a:hover { background: var(--bg3); border-color: var(--border); color: var(--white); }

.mobile-drawer-footer {
  padding: 16px 20px; border-top: 1px solid var(--border);
  position: sticky; bottom: 0; background: var(--bg2);
}

/* ── FLOATING CART BUTTON ── */
.floating-cart {
  position: fixed; bottom: 24px; right: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(64,145,108,.5);
  transition: transform .2s, box-shadow .2s; cursor: pointer;
  border: none; text-decoration: none;
}
.floating-cart:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(64,145,108,.7); }
.floating-cart-count {
  position: absolute; top: -4px; right: -4px;
  background: #fff; color: var(--green);
  font-size: .65rem; font-weight: 800; min-width: 20px; height: 20px;
  border-radius: 100px; display: flex; align-items: center; justify-content: center;
  padding: 0 4px; border: 2px solid var(--green);
}

/* Search overlay — keep for compatibility */
.search-overlay { display: none; }
.search-overlay.open { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #030303;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: .02em;
}
.footer-brand .logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--white);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.85rem; line-height: 1.75;
  color: var(--text-dim); max-width: 300px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px;
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.78rem;
  transition: var(--transition); font-weight: 600;
}
.social-link:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-2px); }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.87rem; color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-disclaimer {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 32px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.78rem; color: var(--text-dim);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--white); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  min-height: 90vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(64,145,108,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); color: var(--green);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--green-dark);
  margin-bottom: 24px;
}
.hero-title { margin-bottom: 20px; }
.hero-title em {
  font-style: normal; color: var(--green);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  border-radius: 1px;
}
.hero-desc { font-size: 1.05rem; max-width: 480px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat strong {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800; color: var(--white);
  display: block; line-height: 1;
}
.hero-stat span { font-size: 0.78rem; color: var(--text-dim); margin-top: 4px; display: block; }

/* Hero Visual Cards */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.preview-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.preview-card:hover { border-color: var(--green); transform: translateX(8px); }
.preview-card:nth-child(2) { margin-left: 24px; }
.preview-card:nth-child(3) { margin-left: 12px; }
.preview-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  background: var(--green-pale);
}
.preview-meta h4 { font-size: 0.9rem; margin-bottom: 3px; color: var(--white); }
.preview-meta p { font-size: 0.76rem; color: var(--text-dim); margin: 0; }
.preview-price { margin-left: auto; text-align: right; }
.preview-price .was { font-size: 0.72rem; color: var(--text-dim); text-decoration: line-through; }
.preview-price .now { font-size: 1rem; font-weight: 700; color: var(--green); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; color: var(--text-muted);
}
.trust-item svg { color: var(--green); }

/* ============================================================
   SECTION: WHY DIFFERENT
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 20px;
}
.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--green); transform: translateY(-3px); box-shadow: 0 8px 32px var(--green-glow); }
.why-icon { font-size: 1.8rem; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.why-card p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   SECTION: CATEGORIES
   ============================================================ */
.cats-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px;
}
.cats-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 18px;
}
.cat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.cat-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 10px 36px var(--green-glow); }
.cat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cat-card-body { padding: 18px; }
.cat-card h3 {
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 600; color: var(--white);
  margin-bottom: 5px; line-height: 1.35;
}
.cat-card span { font-size: 0.76rem; color: var(--text-dim); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card-img {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img .discount-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--rust); color: #fff;
  font-size: 0.68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 100px;
}
.product-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 0.7rem; color: var(--green); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.product-card-body h4 {
  font-size: 0.9rem; font-weight: 600; color: var(--white);
  margin-bottom: 12px; line-height: 1.4; flex: 1;
}
.product-price-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.product-price-now { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.product-price-was { font-size: 0.8rem; color: var(--text-dim); text-decoration: line-through; }
.product-add-btn {
  width: 100%; background: transparent;
  border: 1px solid var(--border2);
  border-radius: 8px; padding: 10px;
  color: var(--text-muted); font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.product-add-btn:hover { background: var(--green); border-color: var(--green); color: #fff; }

/* ============================================================
   SHOP PAGE
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.shop-sidebar {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 90px;
}
.sidebar-section { margin-bottom: 28px; }
.sidebar-section:last-child { margin-bottom: 0; }
.sidebar-section h4 {
  font-size: 0.72rem; font-weight: 600; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 14px;
}
.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer; padding: 4px 0;
  transition: color 0.2s;
}
.filter-item:hover { color: var(--white); }
.filter-item input[type="checkbox"] { accent-color: var(--green); width: 15px; height: 15px; }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type="range"] { accent-color: var(--green); width: 100%; }
.price-labels { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-dim); }

.shop-main {}
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap; gap: 12px;
}
.shop-count { font-size: 0.85rem; color: var(--text-dim); }
.shop-sort {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  color: var(--text); font-size: 0.85rem;
  cursor: pointer; outline: none;
}
.shop-sort:focus { border-color: var(--green); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover, .page-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.single-product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-img {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--bg2);
}
.product-main-img img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; }
.product-thumb {
  width: 72px; height: 72px; border-radius: 10px;
  border: 1px solid var(--border); overflow: hidden;
  cursor: pointer; transition: border-color 0.2s;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--green); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info {}
.product-info .product-category {
  display: inline-block; margin-bottom: 12px;
  font-size: 0.76rem; font-weight: 600; color: var(--green);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--green-pale); padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--green-dark);
}
.product-info h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 18px; }
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.stars { color: var(--gold-light); font-size: 0.9rem; }
.rating-count { font-size: 0.8rem; color: var(--text-dim); }
.product-price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 24px;
}
.product-price .price-now {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--white);
}
.product-price .price-was {
  font-size: 1rem; color: var(--text-dim); text-decoration: line-through;
}
.product-price .price-save {
  background: rgba(192,86,58,0.15); color: #e07a5f;
  font-size: 0.8rem; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid rgba(192,86,58,0.3);
}
.product-desc { margin-bottom: 28px; }
.product-desc p { font-size: 0.92rem; line-height: 1.8; }
.product-features { margin-bottom: 28px; }
.product-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: var(--text-muted);
  padding: 6px 0; border-bottom: 1px solid var(--border);
}
.product-features li:last-child { border: none; }
.product-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.buy-box {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.buy-box-price {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.buy-box .price-big { font-size: 1.8rem; font-weight: 800; color: var(--white); font-family: var(--font-display); }
.buy-box .price-orig { font-size: 0.9rem; color: var(--text-dim); text-decoration: line-through; }
.buy-guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-dim);
  margin-top: 14px;
}

/* ============================================================
   CART
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.cart-table { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cart-table-header {
  display: grid; grid-template-columns: 1fr 80px 100px 40px;
  gap: 16px; padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600;
  color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase;
}
.cart-row {
  display: grid; grid-template-columns: 1fr 80px 100px 40px;
  gap: 16px; padding: 16px 20px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.cart-row:last-child { border: none; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product-img {
  width: 56px; height: 56px; border-radius: 8px;
  overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-name { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.cart-product-cat { font-size: 0.75rem; color: var(--text-dim); }
.cart-qty { font-size: 0.9rem; color: var(--text-muted); }
.cart-price { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.cart-remove {
  background: none; border: 1px solid var(--border); border-radius: 6px;
  width: 28px; height: 28px; color: var(--text-dim);
  cursor: pointer; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cart-remove:hover { border-color: var(--rust); color: #e07a5f; }

.cart-summary {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 90px;
}
.cart-summary h3 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.summary-row:last-of-type { border: none; }
.summary-row.total { font-size: 1.1rem; font-weight: 700; color: var(--white); padding-top: 16px; }
.summary-row span:last-child { color: var(--white); font-weight: 500; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 28px; align-items: start; }
.checkout-form-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}
.checkout-form-wrap h2 { font-size: 1.2rem; margin-bottom: 24px; color: var(--white); font-family: var(--font-body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkout-order-summary {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  position: sticky; top: 90px;
}
.checkout-order-summary h3 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.order-item { display: flex; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: center; }
.order-item:last-of-type { border: none; }
.order-item-img { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.order-item-img img { width: 100%; height: 100%; object-fit: cover; }
.order-item-name { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.order-item-price { margin-left: auto; font-size: 0.9rem; font-weight: 700; color: var(--white); flex-shrink: 0; }
.instamojo-notice {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-pale); border: 1px solid var(--green-dark);
  border-radius: var(--radius); padding: 12px 16px;
  font-size: 0.82rem; color: var(--green);
  margin-bottom: 20px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.blog-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; display: block; }
.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 placeholder when no featured image */
.blog-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg3) 0%, #0d2b1f 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.blog-placeholder-icon { font-size: 2.4rem; }
.blog-placeholder-cat {
  font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green);
}
.blog-card-body { padding: 18px; }
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.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-card-body { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; font-size: 0.75rem; color: var(--text-dim); }
.blog-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-pale); padding: 2px 8px; border-radius: 4px;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--white); line-height: 1.3; }
.blog-card-body p { font-size: 0.84rem; margin-bottom: 16px; }
.read-more { font-size: 0.82rem; font-weight: 600; color: var(--green); }
.read-more:hover { color: var(--white); }

/* Single Post */
.post-content { max-width: 720px; margin: 0 auto; }
.post-header { text-align: center; margin-bottom: 48px; }
.post-header h1 { margin-bottom: 20px; }
.post-header .post-meta { font-size: 0.82rem; color: var(--text-dim); }
.post-body h2,h3,h4 { color: var(--white); margin: 32px 0 14px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 18px; }
.post-body li { color: var(--text-muted); margin-bottom: 6px; font-size: 0.95rem; }
.post-body blockquote {
  border-left: 3px solid var(--green); padding: 16px 20px;
  background: var(--bg2); border-radius: 0 8px 8px 0;
  margin: 24px 0; font-style: italic; color: var(--text);
}
.post-body img { border-radius: var(--radius); margin: 28px 0; }
.post-body a { color: var(--green); }
.post-body a:hover { text-decoration: underline; }
.post-body code {
  background: var(--bg3); color: var(--gold-light);
  padding: 2px 6px; border-radius: 4px; font-size: 0.85em;
}
.post-body pre {
  background: var(--bg3); padding: 20px; border-radius: var(--radius);
  overflow-x: auto; margin: 20px 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.about-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-img-caption {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  border-radius: 10px; padding: 10px 14px;
  font-size: 0.78rem; color: var(--text);
}
.about-text h2 { margin-bottom: 20px; }
.about-text p { margin-bottom: 18px; }
.value-list { margin-top: 28px; }
.value-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.value-item:last-child { border: none; }
.value-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.value-item h4 { font-size: 0.92rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; margin: 0; }

/* ============================================================
   FAQs
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--white);
  background: var(--bg2);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--bg3); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-dim); flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--green); border-color: var(--green); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
  background: var(--bg2);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 28px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-detail:last-child { border: none; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--green-pale);
  border: 1px solid var(--green-dark); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--green);
}
.contact-detail h4 { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 3px; font-family: var(--font-body); }
.contact-detail a { font-size: 0.92rem; color: var(--white); }
.contact-form-wrap {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form-wrap h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; margin-bottom: 24px; color: var(--white); }

/* ============================================================
   EMAIL CAPTURE BANNER
   ============================================================ */
.email-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a3a2a 100%);
  border-top: 1px solid rgba(64,145,108,0.3);
  border-bottom: 1px solid rgba(64,145,108,0.3);
  padding: 64px 0;
  text-align: center;
}
.email-banner .section-eyebrow { color: var(--gold-light); }
.email-banner h2 { color: var(--white); margin: 0 auto 14px; }
.email-banner p { color: rgba(255,255,255,0.65); margin: 0 auto 36px; }
.email-form { display: flex; gap: 12px; justify-content: center; max-width: 460px; margin: 0 auto 12px; flex-wrap: wrap; }
.email-form input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 14px 22px;
  color: #fff; font-size: 0.92rem; outline: none;
}
.email-form input::placeholder { color: rgba(255,255,255,0.5); }
.email-form input:focus { border-color: var(--gold-light); }
.email-note { font-size: 0.74rem; color: rgba(255,255,255,0.4); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.testi-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.testi-stars { color: var(--gold-light); margin-bottom: 12px; font-size: 0.9rem; }
.testi-card blockquote {
  font-size: 0.88rem; line-height: 1.75; color: var(--text-muted);
  margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-dark); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--green-pale);
  flex-shrink: 0;
}
.testi-author h5 { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.testi-author span { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================================
   ALERTS / NOTICES
   ============================================================ */
.notice {
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 0.88rem; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 10px;
}
.notice--success { background: rgba(64,145,108,0.1); border: 1px solid var(--green-dark); color: var(--green); }
.notice--error { background: rgba(192,86,58,0.1); border: 1px solid rgba(192,86,58,0.3); color: #e07a5f; }
.notice--info { background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light); }

/* WooCommerce overrides */
.woocommerce-notices-wrapper .woocommerce-message {
  background: rgba(64,145,108,0.1); border: 1px solid var(--green-dark);
  color: var(--green); border-radius: var(--radius); padding: 14px 18px;
  margin-bottom: 20px; list-style: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
  background: rgba(192,86,58,0.1); border: 1px solid rgba(192,86,58,0.3);
  color: #e07a5f; border-radius: var(--radius); padding: 14px 18px;
  margin-bottom: 20px; list-style: none;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-dim); margin-bottom: 14px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--text-dim); }
.page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); margin-bottom: 10px; }
.page-hero p { font-size: 1rem; max-width: 580px; }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
  min-height: 70vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 40px;
}
.not-found .big-num {
  font-family: var(--font-display); font-size: 10rem; font-weight: 800;
  color: var(--border2); line-height: 1; margin-bottom: 20px;
}
.not-found h2 { margin-bottom: 12px; }
.not-found p { max-width: 400px; margin: 0 auto 28px; }

/* ============================================================
   MY ACCOUNT
   ============================================================ */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: start; }
.account-nav {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px;
  position: sticky; top: 90px;
}
.account-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--text-muted); transition: var(--transition);
  margin-bottom: 2px;
}
.account-nav a:hover,
.account-nav a.is-active { background: var(--bg3); color: var(--white); }
.account-nav a.is-active { color: var(--green); }
.account-content {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.anim-up { animation: fadeUp 0.6s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.45s; }
.anim-delay-5 { animation-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .primary-nav { display: none !important; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  /* NAV — always hide desktop links on mobile, hamburger stays */
  .primary-nav { display: none !important; }
  .menu-toggle { display: flex !important; }

  /* HERO */
  .hero { grid-template-columns: 1fr !important; min-height: auto; padding: 36px 0 48px; gap: 0; }
  .hero-visual { display: none; }
  .hero h1, .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat strong { font-size: 1.5rem; }

  /* SECTIONS */
  .section { padding: 44px 0; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: .9rem; }

  /* GRIDS */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* HEADERS */
  .cats-header, .sec-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* TRUST BAR */
  .trust-bar-inner { gap: 14px; overflow-x: auto; flex-wrap: nowrap; padding: 0 8px; -webkit-overflow-scrolling: touch; }
  .trust-item { white-space: nowrap; font-size: .75rem; }

  /* SINGLE PRODUCT */
  .single-product-layout { grid-template-columns: 1fr !important; gap: 28px; }
  .product-gallery { position: static !important; }

  /* CART / CHECKOUT */
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { display: none; }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  /* ACCOUNT */
  .account-layout { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 12px; }

  /* EMAIL FORM */
  .email-form { flex-direction: column; align-items: stretch; }
  .email-form input, .email-form .btn--gold { width: 100%; min-width: 0; }

  /* PAGE HERO */
  .page-hero { padding: 32px 0; }
  .page-hero h1 { font-size: 1.6rem; }

  /* SHOP */
  .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Product card text */
  .product-card-body h4 { font-size: .82rem; }

  /* Header */
  #site-header { height: 60px; }
  .site-logo img { height: 30px; }
  .site-logo .logo-text { font-size: 1.1rem; }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE (≤420px)
   ============================================================ */
@media (max-width: 420px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 1.8rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .product-card-body { padding: 10px 12px 12px; }
  .product-card-body h4 { font-size: .78rem; }
  .footer-social { gap: 6px; }
  .social-link { width: 30px; height: 30px; font-size: .68rem; }
  .not-found .big-num { font-size: 6rem; }
}
