/* ============================================
   PokerKoning.nl – Dark Gold/Black Royal Theme
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --dark4: #2A2A2A;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --white: #F5F0E8;
  --white2: #EDE8E0;
  --text: #D4C9B0;
  --red: #C0392B;
  --green: #27AE60;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.3);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.gold { color: var(--gold); }
.label { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; text-decoration: none;
  transition: var(--transition); letter-spacing: 0.5px;
}
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); }
.btn--gold:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--black); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--sm { padding: 8px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---- Age Gate ---- */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px);
}
.age-gate__box {
  max-width: 480px; width: 90%; text-align: center;
  background: var(--dark2); border: 1px solid var(--gold-dark);
  border-radius: var(--radius-lg); padding: 48px 36px;
  box-shadow: var(--shadow-gold);
}
.age-gate__logo { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold); margin-bottom: 16px; }
.age-gate__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900; color: var(--black);
  margin: 0 auto 24px;
}
.age-gate h2 { font-family: var(--font-display); color: var(--white); font-size: 1.8rem; margin-bottom: 12px; }
.age-gate p { color: var(--gray-light); margin-bottom: 28px; }
.age-gate__buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.age-gate__note { font-size: 0.78rem; color: var(--gray); }
.age-gate__note a { color: var(--gold); }

/* ---- Cookie Banner ---- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--dark2); border-top: 1px solid var(--gold-dark);
  padding: 16px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.9rem; color: var(--gray-light); }
.cookie-banner__text a { color: var(--gold); }
.cookie-banner__buttons { display: flex; gap: 10px; }

/* ---- Header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,10,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: var(--transition);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo__icon { font-size: 1.8rem; color: var(--gold); }
.logo__text { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); font-weight: 700; }
.logo__text span { color: var(--gold); }
.logo--footer .logo__text { font-size: 1.3rem; }

.nav { display: flex; gap: 28px; }
.nav__link { text-decoration: none; color: var(--gray-light); font-weight: 500; font-size: 0.9rem; transition: var(--transition); position: relative; }
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  background: none; border: none; cursor: pointer;
  position: relative; color: var(--white); font-size: 1.2rem;
  padding: 8px; transition: var(--transition);
}
.cart-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: 0; right: 0;
  background: var(--gold); color: var(--black);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--white); font-size: 1.3rem; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
              linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/3279691/pexels-photo-3279691.jpeg?auto=compress&cs=tinysrgb&w=1200') center/cover no-repeat;
  opacity: 0.06;
}
.hero__content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; position: relative; z-index: 1;
  padding: 80px 20px;
}
.hero__badge {
  display: inline-block; background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold-dark); color: var(--gold);
  padding: 6px 16px; border-radius: 20px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 20px; letter-spacing: 1px;
}
.hero__title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero__sub { font-size: 1.1rem; color: var(--gray-light); margin-bottom: 32px; max-width: 480px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero__trust span { font-size: 0.85rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.hero__trust i { color: var(--gold); }

.hero__image { display: flex; justify-content: center; align-items: center; }
.hero__card-stack { position: relative; width: 100%; max-width: 440px; }
.hero__img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-gold), var(--shadow); object-fit: cover; height: 380px; }
.hero__badge-float {
  position: absolute; top: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%; width: 90px; height: 90px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.badge-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--black); line-height: 1; }
.badge-txt { font-size: 0.65rem; font-weight: 700; color: var(--black); text-transform: uppercase; }

/* ---- Features Bar ---- */
.features-bar {
  background: var(--dark2); border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15); padding: 24px 0;
}
.features-bar__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.feature-item {
  display: flex; align-items: center; gap: 14px; padding: 10px;
}
.feature-item i { font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.feature-item strong { display: block; color: var(--white); font-size: 0.9rem; }
.feature-item p { color: var(--gray); font-size: 0.8rem; margin: 0; }

/* ---- Section ---- */
.section { padding: 80px 0; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 12px; }
.section__sub { color: var(--gray); font-size: 1.05rem; }
.section__cta { text-align: center; margin-top: 40px; }

/* ---- Products ---- */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.4);
  box-shadow: var(--shadow-gold);
}
.product-card__img-wrap { position: relative; overflow: hidden; height: 220px; }
.product-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-card__img { transform: scale(1.06); }
.product-card__glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(201,168,76,0.1) 100%);
  opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card__glow { opacity: 1; }
