/*
Theme Name:   Celebrities Secret
Theme URI:    https://celebrities.softwaredienst.ch
Description:  Custom theme for Celebrities Secret Snap-On Veneers – Landing Page + WooCommerce Shop
Author:       Softwaredienst
Version:      1.0.0
Text Domain:  celebrities-secret
WC requires at least: 8.0
WC tested up to: 9.0
*/

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

:root {
  --red:        #FF2800;
  --red-dark:   #CC1F00;
  --black:      #080808;
  --dark:       #111111;
  --dark-2:     #181818;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --gold:       #C9A96E;
  --gray-1:     #888888;
  --gray-2:     #444444;
  --gray-light: #E8E8E8;
  --radius:     12px;
  --radius-lg:  20px;
  --pill:       999px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.22s ease;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html  { scroll-behavior:smooth; font-size:16px; }
body  { font-family:'Inter',sans-serif; color:var(--black); background:var(--white); -webkit-font-smoothing:antialiased; overflow-x:hidden; }
img   { display:block; max-width:100%; }
a     { color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
h1,h2,h3,h4,h5 { line-height:1.2; }
em    { font-style:italic; color:var(--gold); }

/* ── Layout ── */
.container        { max-width:1160px; margin:0 auto; padding:0 24px; }
.container-narrow { max-width:740px;  margin:0 auto; padding:0 24px; }

/* ── Buttons ── */
.btn-primary {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:var(--red); color:var(--white);
  font-weight:700; font-size:15px; letter-spacing:.3px;
  padding:13px 28px; border-radius:var(--pill);
  transition:background var(--transition),transform var(--transition),box-shadow var(--transition);
  box-shadow:0 4px 20px rgba(255,40,0,.35);
}
.btn-primary:hover  { background:var(--red-dark); transform:translateY(-2px); box-shadow:0 8px 32px rgba(255,40,0,.45); }
.btn-primary:active { transform:translateY(0); }
.btn-primary.btn-lg { font-size:16px; padding:15px 36px; }
.btn-primary.btn-xl { font-size:18px; padding:18px 48px; }
.btn-primary.btn-full { width:100%; }

.btn-ghost {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  background:transparent; color:var(--white);
  font-weight:600; font-size:15px;
  padding:13px 28px; border-radius:var(--pill);
  border:1.5px solid rgba(255,255,255,.45);
  transition:border-color var(--transition),color var(--transition);
}
.btn-ghost:hover  { border-color:var(--white); }
.btn-ghost.btn-lg { font-size:16px; padding:15px 36px; }

/* ── Navigation ── */
.site-header {
  position:fixed; top:0; left:0; right:0; z-index:200;
  transition:background var(--transition),box-shadow var(--transition);
}
.site-header.scrolled {
  background:rgba(8,8,8,.94);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(255,255,255,.06);
}
.nav-inner {
  max-width:1160px; margin:0 auto; padding:0 24px;
  height:68px; display:flex; align-items:center; gap:32px;
}
.nav-logo { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-logo img { height:34px; width:auto; }
.nav-logo span { font-family:'Playfair Display',serif; font-size:15px; font-weight:700; color:var(--gold); letter-spacing:.5px; }
.nav-links { display:flex; align-items:center; gap:28px; flex:1; justify-content:center; }
.nav-links a { font-size:14px; font-weight:500; color:rgba(255,255,255,.75); transition:color var(--transition); }
.nav-links a:hover { color:var(--white); }
.nav-actions { display:flex; align-items:center; gap:12px; flex-shrink:0; }
.btn-nav-cta {
  background:var(--red); color:var(--white);
  font-size:13px; font-weight:700;
  padding:9px 20px; border-radius:var(--pill);
  transition:background var(--transition);
}
.btn-nav-cta:hover { background:var(--red-dark); }
.nav-burger { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav-burger span { display:block; width:22px; height:2px; background:var(--white); border-radius:2px; transition:var(--transition); }
@media(max-width:768px){
  .nav-links { display:none; position:fixed; top:68px; left:0; right:0; background:rgba(8,8,8,.97); flex-direction:column; padding:24px; gap:20px; align-items:flex-start; border-top:1px solid rgba(255,255,255,.07); }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:16px; }
  .nav-burger { display:flex; }
  .btn-nav-cta { display:none; }
}

/* ── Hero ── */
.hero {
  position:relative; width:100%; height:100vh; min-height:600px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; background:var(--black);
}
.hero-video-wrap { position:absolute; inset:0; }
.hero-video-wrap video { width:100%; height:100%; object-fit:cover; }
.hero-fallback-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 60%,#3a0000 0%,#1a0000 35%,var(--black) 70%);
  display:flex; align-items:center; justify-content:center;
}
.hero-fallback-logo { width:220px; filter:drop-shadow(0 0 40px rgba(255,40,0,.5)); }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.55) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.75) 100%);
}
.hero-content { position:relative; z-index:2; text-align:center; padding:0 24px; max-width:820px; }
.hero-label { font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.hero-title { font-family:'Playfair Display',serif; font-size:clamp(40px,7vw,80px); font-weight:700; color:var(--white); margin-bottom:20px; text-shadow:0 2px 16px rgba(0,0,0,.6); }
.hero-title em { color:var(--gold); }
.hero-sub { font-size:clamp(15px,2vw,18px); color:rgba(255,255,255,.85); line-height:1.65; margin-bottom:36px; text-shadow:0 1px 8px rgba(0,0,0,.6); }
.hero-ctas { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.sound-btn {
  position:absolute; bottom:32px; right:24px; z-index:10;
  width:40px; height:40px; border-radius:50%;
  background:rgba(0,0,0,.5); backdrop-filter:blur(8px);
  color:white; display:flex; align-items:center; justify-content:center;
  transition:background var(--transition);
}
.sound-btn:hover { background:rgba(0,0,0,.75); }
.hero-scroll-hint {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%); z-index:10;
  color:rgba(255,255,255,.5); animation:scrollBounce 2s ease-in-out infinite;
  transition:color var(--transition);
}
.hero-scroll-hint:hover { color:var(--white); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── Trust Bar ── */
.trust-bar { background:var(--black); border-bottom:1px solid rgba(255,255,255,.07); }
.trust-bar-inner {
  max-width:1160px; margin:0 auto; padding:14px 24px;
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap;
}
.trust-item { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:500; color:rgba(255,255,255,.7); padding:6px 20px; white-space:nowrap; }
.trust-item svg { color:var(--gold); flex-shrink:0; }
.trust-divider { width:1px; height:20px; background:rgba(255,255,255,.12); }
@media(max-width:600px){ .trust-divider{display:none;} .trust-item{padding:6px 10px;font-size:12px;} }

/* ── Sections ── */
.section-light { background:var(--white); padding:100px 0; }
.section-dark  { background:var(--dark);  padding:100px 0; }
.section-cta   { background:var(--black); padding:100px 0; }
@media(max-width:768px){ .section-light,.section-dark,.section-cta{padding:70px 0;} }
.section-tag { display:inline-block; font-size:11px; font-weight:700; letter-spacing:2.5px; text-transform:uppercase; color:var(--red); background:rgba(255,40,0,.08); padding:5px 14px; border-radius:var(--pill); margin-bottom:14px; }
.section-tag-light { color:var(--gold); background:rgba(201,169,110,.1); }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(26px,4vw,44px); font-weight:700; margin-bottom:14px; }
.section-title.light { color:var(--white); }
.section-sub  { font-size:16px; color:var(--gray-1); line-height:1.7; max-width:600px; margin:0 auto; text-align:center; }
.section-sub.light { color:rgba(255,255,255,.6); }
.section-light .section-tag,.section-light .section-title,.section-light .section-sub { display:block; text-align:center; }

/* ── Product Showcase ── */
.product-showcase { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; margin-top:60px; }
@media(max-width:900px){ .product-showcase{grid-template-columns:1fr;gap:40px;} }
.product-img-wrap { position:relative; border-radius:var(--radius-lg); background:var(--black); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; padding:32px; }
.product-img-wrap img { width:100%; max-width:400px; height:auto; object-fit:contain; }
.product-img-badge { position:absolute; top:16px; left:16px; background:var(--gold); color:var(--black); font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; padding:5px 12px; border-radius:4px; }
.product-stars { color:var(--gold); font-size:14px; margin-bottom:10px; }
.product-stars span { font-size:12px; color:var(--gray-1); margin-left:6px; }
.product-title { font-family:'Playfair Display',serif; font-size:28px; font-weight:700; margin-bottom:6px; }
.product-tagline { font-size:15px; color:var(--gray-1); margin-bottom:24px; }
.color-picker { margin-bottom:24px; }
.picker-label { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-1); margin-bottom:10px; }
.color-options { display:flex; gap:12px; }
.color-btn { width:36px; height:36px; border-radius:50%; border:2.5px solid transparent; transition:transform var(--transition),border-color var(--transition); position:relative; }
.color-btn:hover { transform:scale(1.12); }
.color-btn.active { border-color:var(--red); transform:scale(1.12); }
.color-tooltip { position:absolute; bottom:-28px; left:50%; transform:translateX(-50%); font-size:10px; white-space:nowrap; color:var(--gray-1); display:none; font-weight:600; }
.color-btn:hover .color-tooltip { display:block; }
.color-selected { font-size:13px; color:var(--red); font-weight:600; margin-top:8px; }
.product-includes { margin-bottom:24px; }
.includes-label { font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--gray-1); margin-bottom:8px; }
.product-includes ul { list-style:none; display:flex; flex-direction:column; gap:5px; }
.product-includes li { font-size:14px; color:var(--gray-2); }
.product-price-row { margin-bottom:20px; }
.price-wrap { display:flex; align-items:baseline; gap:10px; margin-bottom:4px; }
.price-current { font-size:32px; font-weight:800; color:var(--black); }
.price-old { font-size:16px; color:var(--gray-1); text-decoration:line-through; }
.price-badge { background:var(--red); color:white; font-size:11px; font-weight:700; padding:3px 8px; border-radius:4px; }
.price-note { font-size:12px; color:var(--gray-1); }
.product-trust-row { display:flex; gap:16px; flex-wrap:wrap; margin-top:14px; }
.product-trust-row span { font-size:12px; color:var(--gray-1); }

