/* ===== PRACHTGOLD GILSERBERG – Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #c9a96e;
  --gold-light: #e2cc9c;
  --gold-dark: #a07d3f;
  --black: #1a1a1a;
  --black-soft: #2a2a2a;
  --cream: #faf6f0;
  --cream-dark: #f0e8da;
  --white: #ffffff;
  --text-dark: #2c2c2c;
  --text-muted: #6b6b6b;
  --text-light: #999999;
  --border: rgba(201,169,110,0.2);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }

img { max-width: 100%; height: auto; display: block; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--black);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.logo span { color: var(--gold-light); font-weight: 400; }

.nav-links { display: flex; gap: 32px; list-style: none; }

.nav-links a {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(201,169,110,0.08) 0%, transparent 50%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, -3%); }
}

.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.hero h1 {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 3px;
}

.hero .subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero p {
  color: var(--cream-dark);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 32px;
  opacity: 0.8;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,169,110,0.4);
}

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; }

.section-dark {
  background: var(--black);
  color: var(--cream);
}

.section-cream { background: var(--cream); }

.section-white { background: var(--white); }

.container { max-width: 1100px; margin: 0 auto; }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-dark .section-header h2 { color: var(--gold); }
.section-cream .section-header h2, .section-white .section-header h2 { color: var(--black); }

.section-header p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

.section-dark .section-header p { color: rgba(250,246,240,0.7); }

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.highlight-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.highlight-box h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.highlight-box p {
  color: rgba(250,246,240,0.75);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== EXTENSIONS INFOBOX ===== */
.info-box {
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(201,169,110,0.03));
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 32px 36px;
  margin: 48px auto;
  max-width: 800px;
}

.info-box h4 {
  font-size: 1.1rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.info-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.cat-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--transition);
}

.cat-tab:hover, .cat-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeIn 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

@keyframes cardFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-img .placeholder-icon {
  font-size: 3rem;
  color: var(--gold-light);
  opacity: 0.5;
}

.product-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
  flex: 1;
}

.product-card-suitable {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 400;
  margin-bottom: 20px;
  font-style: italic;
}

.product-card-footer {
  padding: 0 24px 24px;
}

/* ===== TEASER BLOCK (for homepage) ===== */
.teaser-block {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.teaser-block::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.teaser-block h2 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.teaser-block p {
  color: rgba(250,246,240,0.75);
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== AFFILIATE DISCLAIMER ===== */
.affiliate-notice {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

.affiliate-notice p {
  font-size: 0.8rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: rgba(250,246,240,0.6);
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.footer-col h4 {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(250,246,240,0.6);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(250,246,240,0.4);
}

/* ===== HERO WITH BANNER IMAGE ===== */
.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.55) 100%);
  z-index: 0;
}

.hero-banner .hero-content { z-index: 1; }

.hero-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 2px solid var(--gold);
  box-shadow: 0 0 30px rgba(201,169,110,0.3);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: all var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* ===== WHATSAPP CONTACT BUTTON (in sections) ===== */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  color: #fff;
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

/* ===== GOOGLE MAPS / ANFAHRT ===== */
.maps-consent-box {
  background: var(--black-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.maps-consent-box p {
  color: rgba(250,246,240,0.6);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.maps-consent-box .consent-note {
  font-size: 0.8rem;
  color: rgba(250,246,240,0.4);
  margin-top: 16px;
  margin-bottom: 0;
}

.maps-iframe-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  display: none;
}

.maps-iframe-wrapper.visible { display: block; }

.maps-iframe-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.btn-maps {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-maps:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ===== SALON IMAGE GALLERY STRIP ===== */
.salon-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.salon-strip img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: transform 0.4s ease;
}

.salon-strip img:hover { transform: scale(1.03); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1rem; }
  .section { padding: 56px 20px; }
  .section-header h2 { font-size: 1.7rem; }
  .highlight-box { padding: 32px 24px; }
  .highlight-box h3 { font-size: 1.3rem; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .teaser-block { padding: 40px 24px; }
  .teaser-block h2 { font-size: 1.5rem; }
  .header-inner { padding: 14px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--black); padding: 20px; gap: 16px; border-top: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .info-box { padding: 24px; }
  .category-tabs { gap: 8px; }
  .cat-tab { padding: 8px 16px; font-size: 0.75rem; }
  .whatsapp-float { padding: 12px 16px; font-size: 0.8rem; bottom: 20px; right: 16px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
  .salon-strip { grid-template-columns: 1fr; }
  .hero-logo { width: 120px; height: 120px; }
  .maps-consent-box { padding: 32px 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 64px 20px; }
  .hero h1 { font-size: 1.7rem; letter-spacing: 1px; }
  .product-card-body { padding: 20px; }
  .product-card-footer { padding: 0 20px 20px; }
}

/* ===== PRODUCT DETAILS EXTRA (Salon-Grade Descriptions) ===== */
.product-details-extra {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px dashed rgba(201,169,110,0.3);
  padding-top: 14px;
  margin-top: 10px;
  margin-bottom: 16px;
  text-align: left;
}

.product-details-extra strong {
  color: var(--black);
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
}

