/* =============================================
   ComputerWriters — Streaming & Content Creation
   Design: Dark Charcoal + Electric Green
   ============================================= */

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

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

:root {
  --green:        #22c55e;
  --green-dark:   #16a34a;
  --green-light:  #86efac;
  --green-glow:   rgba(34,197,94,0.18);
  --bg:           #0b0b10;
  --bg2:          #111118;
  --surface:      #16161f;
  --surface2:     #1e1e2a;
  --border:       rgba(255,255,255,0.08);
  --border-green: rgba(34,197,94,0.3);
  --text:         #f1f5f9;
  --text-muted:   #94a3b8;
  --text-dim:     #475569;
  --white:        #ffffff;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    18px;
  --transition:   all 0.25s cubic-bezier(.4,0,.2,1);
  --container:    1200px;
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-green: 0 8px 32px rgba(34,197,94,0.2);
}

html { overflow-x: hidden; }
body {
  font-family: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--green-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-left span { color: var(--green); }
.topbar-right { display: flex; gap: 20px; }
.topbar a { color: var(--text-dim); }
.topbar a:hover { color: var(--green); }

/* ===== HEADER ===== */
.header {
  background: rgba(11,11,16,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.nav a.active { color: var(--green); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  transition: var(--transition);
}
.cart-btn:hover { background: var(--green-dark); color: #fff; }
.cart-count {
  background: #000;
  color: var(--green);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1099;
}
.nav-mobile-overlay.open { display: block; }
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  z-index: 1100;
  padding: 24px 20px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: block;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-mobile-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  padding: 4px 8px;
}
.nav-mobile-cart { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.nav-mobile-cart a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #000;
}
.btn-primary:hover { background: var(--green-dark); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-green);
  color: var(--green-light);
}
.btn-outline:hover { background: var(--green-glow); color: var(--white); border-color: var(--green); }
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

/* ===== HERO BADGE ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
}

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.section-header h2 .accent { color: var(--green); }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
}
.page-hero h1 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.page-hero p { color: var(--text-muted); font-size: 1rem; }

/* ===== USP STRIP ===== */
.usp-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.usp-item {
  padding: 0 20px;
  border-right: 1px solid var(--border);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  width: 40px;
  height: 40px;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.usp-icon svg { width: 20px; height: 20px; stroke: var(--green); fill: none; }
.usp-label { font-size: 0.85rem; font-weight: 600; color: var(--white); }
.usp-sub { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

/* ===== CATEGORIES ===== */
.categories-section { padding: 72px 0 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.cat-card:hover { border-color: var(--border-green); transform: translateY(-3px); }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,11,16,0.9) 0%, rgba(11,11,16,0.3) 50%, transparent 100%);
}
.cat-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  color: var(--white);
}
.cat-card-icon { font-size: 1.5rem; margin-bottom: 6px; }
.cat-card-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.cat-card-info span {
  font-size: 0.75rem;
  color: var(--green-light);
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 2px 10px;
  border-radius: 99px;
  display: inline-block;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.product-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.product-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-green);
}
.product-img-wrap {
  position: relative;
  background: var(--surface2);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 9px;
  border-radius: 99px;
  z-index: 1;
}
.product-badge.new { background: #a855f7; color: #fff; }
.product-badge.featured { background: #f59e0b; color: #000; }
.product-info { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.product-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 5px;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  min-height: 2.6rem;
  line-height: 1.35;
}
.product-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green);
}
.product-price .currency { font-size: 0.85rem; font-weight: 600; }
.add-to-cart {
  background: var(--green);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}
.add-to-cart:hover { background: var(--green-dark); color: #fff; }

/* ===== SHOP PAGE ===== */
.shop-page { padding: 36px 0 64px; }
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; }
.shop-sidebar {}
.sidebar-section { margin-bottom: 28px; }
.sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.filter-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 6px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--green);
  color: var(--green-light);
  background: var(--green-glow);
}
.shop-main {}
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.shop-count { font-size: 0.875rem; color: var(--text-muted); }
.shop-sort {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

/* ===== GUIDE BANNER ===== */
.guide-banner {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(34,197,94,0.06) 100%);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0 0 64px;
}
.guide-banner-icon { font-size: 3rem; flex-shrink: 0; }
.guide-banner-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.guide-banner-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.guide-banner-action { flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--border-green); transform: translateY(-3px); }
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border-radius: 99px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.blog-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.blog-card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.blog-card-footer a { color: var(--green-light); font-weight: 600; }

