:root{
  --navy:#0f2540;
  --navy-light:#1c3a63;
  --gold:#c9a24b;
  --bg:#fafafa;
  --border:#e7e9ee;
  --text:#20242c;
  --muted:#6b7280;
}
*{box-sizing:border-box;}
body{margin:0;font-family:-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg);}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}

.topbar-strip{background:var(--navy);color:#fff;font-size:12px;text-align:center;padding:6px;}
.site-header{background:#fff;border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50;}
.site-header .inner{max-width:1200px;margin:0 auto;padding:16px 24px;display:flex;align-items:center;justify-content:space-between;gap:24px;}
.logo{font-size:22px;font-weight:800;color:var(--navy);letter-spacing:.5px;}
.logo span{color:var(--gold);}
.main-nav{display:flex;gap:24px;font-size:14px;font-weight:600;}
.main-nav a:hover{color:var(--gold);}
.search-box{flex:1;max-width:420px;}
.search-box input{width:100%;padding:10px 14px;border:1px solid var(--border);border-radius:24px;font-size:14px;}
.btn{display:inline-block;background:var(--navy);color:#fff;border:none;padding:11px 22px;border-radius:6px;cursor:pointer;font-size:14px;font-weight:600;}
.btn.gold{background:var(--gold);color:#1b1f27;}
.btn.outline{background:transparent;border:1.5px solid #fff;color:#fff;}

.hero{background:linear-gradient(120deg,var(--navy),var(--navy-light));color:#fff;padding:70px 24px;}
.hero .inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;gap:40px;flex-wrap:wrap;}
.hero h1{font-size:38px;line-height:1.2;margin:0 0 14px;max-width:560px;}
.hero p{color:#d7deea;font-size:16px;max-width:520px;margin:0 0 24px;}
.hero .gold-text{color:var(--gold);}

.banner-carousel{position:relative;height:460px;overflow:hidden;}
.banner-slide{position:absolute;inset:0;opacity:0;transition:opacity .9s ease;background-size:cover;background-position:center;}
.banner-slide.active{opacity:1;}
.banner-slide::after{content:'';position:absolute;inset:0;background:linear-gradient(100deg,rgba(15,37,64,.88) 0%,rgba(15,37,64,.55) 45%,rgba(15,37,64,.15) 100%);}
.banner-slide .slide-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;height:100%;display:flex;flex-direction:column;justify-content:center;padding:0 24px;color:#fff;}
.banner-slide h1{font-size:40px;line-height:1.2;margin:0 0 14px;max-width:560px;}
.banner-slide p{color:#e3e8f1;font-size:16px;max-width:500px;margin:0 0 26px;}
.banner-dots{position:absolute;bottom:22px;left:50%;transform:translateX(-50%);z-index:3;display:flex;gap:8px;}
.banner-dots button{width:9px;height:9px;border-radius:50%;border:none;background:rgba(255,255,255,.4);cursor:pointer;padding:0;}
.banner-dots button.active{background:var(--gold);width:22px;border-radius:5px;}

.trust-strip{background:#fff;border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.trust-strip .inner{max-width:1200px;margin:0 auto;padding:28px 24px;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
.trust-item{display:flex;align-items:center;gap:12px;}
.trust-item .emoji{font-size:26px;}
.trust-item h5{margin:0 0 2px;font-size:14px;}
.trust-item p{margin:0;font-size:12px;color:var(--muted);}

.container{max-width:1200px;margin:0 auto;padding:48px 24px;}
.section-title{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:24px;}
.section-title h2{font-size:24px;margin:0;}
.section-title a{font-size:13px;font-weight:600;color:var(--navy);}

.cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(180px,1fr));gap:18px;}
.cat-card{background:#fff;border:1px solid var(--border);border-radius:10px;padding:20px;text-align:center;transition:.15s;}
.cat-card:hover{border-color:var(--gold);transform:translateY(-2px);}
.cat-card .icon{width:52px;height:52px;background:var(--bg);border-radius:50%;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;color:var(--navy);font-weight:700;}
.cat-card h3{font-size:14px;margin:0;}

.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(230px,1fr));gap:22px;}
.product-card{background:#fff;border:1px solid var(--border);border-radius:10px;overflow:hidden;transition:.15s;}
.product-card:hover{box-shadow:0 8px 24px rgba(15,37,64,.08);transform:translateY(-3px);}
.product-card .thumb{aspect-ratio:1/1;background:#f0f1f4;overflow:hidden;}
.product-card .thumb img{width:100%;height:100%;object-fit:cover;}
.product-card .info{padding:14px 16px 18px;}
.product-card .cat-label{font-size:11px;text-transform:uppercase;letter-spacing:.5px;color:var(--gold);font-weight:700;}
.product-card h4{font-size:15px;margin:6px 0 8px;line-height:1.35;min-height:40px;}
.product-card .price{font-weight:700;color:var(--navy);font-size:16px;}
.product-card .price .was{color:var(--muted);text-decoration:line-through;font-weight:400;font-size:13px;margin-left:6px;}
.product-card .moq{font-size:12px;color:var(--muted);margin-top:2px;}

.breadcrumbs{font-size:13px;color:var(--muted);margin-bottom:20px;}
.breadcrumbs a{color:var(--navy);}

.pdp{display:grid;grid-template-columns:1fr 1fr;gap:48px;}
.gallery-main{aspect-ratio:1/1;background:#f0f1f4;border-radius:10px;overflow:hidden;margin-bottom:12px;}
.gallery-main img{width:100%;height:100%;object-fit:cover;}
.gallery-thumbs{display:flex;gap:10px;}
.gallery-thumbs img{width:64px;height:64px;object-fit:cover;border-radius:6px;border:2px solid transparent;cursor:pointer;}
.gallery-thumbs img.active{border-color:var(--gold);}
.pdp h1{font-size:26px;margin:0 0 10px;}
.pdp .price-row{font-size:26px;font-weight:800;color:var(--navy);margin:14px 0;}
.pdp .price-row .was{color:var(--muted);text-decoration:line-through;font-weight:400;font-size:16px;margin-left:8px;}
.pdp .meta-line{font-size:13px;color:var(--muted);margin-bottom:4px;}
.pdp .desc{font-size:14px;line-height:1.7;color:#3b3f47;margin:18px 0;}

.quote-form{background:#fff;border:1px solid var(--border);border-radius:10px;padding:22px;margin-top:24px;}
.quote-form h3{margin:0 0 14px;font-size:16px;}
.quote-form label{font-size:13px;font-weight:600;display:block;margin-top:12px;}
.quote-form input,.quote-form textarea{width:100%;padding:9px 10px;border:1px solid var(--border);border-radius:6px;font-size:14px;margin-top:4px;}

.site-footer{background:var(--navy);color:#c9d2e0;padding:48px 24px 24px;margin-top:40px;}
.site-footer .inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px;font-size:13px;}
.site-footer h4{color:#fff;font-size:14px;margin:0 0 12px;}
.site-footer a{display:block;margin-bottom:8px;color:#c9d2e0;}
.site-footer .bottom{max-width:1200px;margin:32px auto 0;border-top:1px solid rgba(255,255,255,.1);padding-top:18px;font-size:12px;color:#8fa0bd;}

.flash{padding:10px 14px;border-radius:6px;margin-bottom:16px;font-size:14px;}
.flash.ok{background:#e6f4ea;color:#1e7d34;}
