
/* Dolomalo — Luxury Watch Store (Black & Gold theme) */
:root{
  --bg:#070707;
  --panel:#0f0f10;
  --muted:#bfb7ad;
  --gold:#c7a35a;
  --accent:#e6d8b0;
  --radius:12px;
  --container:1100px;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial;color:var(--accent);background:linear-gradient(180deg,#0b0b0b 0%, #0f0f10 100%);-webkit-font-smoothing:antialiased;}
a{color:var(--gold);text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:24px}

/* Header */
.header{background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);backdrop-filter:blur(4px);position:sticky;top:0;z-index:40;border-bottom:1px solid rgba(255,255,255,0.03)}
.header .inner{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:18px 24px}
.brand{display:flex;align-items:center;gap:14px}
.logo-circle{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,var(--gold),#b98d3b);display:flex;align-items:center;justify-content:center;font-weight:800;color:#071014;font-size:20px;box-shadow:0 6px 18px rgba(199,163,90,0.12)}
.site-title{font-weight:700;font-size:18px;letter-spacing:1px;color:var(--accent)}
.nav a{margin-left:18px;font-weight:600;color:var(--muted)}

.header .actions{display:flex;align-items:center;gap:12px}
.cart-btn{background:transparent;border:1px solid rgba(255,255,255,0.04);padding:8px 12px;border-radius:10px;color:var(--accent);cursor:pointer}

/* Hero */
.hero{padding:84px 0;text-align:center}
.hero .kicker{color:var(--muted);text-transform:uppercase;letter-spacing:2px;margin-bottom:12px}
.hero h1{font-size:46px;margin:0 0 12px;line-height:1.02;color:white}
.hero p{max-width:820px;margin:0 auto;color:var(--muted);font-size:16px}
.hero .cta{display:inline-block;margin-top:18px;padding:14px 22px;border-radius:12px;background:linear-gradient(90deg,var(--gold),#b98d3b);color:#071014;font-weight:800}

/* Shop grid */
.products{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px;margin-top:26px}
.card{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));border-radius:14px;padding:14px;box-shadow:0 18px 50px rgba(2,2,2,0.6);border:1px solid rgba(255,255,255,0.02)}
.card img{width:100%;height:220px;object-fit:cover;border-radius:10px}
.card .title{font-weight:700;margin-top:12px;color:white}
.card .price{color:var(--gold);font-weight:800;margin-top:6px}
.card .desc{color:var(--muted);font-size:13px;margin-top:8px}
.card .actions{display:flex;gap:8px;margin-top:12px;align-items:center}

/* Footer */
.footer{padding:36px 0;text-align:center;color:var(--muted);border-top:1px solid rgba(255,255,255,0.02);margin-top:40px}

/* Product detail */
.product-hero{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:start;margin-top:26px}
.product-hero img{width:100%;border-radius:14px;object-fit:cover;max-height:560px}
.product-meta h2{font-size:28px;margin:0;color:white}
.product-meta .price{font-size:22px;margin-top:10px}
.qty{display:inline-block;border:1px solid rgba(255,255,255,0.04);padding:6px 10px;border-radius:8px;background:rgba(255,255,255,0.01);margin-right:8px;color:var(--muted)}

/* Cart drawer/modal */
.cart-drawer{position:fixed;right:20px;top:90px;width:380px;max-width:92%;background:var(--panel);border-radius:12px;padding:14px;box-shadow:0 30px 80px rgba(2,2,2,0.6);display:none;z-index:60}
.cart-drawer.open{display:block}
.cart-item{display:flex;gap:12px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,0.03)}
.cart-item img{width:64px;height:52px;object-fit:cover;border-radius:8px}

/* Responsive */
@media (max-width:880px){
  .product-hero{grid-template-columns:1fr}
  .hero h1{font-size:32px}
  .card img{height:180px}
}