/* ── Steps ── */
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
@media(max-width:900px){ .steps-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .steps-grid{grid-template-columns:1fr;} }
.step-card { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:32px 28px; transition:border-color var(--transition),transform var(--transition); }
.step-card:hover { border-color:rgba(255,40,0,.35); transform:translateY(-4px); }
.step-number { font-size:11px; font-weight:800; letter-spacing:2px; color:var(--red); margin-bottom:12px; }
.step-icon { font-size:32px; margin-bottom:14px; }
.step-card h3 { font-size:17px; font-weight:700; color:var(--white); margin-bottom:10px; }
.step-card p { font-size:14px; color:rgba(255,255,255,.6); line-height:1.65; }
.step-card p strong { color:rgba(255,255,255,.85); font-weight:600; }

/* ── USP Grid ── */
.usp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:56px; }
@media(max-width:900px){ .usp-grid{grid-template-columns:repeat(2,1fr);} }
@media(max-width:560px){ .usp-grid{grid-template-columns:1fr;} }
.usp-card { padding:32px 28px; border:1px solid var(--gray-light); border-radius:var(--radius-lg); transition:border-color var(--transition),box-shadow var(--transition),transform var(--transition); }
.usp-card:hover { border-color:rgba(255,40,0,.25); box-shadow:0 8px 32px rgba(255,40,0,.08); transform:translateY(-3px); }
.usp-icon-wrap { width:52px; height:52px; border-radius:var(--radius); background:rgba(255,40,0,.07); display:flex; align-items:center; justify-content:center; color:var(--red); margin-bottom:18px; }
.usp-card h4 { font-size:16px; font-weight:700; margin-bottom:10px; }
.usp-card p  { font-size:14px; color:var(--gray-1); line-height:1.65; }

