/* ===== SEHLICHT — Dark Violet / Gold Theme ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --bg: #1A0A2E;
  --bg-deep: #130820;
  --gold: #C9A84C;
  --gold-light: #D4B97A;
  --gold-dark: #A88530;
  --cream: #FAF7F2;
  --text: #FAF7F2;
  --text-muted: rgba(250, 247, 242, 0.55);
  --text-dim: rgba(250, 247, 242, 0.35);
  --violet-mid: #2D1548;
  --violet-light: #3D1E5E;
  --rose: #8B405A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max-w: 1280px;
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  font-weight: 600;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); }

/* ===== BTN STYLES ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  transition: background var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 27px;
  border: 1px solid rgba(250, 247, 242, 0.3);
  border-radius: 6px;
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--cream);
  margin-top: 8px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo .diamond { font-size: 14px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.7);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--gold); }
.nav-cart {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(250, 247, 242, 0.25);
  padding: 9px 20px;
  border-radius: 6px;
  transition: border-color var(--transition), color var(--transition);
}
.nav-cart:hover { border-color: var(--gold); color: var(--gold); }

.nav-hamburger {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  gap: 60px;
  background:
    radial-gradient(ellipse 70% 80% at 90% 40%, rgba(139, 64, 90, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 5% 90%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    var(--bg);
}
.hero-left { max-width: 540px; }
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(48px, 5vw, 72px);
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.1;
}
.hero-headline .gold { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Moon SVG animations */
@keyframes moonFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes starPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.14); opacity: 0.75; }
}
@keyframes twinkle1 { 0%, 100% { opacity: 0.9; } 50% { opacity: 0.25; } }
@keyframes twinkle2 { 0%, 100% { opacity: 0.7; } 50% { opacity: 0.2; } }
@keyframes twinkle3 { 0%, 100% { opacity: 0.85; } 50% { opacity: 0.3; } }
@keyframes twinkle4 { 0%, 100% { opacity: 0.75; } 50% { opacity: 0.2; } }

.moon-svg { animation: moonFloat 6s ease-in-out infinite; }
.moon-star { animation: starPulse 4s ease-in-out infinite; transform-origin: center; }
.moon-tstar1 { animation: twinkle1 3s ease-in-out infinite; }
.moon-tstar2 { animation: twinkle2 3.5s ease-in-out infinite 0.5s; }
.moon-tstar3 { animation: twinkle3 4s ease-in-out infinite 1s; }
.moon-tstar4 { animation: twinkle4 3.2s ease-in-out infinite 2s; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 24px 40px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.trust-bullet {
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

/* ===== BESTSELLERS ===== */
.bestsellers {
  padding: 100px 80px;
  background: var(--bg);
}
.bestsellers-header {
  text-align: center;
  margin-bottom: 60px;
}
.bestsellers-header h2 { color: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.product-card {
  background: var(--violet-mid);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--rose) 100%);
}
.product-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-img-wrap .product-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3D1E5E 0%, #8B405A 50%, #C9A84C 100%);
}
.product-body { padding: 24px; }
.product-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.product-price .compare {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.btn-cart {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 20px;
  border: none;
  border-radius: 6px;
  transition: background var(--transition);
}
.btn-cart:hover { background: var(--gold-light); }

/* ===== WHY SEHLICHT ===== */
.why {
  padding: 100px 80px;
  background: var(--bg-deep);
}
.why-header {
  text-align: center;
  margin-bottom: 64px;
}
.why-header h2 { color: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-card {
  text-align: center;
  padding: 40px 28px;
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 24px;
  color: var(--gold);
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 600;
}
.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  padding: 100px 80px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%),
    var(--bg);
  text-align: center;
}
.testimonial-inner { max-width: 760px; margin: 0 auto; }
.stars {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 32px;
  letter-spacing: 4px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin-bottom: 28px;
}
.testimonial-quote::before { content: '\u201C'; }
.testimonial-quote::after { content: '\u201D'; }
.testimonial-author {
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 100px 80px;
  background: var(--violet-mid);
  text-align: center;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--cream);
  margin-bottom: 16px;
}
.newsletter-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-select {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C9A84C' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.newsletter-select option {
  background: var(--bg-deep);
  color: var(--cream);
}
.newsletter-select:focus { border-color: var(--gold); }
.newsletter-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 80px 40px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.06);
}
.footer-brand .footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-social li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-social li a:hover { color: var(--cream); }
.footer-social li a svg { flex-shrink: 0; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-hamburger { display: flex; align-items: center; }
  .nav-links { display: none; }
  .nav-cart { display: none; }
  .nav-links.open {
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(26, 10, 46, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open .nav-link {
    font-size: 16px;
    letter-spacing: 0.15em;
    color: var(--cream);
  }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 100px 40px 60px; }
  .hero-right { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero, .bestsellers, .why, .testimonial, .newsletter, .footer { padding-left: 24px; padding-right: 24px; }
  .nav { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .nav-link { font-size: 11px; letter-spacing: 0.1em; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .trust-inner { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}