
:root{
  --navy:#071b33;
  --navy2:#0b2b50;
  --blue:#1475df;
  --green:#12a36d;
  --text:#101828;
  --muted:#667085;
  --line:#e5e7eb;
  --soft:#f7f9fc;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:'DM Sans',sans-serif;color:var(--text);background:#fff}
a{text-decoration:none;color:inherit}
button,input,select{font:inherit}
.topbar{min-height:44px;background:var(--navy);color:#fff;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;padding:0 4%;font-size:13px}
.socials{display:flex;gap:20px}.support{text-align:right}
.site-header{position:fixed;top:0px;left:0;right:0;width:100%;
background:rgba(8,8,8,.92);
backdrop-filter:blur(12px);z-index:10;display:flex;align-items:center;justify-content:space-between;padding:0 40px 5%;color:#fff}
.brand{display:flex;align-items:center;gap:16px;font-weight:800;letter-spacing:.08em}
.brand small{display:block;font-size:10px;letter-spacing:.22em;margin-top:2px}
.brand-symbol{width:60px;height:60px;border:2px solid rgba(255,255,255,.7);border-radius:50%;display:grid;place-items:center;font-size:20px}
.site-header nav{display:flex;gap:34px;font-weight:600}
.nav-cta{background:var(--navy);padding:12px 24px;
height:48px;
display:flex;
align-items:center;
justify-content:center;border-radius:8px;font-weight:700}
.hero{
    min-height:760px;
    position:relative;
    color:#fff;
    padding:190px 6% 260px;
    background:
linear-gradient(
90deg,
rgba(82, 61, 18, .95) 0%,
rgba(110, 84, 24, .82) 40%,
rgba(166, 124, 36, .45) 70%,
rgba(212, 175, 55, .10) 100%
),
url("images/hero-lab.jpg");
    background-size: cover;
background-position: 75% center;
background-repeat: no-repeat;
}
.feature-strip{
    position:absolute;
    bottom:70px;
    right:20px;
    left:auto;
    width:460px;
    background:#111111;
    border:1px solid #d4af37;
    border-radius:12px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:20px;
    z-index:2;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
}
.feature-strip div{
    display:flex;
    flex-direction:column;
    gap:5px;
    padding-right:20px;
    border-right:1px solid rgba(255,255,255,.18);
}

.feature-strip div:last-child{
    border-right:0;
}
.feature-strip strong{font-size:17px}.feature-strip span{font-size:13px;color:rgba(255,255,255,.75)}
.catalog-section{
    padding:30px 5% 90px;
    background:#0f0f0f;
}
.catalog-title{text-align:center;max-width:780px;margin:0 auto 38px}
.catalog-title h2{
    color:#ffffff;
}
.catalog-title p{
    color:#bdbdbd;
}
.blue{color:var(--blue)}
.catalog-layout{display:grid;grid-template-columns:250px 1fr;gap:28px;align-items:start}
.filters{display:flex;flex-direction:column;gap:18px;position:sticky;top:20px}
.filter-card{border:1px solid var(--line);border-radius:12px;padding:16px;background:#fff;box-shadow:0 4px 18px rgba(16,24,40,.05)}
.filter-card h3{margin:0 0 12px;font-size:15px}
.category{width:100%;border:0;background:transparent;text-align:left;padding:10px 12px;border-radius:8px;cursor:pointer;color:#344054}
.category.active,.category:hover{background:#eaf3ff;color:#0b66cf;font-weight:700}
.filter-card input{width:100%;padding:12px;border:1px solid var(--line);border-radius:8px}
.catalog-toolbar{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
.catalog-toolbar select{padding:11px 14px;border:1px solid var(--line);border-radius:8px;background:#fff}
.product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.product-card{
    border:1px solid #d4af37;
    border-radius:18px;
    background:#171717;
    padding:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    transition:.3s ease;
}
.product-vial-wrap{height:180px;display:flex;align-items:center;justify-content:center;background:linear-gradient(#fbfcfd,#f4f7fa);border-radius:10px;margin-bottom:14px}
.product-vial{width:76px;height:230px;background:linear-gradient(90deg,#e9edf1,#fff 45%,#dbe1e6);border:1px solid #cbd5df;border-radius:14px 14px 18px 18px;position:relative;box-shadow:0 12px 24px rgba(16,24,40,.16)}
.product-vial:before{content:"";position:absolute;left:9px;right:9px;top:-16px;height:25px;background:#111827;border-radius:8px 8px 3px 3px}
.vial-label{position:absolute;left:7px;right:7px;top:45px;background:var(--navy);color:white;text-align:center;padding:8px 4px;border-radius:3px;font-size:9px;line-height:1.2}
.product-card h3{
    font-size:17px;
    margin:2px 0 8px;
    color:#ffffff;
}
.variant-select{width:100%;padding:10px;border:1px solid var(--line);border-radius:8px;margin:4px 0 12px;background:#fff}
.price-row{display:flex;align-items:baseline;justify-content:space-between;margin-bottom:9px}
.price{
    font-size:22px;
    font-weight:800;
    color:#d4af37;
}
.stock{font-size:12px;color:#bdbdbd;}
.card-actions{display:grid;grid-template-columns:1fr 48px;gap:8px;margin-top:auto}
.details-btn,
.cart-btn{
    background:#111111;
    color:#d4af37;
    border:2px solid #d4af37;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    transition:.3s;
}
.details-btn:hover,
.cart-btn:hover{
    background:#d4af37;
    color:#111111;
}
.reports{padding:65px 6%;background:#f4f8fc;display:flex;align-items:center;justify-content:space-between}
.reports h2,.contact h2{font-size:38px;margin:8px 0}
.reports p{color:var(--muted)}
.reports a,.contact a{background:var(--navy);color:#fff;padding:14px 20px;border-radius:8px;font-weight:700}
.contact{padding:56px 6%;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:space-between}
.floating-cart{position:fixed;right:22px;bottom:22px;z-index:25;border:2px solid #d4af37;background:#111111;color:#fff;border-radius:999px;padding:14px 18px;font-weight:800;box-shadow:0 10px 30px rgba(0,0,0,.2)}
.floating-cart span{background:#d4af37;color:#111111;border-radius:50%;padding:2px 7px;margin-left:6px}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.45);opacity:0;pointer-events:none;z-index:30}
.overlay.show{opacity:1;pointer-events:auto}
.cart-drawer{position:fixed;top:0;right:-430px;width:min(430px,100%);height:100%;background:#fff;z-index:40;transition:.3s;display:flex;flex-direction:column}
.cart-drawer.open{right:0}
.cart-head{display:flex;justify-content:space-between;align-items:center;padding:22px;border-bottom:1px solid var(--line)}
.cart-head button{border:0;background:none;font-size:32px}
.cart-items{flex:1;overflow:auto;padding:20px}
.cart-item{display:grid;grid-template-columns:1fr auto;gap:10px;padding:14px 0;border-bottom:1px solid var(--line)}
.qty{display:flex;align-items:center;gap:7px}
.qty button{width:30px;height:30px;border-radius:50%;border:1px solid var(--line);background:#fff}
.cart-foot{padding:22px;border-top:1px solid var(--line)}

#checkoutBtn{
    background:#111111;
    color:#ffffff;
    border:2px solid #111111;
}

#checkoutBtn:hover{
    background:#333333;
}

#telegramCheckoutBtn{
    background:#d4af37;
    color:#111111;
    border:2px solid #d4af37;
}

#telegramCheckoutBtn:hover{
    background:#c69c1d;
}
.cart-foot>div{display:flex;justify-content:space-between;font-size:19px;margin-bottom:14px}
.cart-foot button{width:100%;border:0;border-radius:8px;background:var(--blue);color:#fff;padding:15px;font-weight:800}
@media(max-width:1100px){.product-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:850px){
  .topbar{grid-template-columns:1fr;text-align:center;padding:10px}.socials,.support{display:none}
  .site-header{top:48px}.site-header nav{display:none}
  .hero{min-height:900px;padding-top:145px}
  .feature-strip{grid-template-columns:1fr 1fr;gap:18px}
  .catalog-layout{grid-template-columns:1fr}.filters{position:static}
  .product-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .product-grid{grid-template-columns:1fr}
  .hero h1{font-size:52px}.hero-description{font-size:16px}
  .feature-strip{position:static;margin:70px -6% 0}
  .hero{padding-bottom:0}
  .reports,.contact{flex-direction:column;align-items:flex-start;gap:20px}
}
.product-image{
    width:180px;
    height:240px;
    object-fit:contain;
    display:block;
    margin:0 auto;
    transition:transform .3s ease;
    filter:drop-shadow(0 14px 16px rgba(16,24,40,.22));
}
.product-detail-modal{
    position:fixed;
    inset:0;
    background:rgba(4,15,35,.72);
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    z-index:1000;
}

.product-detail-modal.open{
    display:flex;
}
.product-detail-modal.open{
    display:flex;
}

.product-detail-box{
    width:min(900px,95%);
    background:#fff;
    border-radius:18px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    padding:34px;
    position:relative;
    box-shadow:0 24px 70px rgba(0,0,0,.28);
}

.detail-close{
    position:absolute;
    top:14px;
    right:16px;
    border:0;
    background:transparent;
    font-size:32px;
    cursor:pointer;
}

.detail-image-wrap{
    min-height:390px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(#fff,#f4f7fb);
    border-radius:14px;
}

.detail-image-wrap img{
    width:220px;
    height:330px;
    object-fit:contain;
}

.detail-info{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:18px;
}

.detail-info h2{
    font-size:38px;
    margin:0;
}

.detail-info p{
    line-height:1.7;
    color:#667085;
}

#detailPrice{
    color:#1263b6;
    font-size:30px;
    margin:0;
}

#detailAddCart{
    border:0;
    border-radius:10px;
    background:#071a31;
    color:#fff;
    padding:15px 20px;
    font-weight:700;
    cursor:pointer;
}

@media(max-width:700px){
    .product-detail-box{
        grid-template-columns:1fr;
        max-height:90vh;
        overflow:auto;
    }

    .detail-image-wrap{
        min-height:260px;
    }

    .detail-image-wrap img{
        width:150px;
        height:220px;
    }
}
.product-vial-wrap{
  position:relative;
}

.bottle-label{
  position:absolute;
  left:50%;
  top:54%;
  transform:translate(-50%, -50%);
  width:64px;
  text-align:center;
  color:#071a31;
  line-height:1.1;
  pointer-events:none;
}

.bottle-label strong{
  display:block;
  font-size:11px;
  letter-spacing:1px;
  font-weight:800;
  border-bottom:2px solid #071a31;
  padding-bottom:3px;
  margin-bottom:4px;
}

.bottle-label span{
  display:block;
  font-size:7px;
  font-weight:700;
  overflow-wrap:anywhere;
}

/* GOLD AND WHITE BOTTLE AREA */
.product-vial-wrap{
    width:100%;
    height:240px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px;
    border-radius:14px;
    border:1px solid #d4af37;
    background:radial-gradient(
        circle at center,
        #ffffff 0%,
        #fffdf5 65%,
        #f3e2a8 100%
    );
    box-sizing:border-box;
    overflow:visible;
}

/* SHOW AND CENTER THE BOTTLE */
.product-vial-wrap .product-image{
    width:165px !important;
    height:215px !important;
    max-width:100% !important;
    object-fit:contain !important;
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    position:relative !important;
    margin:0 auto !important;
    transform:none !important;
    filter:drop-shadow(0 12px 12px rgba(0,0,0,.18));
}

/* REMOVE OLD FLOATING LABEL */
.bottle-label{
    display:none !important;
}
/* PROFESSIONAL LAB PRODUCT IMAGE AREA */
.product-vial-wrap{
    height:250px;
    padding:18px;
    border-radius:16px;
    border:1px solid #d4af37;
    overflow:hidden;
    position:relative;
    background:
        linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.84)),
        url("images/hero-lab.jpg") center/cover no-repeat;
    box-shadow:inset 0 0 35px rgba(212,175,55,.18);
}

.product-vial-wrap::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.15),
        rgba(212,175,55,.12)
    );
    pointer-events:none;
}

.product-image{
    position:relative !important;
    z-index:2;
    width:180px !important;
    height:220px !important;
    object-fit:contain !important;
    filter:drop-shadow(0 16px 14px rgba(0,0,0,.28));
}
/* PRODUCT RATINGS */
.product-rating{
    display:flex;
    align-items:center;
    gap:6px;
    margin:5px 0 9px;
    font-size:13px;
}

.stars{
    color:#d4af37;
    letter-spacing:1px;
    font-size:16px;
}

.product-rating strong{
    color:#111111;
}

.review-count{
    color:#6b7280;
    font-size:11px;
}

/* PRODUCT CATEGORY TAGS */
.product-tags{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin-bottom:10px;
}

.product-tags span{
    background:#fffaf0;
    color:#6b4e00;
    border:1px solid #d4af37;
    border-radius:999px;
    padding:5px 9px;
    font-size:10px;
    font-weight:700;
}

/* FINAL BLACK + GOLD WEBSITE THEME */

:root{
    --navy:#111111;
    --blue:#d4af37;
    --gold:#d4af37;
}

/* Top bars and navigation */
.topbar,
.site-header,
.feature-strip{
    background:#111111 !important;
    color:#ffffff !important;
}

.site-header a,
.topbar a,
.nav a{
    color:#ffffff !important;
}

.site-header a:hover,
.topbar a:hover,
.nav a:hover{
    color:#d4af37 !important;
}

/* Feature strip */
.feature-strip strong{
    color:#d4af37 !important;
}

.feature-strip span{
    color:#ffffff !important;
}

/* Hero: premium dark gold overlay */
.hero{
    background:
        linear-gradient(
            90deg,
            rgba(17,17,17,.92) 0%,
            rgba(55,42,18,.78) 42%,
            rgba(145,108,30,.35) 72%,
            rgba(212,175,55,.05) 100%
        ),
        url("images/hero-lab.jpg") center/cover no-repeat !important;
}

/* Main hero text */
.hero h1,
.hero-description,
.hero .eyebrow{
    color:#ffffff !important;
}

.hero .eyebrow{
    color:#d4af37 !important;
}

/* View Products link/button */
.hero a,
.hero .cta,
.nav-cta{
    background:#111111 !important;
    color:#d4af37 !important;
    border:2px solid #d4af37 !important;
}

.hero a:hover,
.hero .cta:hover,
.nav-cta:hover{
    background:#d4af37 !important;
    color:#111111 !important;
}

/* Product price and titles */
.price,
.product-card h3,
.catalog-title h2{
    color:#111111 !important;
}

/* Product buttons */
.details-btn,
.cart-btn,
.floating-cart{
    background:#111111 !important;
    color:#d4af37 !important;
    border:2px solid #d4af37 !important;
}

.details-btn:hover,
.cart-btn:hover,
.floating-cart:hover{
    background:#d4af37 !important;
    color:#111111 !important;
}

/* Cart number */
.floating-cart span{
    background:#d4af37 !important;
    color:#111111 !important;
}

/* Active category */
.category.active,
.category:hover{
    background:#fff8df !important;
    color:#111111 !important;
    border-color:#d4af37 !important;
}

/* Inputs and dropdowns */
.variant-select,
.filter-card input,
.catalog-toolbar select{
    border:1px solid #d4af37 !important;
    color:#111111 !important;
    background:#ffffff !important;
}

/* Stars and badges */
.stars{
    color:#d4af37 !important;
}

.product-tags span{
    color:#111111 !important;
    background:#fff8df !important;
    border:1px solid #d4af37 !important;
}

.brand {
    width:65px;
    height:65px;
    object-fit:contain;
    margin-right:12px;
}

/* PREMIUM BLACK AND GOLD HEADER */
.site-header{
    background:#111111 !important;
    padding:16px 30px !important;
    border-bottom:1px solid #d4af37 !important;
}

.site-header nav a{
    color:#ffffff !important;
}

.site-header nav a:hover{
    color:#d4af37 !important;
}

.brand > span{
    color:#d4af37 !important;
}

.brand-logo{
    width:100px;
    height:100px;
    object-fit:contain;
    margin-right:15px;
}
.brand-logo{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:50%;
    background:#111111;
}
.payment-options{
    padding:65px 6%;
    background:#111111;
    color:#ffffff;
    text-align:center;
}

.payment-options h2{
    font-size:38px;
    margin:8px 0 28px;
}

.section-label{
    color:#d4af37;
    font-weight:700;
    letter-spacing:2px;
}

.payment-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
    max-width:1000px;
    margin:0 auto;
}

.payment-grid div{
    padding:20px 12px;
    border:2px solid #d4af37;
    border-radius:10px;
    background:#1b1b1b;
    color:#d4af37;
    font-weight:700;
    font-size:18px;
}

.payment-note{
    margin-top:24px;
    color:#dddddd;
}

@media(max-width:700px){
    .payment-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .payment-options h2{
        font-size:30px;
    }
}

/* Premium payment section inside cart */
.cart-payment-options{
    margin:18px 0 14px;
    padding:16px;
    background:#111111;
    border:1px solid #d4af37;
    border-radius:12px;
}

.payment-title{
    margin:0 0 12px;
    color:#d4af37;
    font-size:15px;
    font-weight:700;
    text-align:center;
    letter-spacing:.5px;
}

.cart-payment-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:8px;
}

.payment-choice{
    background:#1b1b1b;
    color:#ffffff;
    border:1px solid #555555;
    border-radius:8px;
    padding:10px 6px;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

.payment-choice:hover{
    border-color:#d4af37;
    color:#d4af37;
}

.payment-choice.selected{
    background:#d4af37;
    color:#111111;
    border-color:#d4af37;
}

#selectedPaymentText{
    margin:11px 0 0;
    color:#dddddd;
    font-size:12px;
    text-align:center;
}

#checkoutBtn{
    background:#111111;
    color:#ffffff;
    border:1px solid #d4af37;
}

#telegramCheckoutBtn{
    background:#d4af37;
    color:#111111;
    border:1px solid #d4af37;
    margin-top:8px;
}

/* Premium cart payment design */
.cart-payment-options{
    margin:18px 0 14px;
    padding:18px;
    background:linear-gradient(145deg,#0b0b0b,#171717);
    border:1px solid #d4af37;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.22);
}

.payment-title{
    margin:0 0 14px;
    color:#d4af37;
    font-size:14px;
    font-weight:800;
    text-align:left;
    letter-spacing:1px;
    text-transform:uppercase;
}

.cart-payment-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.payment-choice{
    width:100%;
    min-height:44px;
    padding:10px 8px;
    background:#202020;
    color:#ffffff;
    border:1px solid #444444;
    border-radius:9px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
}

.payment-choice:hover{
    border-color:#d4af37;
    color:#d4af37;
    transform:translateY(-1px);
}

.payment-choice.selected{
    background:#d4af37;
    color:#111111;
    border-color:#d4af37;
    box-shadow:0 4px 12px rgba(212,175,55,.25);
}

#selectedPaymentText{
    margin:12px 0 0;
    padding-top:10px;
    border-top:1px solid #333333;
    color:#d0d0d0;
    font-size:12px;
    text-align:left;
}

#checkoutBtn,
#telegramCheckoutBtn{
    width:100%;
    min-height:48px;
    border-radius:9px;
    font-size:14px;
    font-weight:800;
    letter-spacing:.2px;
}

#checkoutBtn{
    margin-top:12px;
    background:#111111;
    color:#ffffff;
    border:1px solid #d4af37;
}

#checkoutBtn:hover{
    background:#242424;
}

#telegramCheckoutBtn{
    margin-top:9px;
    background:#d4af37;
    color:#111111;
    border:1px solid #d4af37;
}

#telegramCheckoutBtn:hover{
    background:#c69c1d;
}

@media(max-width:500px){
    .cart-payment-options{
        padding:14px;
    }

    .cart-payment-grid{
        grid-template-columns:1fr 1fr;
        gap:8px;
    }
}

/* Final clean payment layout */
.cart-payment-options{
    display:block !important;
    width:100% !important;
    box-sizing:border-box;
}

.payment-title{
    display:block !important;
    width:100% !important;
    margin:0 0 14px !important;
    text-align:center !important;
}

.cart-payment-grid{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    width:100% !important;
    gap:9px !important;
}

.payment-choice{
    width:100% !important;
    min-height:42px;
    background:#1a1a1a !important;
    color:#ffffff !important;
    border:1px solid #555555 !important;
}

.payment-choice:hover{
    color:#d4af37 !important;
    border-color:#d4af37 !important;
}

.payment-choice.selected{
    background:#d4af37 !important;
    color:#111111 !important;
    border-color:#d4af37 !important;
}

#selectedPaymentText{
    display:block !important;
    width:100% !important;
    margin:12px 0 0 !important;
    text-align:center !important;
    color:#dddddd !important;
}

/* Premium homepage hero design */

.hero{
    min-height:700px;
    position:relative;
    display:flex;
    align-items:center;
    padding:110px 7%;
    color:#ffffff;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.96) 0%,
        rgba(0,0,0,.84) 42%,
        rgba(0,0,0,.45) 72%,
        rgba(0,0,0,.18) 100%
    );
    z-index:1;
}

.hero-badge{
    display:inline-block;
    margin-bottom:22px;
    color:#d4af37;
    font-size:14px;
    font-weight:800;
    letter-spacing:1.5px;
}

.hero-title{
    margin:0;
    max-width:850px;
    color:#ffffff;
    font-size:clamp(56px,7vw,90px);
    line-height:1.05;
    font-weight:900;
    letter-spacing:-2px;
}

.hero-title span{
    display:block;
    color:#d4af37;
}

.hero-description{
    max-width:720px;
    margin:28px 0 42px;
    color:#e7e7e7;
    font-size:18px;
    line-height:1.7;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:0 28px;
    border-radius:10px;
    font-size:14px;
    font-weight:800;
    letter-spacing:.3px;
    text-decoration:none;
    transition:all .25s ease;
    box-shadow:0 8px 22px rgba(0,0,0,.25);
}
.hero-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(212,175,55,.25);
}