.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  padding: 4px 10px; border-radius: 6px; font-size: 0.72rem; font-weight: 700;
}
.product-card__body { padding: 18px 20px; }
.product-card__cat { font-size: 0.72rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.product-card__name { font-family: var(--font-display); font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.product-card__desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 14px; line-height: 1.5; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-size: 1.2rem; font-weight: 700; color: var(--gold); font-family: var(--font-display); }
.product-card__price-old { font-size: 0.85rem; color: var(--gray); text-decoration: line-through; margin-left: 6px; }
.product-card__actions { display: flex; gap: 8px; }
.product-card__btn {
  background: var(--gold); color: var(--black); border: none;
  padding: 8px 14px; border-radius: 8px; cursor: pointer;
  font-size: 0.85rem; font-weight: 600; transition: var(--transition);
}
.product-card__btn:hover { background: var(--gold-light); transform: scale(1.05); }
.product-card__stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }

/* ---- Photo Strip ---- */
.photo-strip {
  position: relative; height: 380px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.photo-strip__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.photo-strip__overlay {
  position: relative; z-index: 1; text-align: center;
  background: rgba(0,0,0,0.4); padding: 48px 40px;
  border-radius: var(--radius-lg); border: 1px solid rgba(201,168,76,0.3);
}
.photo-strip__overlay h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.photo-strip__overlay p { color: var(--gold); margin-bottom: 24px; font-size: 1.1rem; }

/* ---- Guide Teaser ---- */
.guide-teaser__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.guide-teaser__image img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-gold);
  height: 400px; object-fit: cover;
}
.guide-teaser__content h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin: 12px 0 16px; line-height: 1.3; }
.guide-teaser__content p { color: var(--gray-light); margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 10px; color: var(--text); margin-bottom: 10px; }
.check-list i { color: var(--gold); }

/* ---- Testimonials ---- */
.testimonials { background: var(--dark2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--dark3); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 28px; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-3px); }
.testimonial-card__stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__author img { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold-dark); object-fit: cover; }
.testimonial-card__author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-card__author span { color: var(--gray); font-size: 0.8rem; }

/* ---- Footer ---- */
.footer { background: var(--dark); border-top: 1px solid rgba(201,168,76,0.2); padding-top: 60px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer__col p { color: var(--gray); font-size: 0.88rem; margin-bottom: 10px; line-height: 1.6; }
.footer__col h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer__col a { display: block; color: var(--gray); text-decoration: none; font-size: 0.88rem; margin-bottom: 8px; transition: var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: var(--dark3); color: var(--gold); font-size: 0.9rem; transition: var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--black); }
.footer__bottom { border-top: 1px solid rgba(201,168,76,0.15); padding: 20px 0; text-align: center; }
.footer__bottom p { color: var(--gray); font-size: 0.8rem; }
.footer__18 { color: var(--gold-dark) !important; margin-top: 6px !important; }

/* ---- Cart Sidebar ---- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 1998; display: none;
}
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 420px; height: 100vh;
  background: var(--dark2); border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 1999; transition: right 0.35s ease;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid rgba(201,168,76,0.15);
}
.cart-sidebar__header h3 { font-family: var(--font-display); color: var(--white); }
.cart-sidebar__header button { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1.2rem; transition: var(--transition); }
.cart-sidebar__header button:hover { color: var(--gold); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-item {
  display: grid; grid-template-columns: 70px 1fr auto; gap: 14px;
  align-items: center; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.cart-item__name { font-weight: 600; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.cart-item__price { color: var(--gold); font-size: 0.95rem; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item__qty button { background: var(--dark3); border: none; color: var(--white); width: 26px; height: 26px; border-radius: 6px; cursor: pointer; font-size: 0.9rem; }
.cart-item__qty span { font-size: 0.9rem; min-width: 20px; text-align: center; }
.cart-item__remove { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 0.9rem; transition: var(--transition); }
.cart-item__remove:hover { color: #e74c3c; }
.cart-sidebar__footer { padding: 20px 24px; border-top: 1px solid rgba(201,168,76,0.15); }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; color: var(--white); margin-bottom: 16px; }
.cart-total strong { color: var(--gold); font-size: 1.2rem; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.cart-empty i { font-size: 3rem; margin-bottom: 16px; }

/* ---- Modal ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 20px; backdrop-filter: blur(4px);
}
.modal {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg); padding: 40px 36px;
  max-width: 560px; width: 100%; position: relative;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-gold), var(--shadow);
}
.modal h2 { font-family: var(--font-display); color: var(--white); font-size: 1.7rem; margin-bottom: 8px; }
.modal__sub { color: var(--gold); font-size: 0.9rem; margin-bottom: 28px; }
.modal__close {
  position: absolute; top: 16px; right: 16px;
  background: var(--dark3); border: none; color: var(--gray);
  width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; transition: var(--transition);
}
.modal__close:hover { color: var(--white); background: var(--dark4); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: var(--gray-light); font-size: 0.88rem; margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--dark3); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px; padding: 11px 14px; color: var(--white);
  font-family: var(--font-body); font-size: 0.93rem; transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.order-summary { background: var(--dark3); border-radius: 10px; padding: 16px; margin-bottom: 20px; }
.order-summary h4 { color: var(--white); margin-bottom: 10px; font-size: 0.9rem; }
.order-summary-item { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--gray-light); margin-bottom: 6px; }
.order-summary-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--gold); margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 10px; }

.modal--success { text-align: center; }
.success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--black); margin: 0 auto 24px;
  font-weight: 900;
}
.modal--success h2 { margin-bottom: 16px; }
.modal--success p { color: var(--gray-light); margin-bottom: 12px; }

.modal--product .product-modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.modal--product img { width: 100%; border-radius: var(--radius); object-fit: cover; height: 280px; }

/* ---- Catalog page ---- */
.page-hero {
  padding: 120px 0 60px; text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: var(--gray-light); font-size: 1.05rem; }