/* ── Before/After ── */
.ba-wrap { position:relative; max-width:700px; margin:56px auto 48px; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-lg); }
.ba-image { width:100%; display:block; }
.ba-labels { position:absolute; bottom:0; left:0; right:0; display:flex; justify-content:space-between; padding:16px 20px; background:linear-gradient(to top,rgba(0,0,0,.6),transparent); }
.ba-label { font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.8); }
.ba-label.after { color:var(--gold); }
.ba-stats { display:flex; justify-content:center; gap:64px; flex-wrap:wrap; }
.ba-stat { text-align:center; }
.ba-stat-number { font-family:'Playfair Display',serif; font-size:42px; font-weight:700; color:var(--gold); }
.ba-stat-label  { font-size:13px; color:rgba(255,255,255,.5); margin-top:4px; }

/* ── Reviews ── */
.reviews-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:48px; }
@media(max-width:768px){ .reviews-grid{grid-template-columns:1fr;} }
.review-card { border:1px solid var(--gray-light); border-radius:var(--radius-lg); padding:28px; transition:box-shadow var(--transition); }
.review-card:hover { box-shadow:var(--shadow-lg); }
.review-stars { color:var(--gold); font-size:16px; margin-bottom:12px; }
.review-text  { font-size:14px; color:var(--gray-2); line-height:1.75; margin-bottom:20px; font-style:italic; }
.review-author{ display:flex; align-items:center; gap:12px; }
.review-avatar{ width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:15px; color:white; flex-shrink:0; }
.review-name { font-size:14px; font-weight:700; }
.review-meta { font-size:12px; color:var(--gray-1); }