.hero-btn-gold{
    background:#d4af37;
    color:#111111;
    border:1px solid #d4af37;
}

.hero-btn-dark{
    background:rgba(10,10,10,.72);
    color:#ffffff;
    border:1px solid rgba(255,255,255,.55);
}

.hero-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:700px){
    .hero{
        min-height:620px;
        padding:90px 24px;
    }

    .hero-title{
        font-size:42px;
        letter-spacing:-1px;
    }

    .hero-description{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
    }
}

/* Premium homepage hero */
.hero{
    min-height:720px;
    position:relative;
    display:flex;
    align-items:center;
    padding:90px 7%;
    color:#ffffff;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,5,5,.92) 0%,
        rgba(5,5,5,.76) 45%,
        rgba(5,5,5,.28) 100%
    );
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    width:min(700px,100%);
}

.hero-badge{
    display:inline-block;
    margin-bottom:18px;
    color:#d4af37;
    font-size:13px;
    font-weight:800;
    letter-spacing:1.8px;
}

.hero-title{
    margin:0;
    max-width:760px;
    font-size:clamp(42px,5vw,72px);
    line-height:1.05;
    letter-spacing:-1.5px;
    color:#ffffff;
}

.hero-title span{
    display:block;
    margin-top:8px;
    color:#d4af37;
}

.hero-description{
    max-width:680px;
    margin:24px 0 30px;
    color:#e1e1e1;
    font-size:17px;
    line-height:1.75;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 25px;
    border-radius:7px;
    font-size:14px;
    font-weight:800;
    text-decoration:none;
    transition:transform .2s ease, background .2s ease;
}

.hero-btn:hover{
    transform:translateY(-2px);
}

.hero-btn-gold{
    background:#d4af37;
    color:#111111;
    border:1px solid #d4af37;
}

.hero-btn-dark{
    background:rgba(17,17,17,.78);
    color:#ffffff;
    border:1px solid rgba(255,255,255,.45);
}

@media(max-width:850px){
    .hero{
        min-height:650px;
        padding:75px 6%;
    }

    .hero-title{
        font-size:clamp(38px,9vw,56px);
    }

    .hero-description{
        font-size:15px;
    }
}

.product-card h3{
    color:#ffffff !important;
}

.product-card .price{
    color:#d4af37 !important;
}

.product-card .stock{
    color:#bdbdbd !important;
}

.product-card .verified,
.product-card .rating-text{
    color:#d0d0d0 !important;
}