/* ===== ARTICLE ===== */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 48px 0 80px; }
.article-wrap h1 { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.25; }
.article-wrap h2 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin: 36px 0 14px; }
.article-wrap h3 { font-size: 1.1rem; font-weight: 700; color: var(--green-light); margin: 28px 0 10px; }
.article-wrap p { color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.article-wrap ul, .article-wrap ol { color: var(--text-muted); line-height: 1.75; padding-left: 24px; margin-bottom: 18px; }
.article-wrap li { margin-bottom: 6px; }
.article-wrap strong { color: var(--white); }
.article-meta { display: flex; gap: 16px; color: var(--text-dim); font-size: 0.8rem; margin-bottom: 32px; }
.article-hero-img { width: 100%; border-radius: var(--radius); margin-bottom: 36px; aspect-ratio: 16/9; object-fit: cover; }
.tip-box {
  background: rgba(34,197,94,0.08);
  border: 1px solid var(--border-green);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
  color: var(--text-muted);
}
.tip-box strong { color: var(--green-light); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; }
.form-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.form-input::placeholder { color: var(--text-dim); }
textarea.form-input { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--green-glow);
  border: 1px solid var(--border-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 18px; height: 18px; stroke: var(--green); fill: none; }
.contact-item-label { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 2px; }
.contact-item-value { font-size: 0.9rem; color: var(--text); font-weight: 500; }

/* ===== CART ===== */
.cart-page { padding: 40px 0 80px; }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-empty { text-align: center; padding: 80px 0; color: var(--text-muted); }
.cart-empty h2 { font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 12px;
}
.cart-item-img { width: 70px; height: 70px; object-fit: contain; background: var(--surface2); border-radius: var(--radius-sm); padding: 8px; flex-shrink: 0; }
.cart-item-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.cart-item-price { color: var(--green); font-weight: 700; font-size: 0.9rem; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { border-color: var(--green); color: var(--green); }
.cart-remove { background: none; border: none; color: var(--text-dim); cursor: pointer; font-size: 1.1rem; transition: var(--transition); }
.cart-remove:hover { color: #f43f5e; }
.cart-summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 80px;
}
.cart-summary-title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-muted); }
.cart-summary-total { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); margin-top: 4px; font-weight: 800; color: var(--white); font-size: 1.1rem; }
.cart-cta { margin-top: 20px; }
.cart-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.5;
}

/* ===== ORDER FORM ===== */
.order-form { display: none; }
.order-form.active { display: block; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--green);
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 99px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 540px;
  width: calc(100% - 40px);
  z-index: 9990;
  opacity: 0;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
}
.cookie-banner.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: 0.82rem; color: var(--text-muted); flex: 1; }
.cookie-banner a { color: var(--green-light); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-reject {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}
.cookie-accept {
  background: var(--green);
  color: #000;
  border: none;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.7; margin-top: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  color: #000;
}
.footer-logo-name { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.875rem; }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social-link:hover { border-color: var(--green); color: var(--green); background: var(--green-glow); }
.footer-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-trust-item svg { stroke: var(--green); fill: none; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-dim); }
.footer-bottom-links a:hover { color: var(--green-light); }

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 32px 0 12px; }
.legal-content h3 { font-size: 1rem; font-weight: 700; color: var(--green-light); margin: 24px 0 8px; }
.legal-content p, .legal-content li { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.legal-content ul, .legal-content ol { padding-left: 22px; margin-bottom: 16px; }

/* ===== THANK YOU ===== */
.thankyou-page { text-align: center; padding: 100px 24px; }
.thankyou-icon {
  width: 72px;
  height: 72px;
  background: var(--green-glow);
  border: 2px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 32px; height: 32px; stroke: var(--green); fill: none; }
.thankyou-page h1 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.thankyou-page p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto 28px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-section { margin-bottom: 0; }
  .filter-btn { width: auto; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .guide-banner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .guide-banner-action { align-items: center; }
}
@media (max-width: 768px) {
  .nav { display: none !important; }
  .burger-btn { display: flex !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-header h2 { font-size: 1.6rem; }

  /* topbar */
  .topbar-right { display: none; }
  .topbar-inner { justify-content: center; }

  /* header */
  .header-inner { gap: 12px; }
  .logo-name { font-size: 1rem; }

  /* hero */
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .hero-desc { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }

  /* page hero */
  .page-hero { padding: 32px 0 28px; }
  .page-hero h1 { font-size: 1.5rem; }

  /* article */
  .article-wrap { padding: 32px 0 60px; }
  .article-wrap h1 { font-size: 1.6rem; }
  .article-wrap h2 { font-size: 1.2rem; }

  /* featured section */
  .featured-section { padding: 48px 0; }

  /* promo card inside article */
  .promo-card { flex-wrap: wrap; gap: 12px; }
  .promo-card-img { width: 56px; height: 56px; }
  .promo-card-price { width: 100%; text-align: right; }

  /* blog */
  .blog-card-body h3 { font-size: 1rem; }

  /* cart */
  .cart-item { flex-wrap: wrap; }
  .cart-item-img { width: 56px; height: 56px; }

  /* contact */
  .contact-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }

  /* hero */
  .hero h1 { font-size: 1.7rem; line-height: 1.2; }
  .hero-badge { font-size: 0.65rem; }

  /* article */
  .article-wrap h1 { font-size: 1.4rem; }
  .article-meta { flex-direction: column; gap: 4px; font-size: 0.78rem; }

  /* section headers */
  .section-header h2 { font-size: 1.4rem; }
  .page-hero h1 { font-size: 1.3rem; }

  /* tip box */
  .tip-box { padding: 16px; font-size: 0.88rem; }

  /* promo card */
  .promo-card { padding: 14px; }
  .promo-card-name { font-size: 0.88rem; }

  /* footer */
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  /* moment block */
  .moment-block { padding: 18px 16px; }
}
