/* PouchItalia.com - E-commerce Nicotine Pouches Italy */
:root {
  --primary: #1a6b3c;
  --primary-dark: #0f4d2a;
  --primary-light: #e8f5ec;
  --accent: #f59e0b;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8faf9;
  --border: #e5e7eb;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius: 12px;
  --max-w: 1200px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Age Gate */
.age-gate {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.age-gate.hidden { display: none; }
.age-gate-box {
  background: #fff; border-radius: var(--radius);
  padding: 48px; text-align: center; max-width: 440px;
  box-shadow: var(--shadow-lg);
}
.age-gate-box h2 { font-size: 24px; margin-bottom: 8px; }
.age-gate-box p { color: var(--text-light); margin-bottom: 24px; font-size: 15px; }
.age-gate-box .disclaimer { font-size: 12px; color: #999; margin-top: 16px; }
.age-btn {
  display: inline-block; padding: 14px 36px; border: none; border-radius: 8px;
  font-size: 16px; font-weight: 600; cursor: pointer; margin: 0 8px;
  transition: all 0.2s;
}
.age-btn.yes { background: var(--primary); color: #fff; }
.age-btn.yes:hover { background: var(--primary-dark); transform: translateY(-1px); }
.age-btn.no { background: var(--border); color: var(--text); }
.age-btn.no:hover { background: #d1d5db; }

/* Header */
header {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 22px; font-weight: 800; color: var(--primary); text-decoration: none; }
.logo span { color: var(--text); }
nav { display: flex; gap: 32px; align-items: center; }
nav a { text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500; transition: color 0.2s; }
nav a:hover { color: var(--primary); }
nav a.active { color: var(--primary); }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2d8f56 100%);
  color: #fff; padding: 80px 24px; text-align: center;
}
.hero h1 { font-size: 42px; font-weight: 800; max-width: 700px; margin: 0 auto 16px; line-height: 1.15; }
.hero p { font-size: 18px; opacity: 0.9; max-width: 560px; margin: 0 auto 32px; }
.hero-badges { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badge { background: rgba(255,255,255,0.15); padding: 8px 20px; border-radius: 24px; font-size: 14px; font-weight: 500; }
.btn {
  display: inline-block; padding: 16px 40px; border-radius: 8px;
  font-size: 16px; font-weight: 700; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #d97706; transform: translateY(-2px); }

/* Section */
.section { padding: 80px 24px; }
.section-alt { background: var(--bg-alt); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-title { font-size: 32px; font-weight: 800; text-align: center; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--text-light); font-size: 16px; max-width: 600px; margin: 0 auto 48px; }

/* Product Grid */
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all 0.25s;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: #fff;
}
.product-body { padding: 20px; }
.product-brand { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.product-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.product-meta { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.product-tag {
  font-size: 12px; padding: 4px 10px; border-radius: 4px;
  background: var(--primary-light); color: var(--primary); font-weight: 500;
}
.product-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.product-price { font-size: 22px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.product-price span { font-size: 14px; color: var(--text-light); font-weight: 400; }
.product-btn {
  display: block; width: 100%; padding: 12px; text-align: center;
  background: var(--primary); color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.product-btn:hover { background: var(--primary-dark); }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 32px; }
.feature {
  text-align: center; padding: 32px 24px;
  background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
}
.feature-icon { font-size: 40px; margin-bottom: 16px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--text-light); font-size: 14px; }

/* Categories */
.categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.category {
  padding: 24px; text-align: center; border-radius: var(--radius);
  background: #fff; border: 2px solid var(--border); cursor: pointer;
  transition: all 0.2s; text-decoration: none; color: var(--text);
}
.category:hover { border-color: var(--primary); background: var(--primary-light); }
.category-icon { font-size: 32px; margin-bottom: 8px; }
.category h3 { font-size: 15px; font-weight: 600; }

/* Trust Bar */
.trust-bar {
  background: var(--primary-light); padding: 32px 24px;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-item .num { font-size: 28px; font-weight: 800; color: var(--primary); }
.trust-item .label { font-size: 13px; color: var(--text-light); }

/* Banner */
.banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; padding: 60px 24px; text-align: center; border-radius: var(--radius);
  margin: 0 auto; max-width: var(--max-w);
}
.banner h2 { font-size: 28px; margin-bottom: 12px; }
.banner p { opacity: 0.9; margin-bottom: 24px; }

/* Footer */
footer {
  background: var(--text); color: #fff; padding: 60px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
footer p { color: #9ca3af; font-size: 14px; line-height: 1.7; }
footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; color: #fff; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #9ca3af; text-decoration: none; font-size: 14px; transition: color 0.2s; }
footer a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w); margin: 32px auto 0;
  padding-top: 24px; border-top: 1px solid #374151;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: #6b7280; font-size: 13px; }
.footer-disclaimer {
  max-width: var(--max-w); margin: 24px auto 0;
  padding: 16px; background: rgba(255,255,255,0.05); border-radius: 8px;
  font-size: 12px; color: #6b7280; text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 28px; }
  .hero { padding: 48px 20px; }
  .header-inner { height: 60px; }
  nav { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #fff; padding: 20px; border-bottom: 1px solid var(--border); gap: 16px; }
  nav.open { display: flex; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 48px 20px; }
  .section-title { font-size: 24px; }
  .products { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