/* ── FAQ ── */
.faq-list { margin-top:48px; display:flex; flex-direction:column; gap:4px; }
.faq-item { border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); overflow:hidden; }
.faq-item.open .faq-chevron { transform:rotate(180deg); }
.faq-question { width:100%; display:flex; align-items:center; justify-content:space-between; padding:20px 24px; font-size:15px; font-weight:600; color:var(--white); text-align:left; gap:16px; transition:background var(--transition); }
.faq-question:hover { background:rgba(255,255,255,.04); }
.faq-chevron { flex-shrink:0; transition:transform var(--transition); color:var(--gold); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .35s ease,padding .35s ease; padding:0 24px; }
.faq-item.open .faq-answer { max-height:300px; padding:0 24px 20px; }
.faq-answer p { font-size:14px; color:rgba(255,255,255,.65); line-height:1.7; }
.faq-answer p strong { color:rgba(255,255,255,.85); }

/* ── CTA ── */
.cta-logo { width:120px; margin:0 auto; }

/* ── Footer ── */
.site-footer { background:#060606; border-top:1px solid rgba(255,255,255,.06); }
.footer-inner { max-width:1160px; margin:0 auto; padding:64px 24px 48px; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; }
@media(max-width:900px){ .footer-inner{grid-template-columns:1fr 1fr;} }
@media(max-width:560px){ .footer-inner{grid-template-columns:1fr;} }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.footer-logo img { height:30px; }
.footer-logo span { font-family:'Playfair Display',serif; font-size:14px; color:var(--gold); }
.footer-tagline { font-size:13px; color:rgba(255,255,255,.4); margin-bottom:20px; }
.footer-social { display:flex; gap:14px; }
.footer-social a { color:rgba(255,255,255,.4); transition:color var(--transition); }
.footer-social a:hover { color:var(--white); }
.footer-links-col h5 { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,.35); margin-bottom:16px; }
.footer-links-col { display:flex; flex-direction:column; gap:10px; }
.footer-links-col a { font-size:13px; color:rgba(255,255,255,.5); transition:color var(--transition); }
.footer-links-col a:hover { color:var(--white); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.06); padding:20px 24px; text-align:center; font-size:12px; color:rgba(255,255,255,.3); }

/* ── Scroll Reveal ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease,transform .65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── WooCommerce Basic Overrides ── */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background:var(--red) !important;
  color:var(--white) !important;
  border-radius:var(--pill) !important;
  font-weight:700 !important;
  padding:12px 28px !important;
  transition:background var(--transition) !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background:var(--red-dark) !important;
}
.woocommerce .price { color:var(--red) !important; font-weight:800 !important; }
.woocommerce-store-notice { background:var(--red) !important; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width:4px; }
::-webkit-scrollbar-track { background:transparent; }
::-webkit-scrollbar-thumb { background:rgba(0,0,0,.2); border-radius:2px; }


/* ═══════════════════════════════════════════
   EXPERTISE SECTION
═══════════════════════════════════════════ */
.expertise-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255,40,0,.2);
    border-bottom: 1px solid rgba(255,40,0,.2);
    padding: 80px 0;
}
.expertise-box {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
}
.expertise-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.expertise-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,40,0,.12);
    border: 2px solid rgba(255,40,0,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF2800;
}
.expertise-verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FF2800;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
}
.expertise-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF2800;
    margin-bottom: 12px;
}
.expertise-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}
.expertise-headline em {
    color: #FF2800;
    font-style: italic;
}
.expertise-sub {
    color: rgba(255,255,255,.7);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.expertise-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.expertise-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: rgba(255,255,255,.85);
    font-size: 15px;
    line-height: 1.5;
}
.expertise-check {
    width: 24px;
    height: 24px;
    background: #FF2800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.expertise-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.expertise-price-note {
    color: rgba(255,255,255,.5);
    font-size: 14px;
}

/* ═══════════════════════════════════════════
   COMPARE TABLE
═══════════════════════════════════════════ */
.compare-section { padding: 80px 0; }
.compare-table {
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 16px;
    overflow: hidden;
    margin: 40px 0 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(0,0,0,.07);
}
.compare-row:last-child { border-bottom: none; }
.compare-header {
    background: #080808;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
}
.compare-row > div {
    padding: 16px 20px;
    font-size: 14px;
    line-height: 1.4;
}
.compare-feature { color: #222; }
.compare-us { background: rgba(255,40,0,.04); font-weight: 600; }
.compare-them { color: #666; }
.compare-yes { color: #1a7a1a; }
.compare-no { color: #c0392b; }
.compare-neutral { color: #b8860b; }
.compare-header .compare-us {
    background: rgba(255,40,0,.15);
    color: #FF2800;
    font-weight: 800;
    font-size: 15px;
}
.compare-note {
    font-size: 12px;
    color: #999;
    text-align: center;
}

@media (max-width: 768px) {
    .expertise-box {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .expertise-list li { text-align: left; }
    .expertise-cta-row { justify-content: center; }
    .compare-row > div { padding: 12px 10px; font-size: 12px; }
}