.catalog-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; padding: 60px 0; }
.catalog-filters { background: var(--dark2); border-radius: var(--radius); padding: 24px; border: 1px solid rgba(201,168,76,0.1); height: fit-content; position: sticky; top: 100px; }
.catalog-filters h3 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.filter-group { margin-bottom: 24px; }
.filter-group label { display: flex; align-items: center; gap: 10px; color: var(--gray-light); font-size: 0.9rem; cursor: pointer; margin-bottom: 8px; }
.filter-group input[type="checkbox"] { accent-color: var(--gold); }
.filter-group input[type="range"] { width: 100%; accent-color: var(--gold); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ---- Poker Guide page ---- */
.guide-intro { text-align: center; padding: 40px 0; }
.guide-intro h1 { font-family: var(--font-display); font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.hands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.hand-card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 20px 24px; display: flex;
  align-items: flex-start; gap: 16px; transition: var(--transition);
}
.hand-card:hover { border-color: var(--gold); transform: translateX(4px); }
.hand-card__rank {
  min-width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--black);
}
.hand-card__name { font-family: var(--font-display); color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.hand-card__desc { color: var(--gray); font-size: 0.88rem; line-height: 1.5; }
.hand-card__example { display: inline-block; background: var(--dark3); padding: 4px 10px; border-radius: 6px; font-size: 0.78rem; color: var(--gold); margin-top: 6px; font-family: monospace; }

/* ---- Legal Pages ---- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 20px; }
.legal-content h1 { font-family: var(--font-display); color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.legal-date { color: var(--gray); font-size: 0.85rem; margin-bottom: 40px; }
.legal-content h2 { font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; margin: 30px 0 12px; }
.legal-content p, .legal-content li { color: var(--gray-light); font-size: 0.93rem; line-height: 1.75; margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-content a { color: var(--gold); }

/* ---- Delivery page ---- */
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.delivery-card {
  background: var(--dark2); border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius); padding: 32px;
}
.delivery-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 16px; }
.delivery-card h3 { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.delivery-card p { color: var(--gray-light); font-size: 0.9rem; line-height: 1.65; }

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 60px 0; align-items: start; }
.contact-info h2 { font-family: var(--font-display); color: var(--white); font-size: 1.8rem; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-item i { color: var(--gold); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.contact-info-item strong { display: block; color: var(--white); margin-bottom: 4px; }
.contact-info-item p { color: var(--gray-light); font-size: 0.9rem; margin: 0; }
.contact-info-item a { color: var(--gold); text-decoration: none; }
.contact-form { background: var(--dark2); border-radius: var(--radius); padding: 32px; border: 1px solid rgba(201,168,76,0.15); }
.contact-form h2 { font-family: var(--font-display); color: var(--white); font-size: 1.5rem; margin-bottom: 24px; }

/* ---- Over ons ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }
.about-grid img { width: 100%; border-radius: var(--radius-lg); height: 380px; object-fit: cover; box-shadow: var(--shadow-gold); }
.about-text h2 { font-family: var(--font-display); color: var(--white); font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: var(--gray-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 16px; }

/* ---- Notification ---- */
.notification {
  position: fixed; bottom: 80px; right: 24px; z-index: 3000;
  background: var(--dark2); border: 1px solid var(--gold-dark);
  border-left: 4px solid var(--gold); border-radius: 8px;
  padding: 14px 20px; color: var(--white); font-size: 0.9rem;
  box-shadow: var(--shadow); transform: translateX(200%);
  transition: transform 0.3s ease; max-width: 320px;
}
.notification.show { transform: translateX(0); }
.notification i { color: var(--gold); margin-right: 8px; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-filters { position: static; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .hands-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero__content { grid-template-columns: 1fr; text-align: center; }
  .hero__image { display: none; }
  .hero__cta { justify-content: center; }
  .hero__trust { justify-content: center; }
  .nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--dark2); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(201,168,76,0.2); }
  .nav.open { display: flex; }
  .nav__link { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle { display: block; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .guide-teaser__inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; right: -100%; }
  .modal { padding: 28px 20px; }
  .features-bar__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
}
