:root{
  --bg:#0a0a0a;
  --panel:#111111;
  --muted:#bfbfbf;
  --white:#ffffff;
  --accent:#f0e9c0;
  --header-height:86px;
  --max-carousel-width:540px;
  --transition-fast:150ms;
  --transition-smooth:360ms;
}
*{box-sizing:border-box}
html,body{height:100%; margin:0; font-family:"Montserrat",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial; background:var(--bg); color:var(--white)}
a{color:inherit}

/* ===== Topbar (shared) ===== */
.topbar{ position:fixed; top:0; left:0; right:0; height:var(--header-height); z-index:1200; display:flex; align-items:center; justify-content:center; }
.topbar-inner{ position:relative; width:100%; max-width:1320px; display:flex; align-items:center; justify-content:space-between; padding:10px 22px; background:url('/images/wood-texture.png') center/cover no-repeat; box-shadow: 0 8px 30px rgba(0,0,0,0.65); border-radius:0 0 3px 3px; border-top:5px solid rgba(255,255,255,0.02); overflow:visible}
.topbar-inner::before{ content:""; position:absolute; left:50%; transform:translateX(-50%); top:6px; width:760px; height:130px; background: radial-gradient(ellipse at center, rgba(255,235,190,0.30) 0%, rgba(255,230,170,0.18) 20%, rgba(255,220,150,0.08) 40%, transparent 70%); filter: blur(28px); z-index:0; pointer-events:none; border-radius:50%; mix-blend-mode: screen; }
.topbar-inner::after{ content:""; position:absolute; left:50%; transform:translateX(-50%); bottom:-6px; width:100%; height:36px; background: linear-gradient(90deg, rgba(255,235,200,0.04), rgba(255,240,210,0.08), rgba(255,235,200,0.04)); filter: blur(20px); z-index:1; pointer-events:none; border-radius:6px; mix-blend-mode: screen; }
.metal-strip{ position:absolute; left:0; right:0; bottom:-8px; height:8px; z-index:3; pointer-events:none; background: linear-gradient(90deg, #f6f6f6 0%, #d9d9d6 35%, #bdbdbb 65%, #f6f6f6 100%); box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 6px rgba(0,0,0,0.45); transform: translateY(0.5px) scaleY(1.02); }
.topbar-inner > * { position: relative; z-index: 4; }
.logo { height:78px; max-height:94px; transition: transform .18s ease; display:block; margin-left:8px; }
.logo:hover { transform: scale(1.02); }
.nav { display:flex; gap:34px; align-items:center; margin-left:auto; margin-right:12px; }
.nav a { color:var(--white); text-decoration:none; letter-spacing:1px; font-weight:700; font-size:16px; text-transform:uppercase; padding:8px 6px; transition: color var(--transition-fast), transform var(--transition-fast); text-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 2px 2px rgba(0,0,0,0.18), 0 6px 12px rgba(0,0,0,0.36); -webkit-text-stroke: 0.22px rgba(0,0,0,0.22); }
.nav a:hover { color:var(--accent); transform:translateY(-3px); }

.header-lights{ position:fixed; top:78px; left:0; right:0; height:56px; z-index:1150; display:flex; justify-content:center; gap:160px; pointer-events:none; }
.header-lights .spot{ width:220px; height:36px; background: radial-gradient(ellipse at center, rgba(255,235,190,0.30) 0%, rgba(255,235,190,0.12) 40%, transparent 70%); filter:blur(26px); transform:translateY(8px); }

/* Utilities */
.container{ max-width:1220px; margin:0 auto; padding:22px; }
h1,h2,h3{ font-family:"Montserrat",sans-serif }

/* ==== Home specific (index.php uses these classes) ==== */
.hero{ display:flex; gap:30px; align-items:center; margin:40px 0 }
.hero .slide{ width:480px; border-radius:8px; overflow:hidden; box-shadow:0 12px 36px rgba(0,0,0,0.6) }
.hero img{ width:100%; height:auto; display:block }
.hero .info{ flex:1; color:var(--muted) }
.btn-cta{ display:inline-block; margin-top:18px; padding:12px 26px; background:transparent; color:var(--white); border:2px solid var(--white); border-radius:28px; text-decoration:none; font-weight:700 }

/* ==== Care page ==== */
.page-header{ text-align:center; padding:1.2rem 0; margin-bottom:18px }
.site-logo{ max-width:220px; margin:0 auto 0.8rem }
.care-steps{ display:flex; flex-direction:column; gap:2.2rem }
.step-card{ display:flex; background:var(--panel); border-radius:10px; overflow:hidden; box-shadow:0 5px 15px rgba(0,0,0,0.3); border:1px solid #222222; transform:translateY(22px); opacity:0; transition: transform var(--transition-smooth) cubic-bezier(.2,.9,.3,1), opacity var(--transition-smooth) }
.step-card.revealed{ transform:translateY(0); opacity:1 }
.step-image{ flex:1; padding:1.6rem; display:flex; align-items:center; justify-content:center }
.step-image img{ max-width:100%; max-height:280px; border-radius:6px }
.step-content{ flex:1; padding:1.6rem; display:flex; flex-direction:column; justify-content:center }
.step-number{ width:40px; height:40px; border-radius:50%; background:var(--white); color:#0a0a0a; font-weight:700; display:flex; align-items:center; justify-content:center; margin-bottom:0.9rem }
.contact-button{ display:inline-block; padding:1rem 2.6rem; border-radius:6px; background:transparent; color:var(--white); border:2px solid var(--white); text-decoration:none; font-weight:600 }

/* ==== Products ==== */
.product-block{ margin:34px 0; display:grid; gap:18px; grid-template-columns:1fr }
@media (min-width:980px){ .product-block{ grid-template-columns: var(--max-carousel-width) 1fr } }
.carousel-wrap{ position:relative; width:100%; max-width:var(--max-carousel-width); background:linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.01)); padding:12px; border-radius:10px; box-shadow:0 10px 30px rgba(0,0,0,0.45); overflow:hidden }
.carousel-track{ display:flex; transition: transform 600ms cubic-bezier(.2,.9,.3,1); will-change: transform }
.carousel-slide{ min-width:100%; flex:0 0 100%; display:flex; align-items:center; justify-content:center }
.carousel-slide img{ width:100%; height:auto; border-radius:8px; box-shadow:0 12px 34px rgba(0,0,0,0.45); object-fit:cover }
.ctrl{ position:absolute; top:50%; transform:translateY(-50%); width:40px; height:40px; border-radius:50%; background:rgba(0,0,0,0.45); color:var(--white); display:flex; align-items:center; justify-content:center; border:none }
.ctrl.prev{ left:10px } .ctrl.next{ right:10px }
.indicators{ display:flex; gap:8px; justify-content:center; margin-top:8px }
.indicators button{ width:10px; height:10px; border-radius:50%; border:none; background:rgba(255,255,255,0.14) }
.indicators button.active{ background:var(--white); transform:scale(1.2) }
.product-desc{ padding:6px 10px; color:var(--muted); font-size:15px }
.product-desc h3{ color:var(--white) }
.btn-primary{ background:var(--white); color:#0a0a0a; padding:10px 16px; border-radius:8px; font-weight:700; text-decoration:none }
.instagram{ margin-top:10px; display:inline-flex; align-items:center; gap:10px; color:var(--muted); text-decoration:none }
.ig-icon{ width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center; background:#222; border-radius:50%; color:var(--white) }

/* footer */
footer{ margin-top:36px; color:rgba(255,255,255,0.6); text-align:center; padding-bottom:24px }

/* responsive small adjustments */
@media (max-width:979px){
  .carousel-wrap{ max-width:100% }
  .ctrl{ width:36px; height:36px }
  .logo{ height:56px }
}