:root {
  --nude: #f5e6e0;
  --nude-dark: #e8d5ce;
  --navy: #1a2a4a;
  --navy-light: #2c3e6b;
  --pink: #e8b4b8;
  --text: #2c2c2c;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --bg: #faf8f6;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Age Gate */
.age-gate {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-gate-content {
  text-align: center;
  max-width: 420px;
  padding: 40px;
}

.logo-age {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.age-gate h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: 500;
}

.age-gate p {
  margin-bottom: 12px;
  opacity: 0.9;
  font-size: 0.95rem;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0 20px;
}

.age-note {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  text-align: center;
}

.btn-primary {
  background: var(--pink);
  color: var(--navy);
}

.btn-primary:hover {
  background: #d9a0a5;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Header */
.header {
  background: white;
  border-bottom: 1px solid var(--nude-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.8rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--pink);
}

.cart-link span {
  background: var(--navy);
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 4px;
}

.lang-switch {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Featured & Products */
.featured, .categories {
  padding: 80px 0;
}

.featured h2, .categories h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
  font-weight: 500;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.product-image {
  aspect-ratio: 1;
  background: var(--nude);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--navy);
  opacity: 0.4;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.product-info .price {
  color: var(--navy);
  font-weight: 600;
  font-size: 1.1rem;
}

.product-info .category {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cat-card {
  background: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.cat-card:hover {
  background: var(--navy);
  color: white;
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cat-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Trust */
.trust {
  background: white;
  padding: 60px 0;
  border-top: 1px solid var(--nude-dark);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.trust h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.trust p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--navy);
  color: white;
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer .logo {
  color: white;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.footer p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-note {
  text-align: right;
  opacity: 0.5;
  font-size: 0.85rem;
}

/* Shop page */
.page-header {
  background: var(--navy);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.4rem;
  font-weight: 500;
}

/* Cart */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
}

.cart-table th, .cart-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--nude-dark);
}

.cart-table th {
  background: var(--nude);
  font-weight: 500;
  font-size: 0.85rem;
}

.cart-summary {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 360px;
  margin-left: auto;
}

.cart-summary h3 {
  margin-bottom: 20px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cart-total {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--nude-dark);
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0;
}

.product-detail-image {
  background: var(--nude);
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--navy);
  opacity: 0.3;
}

.product-detail-info h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-detail-info .price {
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
}

.product-detail-info p {
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
}
