/* Theme variables */
:root{
  --bg: #0f0f0f;
  --section: #151515;
  --accent: #D6C2A8;
  --text: #f5f5f5;
  --rounded: 10px;
  --max-width: 1200px;
}

/* Reset & base */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  scroll-behavior:smooth;
}
.container{max-width:var(--max-width);margin:0 auto;padding:0 1rem}

@media(min-width:992px){
  .container{padding:0 2rem}
}

/* Section spacing: vertical rhythm for premium layout */
section{padding:48px 0}

@media(min-width:768px){
  section{padding:65px 0}
}

@media(min-width:992px){
  section{padding:80px 0}
}
/* inner centered width helper */
.section-inner{max-width:1100px;margin:0 auto}

a{color:inherit;text-decoration:none}

/* Header */
.site-header{position:sticky;top:0;background:transparent;backdrop-filter:blur(6px);z-index:60;transition:background .28s ease,box-shadow .28s ease}
.site-header.scrolled{background:rgba(15,15,15,0.7);box-shadow:0 6px 30px rgba(0,0,0,0.6)}
.nav-wrap{display:flex;align-items:center;justify-content:space-between;padding:1rem}
.logo{font-weight:700;font-size:1.1rem;color:var(--accent)}
.nav ul{display:flex;gap:1rem;align-items:center;margin:0;padding:0;list-style:none}
.nav a{padding:.5rem .75rem;border-radius:8px;transition:background .2s ease,color .18s ease}
.nav a:hover{background:rgba(214,194,168,0.04)}
.nav a.active{color:var(--accent)}

/* Hamburger menu icon */
.hamburger{display:block;width:28px;height:2px;background:var(--text);position:relative;transition:background .25s ease}
.hamburger::before,.hamburger::after{content:"";position:absolute;left:0;width:28px;height:2px;background:var(--text);transition:transform .25s ease}
.hamburger::before{top:-8px}
.hamburger::after{top:8px}

/* Animated hamburger when menu is open */
.nav-toggle.open .hamburger{background:transparent}
.nav-toggle.open .hamburger::before{transform:translateY(10px) rotate(45deg)}
.nav-toggle.open .hamburger::after{transform:translateY(-10px) rotate(-45deg)}

/* Mobile nav: show hamburger, hide desktop nav until expanded */
.nav{position:fixed;inset:60px 0 0 0;background:var(--section);padding:1rem;transform:translateY(-110%);transition:transform .28s ease;pointer-events:none;z-index:50;overflow-y:auto;max-height:calc(100vh - 60px)}
.nav.open{transform:none;pointer-events:auto}
.nav ul{flex-direction:column;gap:0.5rem}
.nav-toggle{background:none;border:0;color:var(--text);display:block;cursor:pointer}

/* Desktop nav: hide hamburger, show nav inline */
@media(min-width:768px){
  .nav{position:static;transform:none;pointer-events:auto;background:transparent;padding:0;z-index:auto;overflow:visible;max-height:none}
  .nav ul{flex-direction:row}
  .nav-toggle{display:none}
}

img{max-width:100%;height:auto;display:block}
.hero-visual img{width:100%;max-width:520px;border-radius:var(--rounded);box-shadow:0 12px 40px rgba(0,0,0,0.6)}
.product img{width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:8px}
.category-card img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.subcategory-grid .card img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;border-radius:12px 12px 0 0}

/* Hero */
.hero{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:auto;
  max-width:1200px;
  margin:0 auto;
  padding:30px 16px;
  gap:40px;
  flex-direction:column;
}
.hero-left{flex:1;width:100%;text-align:center}
.hero-left h1{font-size:1.5rem;line-height:1.2;margin:0 0 .75rem;font-weight:800}
.hero-left p{opacity:.95;font-size:0.9rem}
.hero-right{flex:1;width:100%;display:flex;justify-content:center;align-items:center}
.hero-visual img{width:100%;max-width:520px;border-radius:var(--rounded);box-shadow:0 12px 40px rgba(0,0,0,0.6)}

/* Tablet breakpoint */
@media(min-width:768px){
  .hero{
    padding:50px 30px;
    flex-direction:row;
    min-height:auto;
    text-align:left;
  }
  .hero-left{text-align:left}
  .hero-left h1{font-size:2rem}
  .hero-left p{font-size:1rem}
}

/* Desktop breakpoint */
@media(min-width:992px){
  .hero{
    padding:0 40px;
    min-height:100vh;
    gap:80px;
  }
  .hero-left h1{font-size:2.4rem;line-height:1.05;margin:0 0 .5rem}
  .hero-left p{opacity:.95}
}

/* Products grid */
.products-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem;margin-top:1rem}
.product{background:var(--section);padding:1rem;border-radius:var(--rounded);box-shadow:0 10px 40px rgba(0,0,0,0.6);display:flex;flex-direction:column;gap:0.75rem;align-items:stretch;transition:transform .22s ease,box-shadow .22s ease}
.product:hover{transform:translateY(-6px);box-shadow:0 18px 50px rgba(0,0,0,0.7)}
.product img{width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:8px}
.product-body h3{margin:0.25rem 0;font-size:0.95rem;font-weight:600}
.product .desc{margin:0.5rem 0;font-size:0.85rem;color:rgba(245,245,245,0.7);line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

@media(min-width:600px){
  .products-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}
}
@media(min-width:768px){
  .products-grid{grid-template-columns:repeat(3,1fr);gap:1.5rem}
}
@media(min-width:992px){
  .products-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}
}
.meta{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.25rem}
.price{font-weight:700;color:var(--accent)}
.rating{color:gold;font-size:0.9rem}
.product-actions{display:flex;gap:.5rem}
.deal-badge{position:absolute;right:12px;top:12px;background:var(--accent);color:var(--bg);padding:6px 10px;border-radius:8px;font-weight:700;box-shadow:0 8px 24px rgba(214,194,168,0.08)}
.btn{display:inline-block;background:var(--text);color:var(--section);padding:.6rem .9rem;border-radius:8px;font-weight:600;transition:transform .15s ease,box-shadow .18s ease}
.btn:hover{transform:translateY(-3px);box-shadow:0 12px 30px rgba(214,194,168,0.12)}
.btn-outline{background:transparent;border:1px solid rgba(245,245,245,0.06);color:var(--text)}
.btn-accent{background:var(--accent);color:var(--bg);box-shadow:0 8px 24px rgba(214,194,168,0.06)}
.btn-accent:hover{box-shadow:0 18px 60px rgba(214,194,168,0.14)}

/* Product detail card (flex layout) */
.product-detail .product-card{background:var(--section);padding:1.25rem;border-radius:var(--rounded);box-shadow:0 12px 50px rgba(0,0,0,0.6)}
.product-detail .product-card-inner{display:flex;flex-direction:column;gap:1rem}
.product-detail .product-media img{width:100%;max-width:520px;border-radius:12px;box-shadow:0 18px 60px rgba(0,0,0,0.6)}
.product-detail .product-media{display:block;text-align:center}
.product-detail .product-info{display:flex;flex-direction:column;gap:0.75rem}
.product-detail .product-info .meta{margin:0}
.product-detail .button-group{display:flex;gap:12px;align-items:center;margin-top:0}
.product-detail .product-info section{margin:0;padding-top:0}

@media(min-width:768px){
  .product-detail .product-card-inner{flex-direction:row;align-items:flex-start}
  .product-detail .product-media{flex:0 0 420px}
  .product-detail .product-info{flex:1}
}
.categories-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem}
.category-card{position:relative;overflow:hidden;border-radius:var(--rounded);display:block}
.category-card img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;transition:transform .5s ease}
.category-card .overlay{position:absolute;inset:0;background:linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.45));display:flex;align-items:flex-end;padding:16px}
.category-card h3{margin:0;color:var(--text);font-size:1.1rem}
.category-card:hover img{transform:scale(1.06)}

@media(min-width:600px){
  .categories-grid{grid-template-columns:repeat(2,1fr);gap:1.25rem}
}
@media(min-width:992px){
  .categories-grid{grid-template-columns:repeat(4,1fr);gap:1.5rem}
}

/* Subcategory grid cards - modern premium dark theme */
.subcategory-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1.5rem;margin-top:1rem}
.subcategory-grid .card{background:var(--section);padding:1rem;border-radius:var(--rounded);box-shadow:0 10px 40px rgba(0,0,0,0.6);display:flex;flex-direction:column;gap:0.75rem;transition:transform .22s ease,box-shadow .22s ease}
.subcategory-grid .card img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;border-radius:12px 12px 0 0}
.subcategory-grid .card h3{margin:0;color:var(--text);font-size:1.1rem}
.subcategory-grid .card:hover{transform:translateY(-8px);box-shadow:0 18px 60px rgba(0,0,0,0.7)}
.subcategory-grid .card:focus-visible{outline:2px solid var(--accent);outline-offset:4px}

/* Category header styling */
.category-header{margin:20px 0 28px}
.category-header h1{font-size:2rem;margin:0 0 .35rem;color:var(--text);font-weight:800}
.category-header p{margin:0;color:rgba(245,245,245,0.85)}

/* Responsive categories */
@media(min-width:768px){
  .subcategory-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:992px){
  .subcategory-grid{grid-template-columns:repeat(4,1fr)}
}

/* Newsletter */
.newsletter{background:linear-gradient(90deg, rgba(214,194,168,0.04), transparent);padding:30px 1.5rem;border-radius:12px;display:flex;gap:1rem;align-items:center;justify-content:center;flex-direction:column;text-align:center}
.newsletter form{display:flex;gap:0.75rem;flex-direction:column;width:100%;max-width:400px}
.newsletter input[type="email"]{padding:.75rem 1rem;border-radius:8px;border:1px solid rgba(255,255,255,0.04);background:transparent;color:var(--text);width:100%}

@media(min-width:768px){
  .newsletter{
    padding:40px;
    flex-direction:row;
    text-align:left;
    justify-content:space-between;
  }
  .newsletter form{flex-direction:row;max-width:none}
}

/* Small utility for affiliate disclosure blocks */
.affiliate-disclosure{margin-top:16px;opacity:.9;font-size:.95rem}

/* Why choose - responsive grid */
.why-grid{display:grid;grid-template-columns:1fr;gap:24px}
.why-card{background:var(--section);padding:24px;border-radius:var(--rounded);box-shadow:0 10px 30px rgba(0,0,0,0.55)}

@media(min-width:768px){
  .why-grid{grid-template-columns:repeat(3,1fr)}
}

/* Improved spacing for premium breathing room */
.why-choose{padding-top:48px;padding-bottom:40px;border-top:1px solid rgba(255,255,255,0.04);background:transparent}
.newsletter{padding-top:48px;padding-bottom:40px;border-top:1px solid rgba(255,255,255,0.04);background:linear-gradient(90deg, rgba(255,255,255,0.01), transparent)}

@media(min-width:768px){
  .why-choose,.newsletter{padding-top:65px;padding-bottom:60px}
}

@media(min-width:992px){
  .why-choose,.newsletter{padding-top:80px;padding-bottom:80px}
}

/* Footer social icons */
.socials{display:flex;gap:18px;align-items:center;justify-content:center;flex-wrap:wrap}
.social-icon{display:inline-flex;width:44px;height:44px;align-items:center;justify-content:center;background:rgba(255,255,255,0.03);border-radius:50%;transition:background .3s ease,transform .3s ease}
.social-icon svg{width:20px;height:20px;color:var(--text);fill:currentColor;transition:color .3s ease}
.social-icon:hover{background:var(--accent);transform:translateY(-3px)}
.social-icon:hover svg{color:#0f0f0f}

@media(min-width:768px){
  .socials{justify-content:flex-end}
}

/* Footer */
.site-footer{border-top:1px solid rgba(255,255,255,0.03);padding:2rem 0;margin-top:2rem}
.footer-grid{display:grid;grid-template-columns:1fr;gap:1rem}
.footer-grid h5,h4{margin:0 0 .5rem}
.socials a{display:inline-block;margin-right:.5rem;padding:.4rem .6rem;background:rgba(255,255,255,0.02);border-radius:6px}
.copyright{text-align:center;margin-top:1rem;opacity:.7}

@media(min-width:768px){
  .footer-grid{grid-template-columns:1fr 1fr 1fr 1fr;align-items:start}
  .footer-grid > div:last-child{display:flex;flex-direction:column;align-items:flex-end}
}

/* Utility */
.hidden{display:none}

/* subtle reveal */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .6s ease,transform .6s ease}
.reveal.visible{opacity:1;transform:none}

/* ===== Product Detail Page Sections ===== */

/* Product Main Section */
.product-main{margin-bottom:2rem}
.product-main .product-card{background:linear-gradient(135deg,rgba(21,21,21,0.8),rgba(15,15,15,0.6));padding:2rem;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,0.7)}
.product-main h1{font-size:1.8rem;font-weight:800;margin:0 0 1rem 0;line-height:1.2}
.product-main .meta{margin-bottom:1rem;gap:1.5rem}
.product-main .meta .price{font-size:1.4rem}
.product-main .meta .rating{font-size:1.1rem}
.product-main .button-group{gap:1rem;margin-bottom:1.5rem}
.product-main .desc{font-size:1rem;line-height:1.6;color:rgba(245,245,245,0.9)}

/* Product Description Section */
.product-description{background:var(--section);padding:2rem;border-radius:12px;margin-bottom:2rem;box-shadow:0 10px 40px rgba(0,0,0,0.5)}
.product-description h2{font-size:1.5rem;margin:0 0 1rem 0}
.product-description > p{line-height:1.7;color:rgba(245,245,245,0.9);margin-bottom:1.5rem}
.features-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-top:1.5rem}
.features-grid h3{font-size:1.1rem;margin:0 0 0.75rem 0}
.features-grid ul{list-style:disc;list-style-position:inside;margin:0;padding:0}
.features-grid li{color:rgba(245,245,245,0.85);margin-bottom:0.5rem}
.features-grid table{width:100%;border-collapse:collapse;text-align:left;background:transparent}
.features-grid td{padding:0.75rem 1rem;border-bottom:1px solid rgba(255,255,255,0.08)}
.features-grid td:first-child{font-weight:600;color:var(--accent);width:30%}

@media(min-width:768px){
  .features-grid{grid-template-columns:1fr 1fr}
}

/* Reviews Section */
.product-reviews{background:var(--section);padding:2rem;border-radius:12px;box-shadow:0 10px 40px rgba(0,0,0,0.5)}
.product-reviews h2{font-size:1.5rem;margin:0 0 1.5rem 0}
.reviews-summary{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-bottom:2rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.08)}
.aggregate{text-align:center}
.aggregate strong{font-size:2.5rem;display:block;color:var(--accent)}
.muted{color:rgba(245,245,245,0.6);font-size:0.9rem}
.rating-breakdown{display:flex;flex-direction:column;gap:1rem}
.bar{display:grid;grid-template-columns:60px 1fr 50px;gap:1rem;align-items:center}
.bar > span{font-size:0.9rem;color:rgba(245,245,245,0.8)}
.bar-bg{background:rgba(255,255,255,0.06);border-radius:9999px;height:12px;overflow:hidden}
.bar-fill{background:linear-gradient(90deg,var(--accent),#e6d6bf);height:100%;border-radius:9999px;display:block}
.bar > small{text-align:right;font-size:0.85rem;color:rgba(245,245,245,0.7)}

.review-cards{display:grid;grid-template-columns:1fr;gap:1.5rem}
.review-card{background:rgba(255,255,255,0.02);padding:1.5rem;border-radius:10px;border:1px solid rgba(255,255,255,0.05)}
.review-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:0.75rem}
.review-header strong{font-weight:600}
.review-header .rating{color:gold;font-weight:600}
.review-card p{margin:0 0 0.75rem 0;line-height:1.6;color:rgba(245,245,245,0.85)}
.small{font-size:0.85rem}

@media(min-width:768px){
  .reviews-summary{grid-template-columns:200px 1fr;align-items:start}
  .review-cards{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:992px){
  .review-cards{grid-template-columns:repeat(3,1fr)}
}

/* ===== PRODUCT HERO SECTION ===== */
.product-hero{margin-bottom:3rem}
.hero-container{display:flex;flex-direction:column;gap:2rem;align-items:stretch}
.hero-image{text-align:center}
.hero-image img{width:100%;max-width:520px;border-radius:var(--rounded);box-shadow:0 20px 60px rgba(0,0,0,0.7);display:block;margin:0 auto}

.hero-content{background:linear-gradient(135deg,rgba(21,21,21,0.8),rgba(15,15,15,0.6));padding:2rem;border-radius:var(--rounded);box-shadow:0 20px 60px rgba(0,0,0,0.7)}
.hero-info{display:flex;flex-direction:column;gap:1.25rem}

#product-title{font-size:1.8rem;font-weight:800;margin:0;line-height:1.2;color:var(--text)}

.rating-section{display:flex;align-items:center;gap:0.75rem;flex-wrap:wrap}
.rating-section .stars{font-size:1.2rem;color:gold}
.rating-section .rating-value{font-weight:700;color:var(--accent);font-size:1.1rem}
.rating-section .review-count{font-size:0.95rem;color:rgba(245,245,245,0.7)}

.price-section{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.current-price{font-size:2rem;font-weight:800;color:var(--accent)}
.old-price{font-size:1.1rem;color:rgba(245,245,245,0.5);text-decoration:line-through}
.discount-badge{background:#dc2626;color:white;padding:0.4rem 0.8rem;border-radius:8px;font-size:0.85rem;font-weight:600}

.short-desc{font-size:1rem;line-height:1.6;color:rgba(245,245,245,0.9);margin:0}

.button-group{display:flex;gap:1rem;align-items:center;flex-wrap:wrap;margin-top:0.5rem}
.button-group .btn{padding:0.75rem 1.5rem;font-size:1rem;border:none;cursor:pointer}

@media(min-width:768px){
  .hero-container{flex-direction:row;align-items:flex-start;gap:2.5rem}
  .hero-image{flex:0 0 420px}
  .hero-content{flex:1}
}

/* ===== PRODUCT DESCRIPTION ===== */
.product-description{background:var(--section);padding:2.5rem;border-radius:var(--rounded);margin-bottom:3rem;box-shadow:0 12px 40px rgba(0,0,0,0.5)}
.product-description h2{font-size:1.5rem;font-weight:700;margin:0 0 1.5rem 0}
.product-description > p{font-size:1rem;line-height:1.7;color:rgba(245,245,245,0.9);margin:0 0 1.5rem 0}

.description-grid{display:grid;grid-template-columns:1fr;gap:2.5rem}
.features-block,.specs-block{display:flex;flex-direction:column;gap:1rem}
.features-block h3,.specs-block h3{font-size:1.1rem;font-weight:700;margin:0;color:var(--accent)}
.features-block ul{list-style:disc;list-style-position:inside;margin:0;padding:0}
.features-block li{color:rgba(245,245,245,0.85);margin-bottom:0.5rem}

.specs-block table{width:100%;border-collapse:collapse;background:transparent}
.specs-block tbody tr{border-bottom:1px solid rgba(255,255,255,0.08)}
.specs-block td{padding:1rem 0;color:rgba(245,245,245,0.9)}
.specs-block td:first-child{font-weight:600;color:var(--accent);width:35%}

@media(min-width:768px){
  .description-grid{grid-template-columns:1fr 1fr}
}

/* ===== SIMILAR PRODUCTS SECTION ===== */
.similar-products{margin-bottom:3rem}
.similar-products h2{font-size:1.5rem;font-weight:700;margin:0 0 2rem 0}

.similar-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.similar-card{background:var(--section);border-radius:var(--rounded);box-shadow:0 10px 30px rgba(0,0,0,0.5);overflow:hidden;display:flex;flex-direction:column;gap:1rem;padding:1.25rem;transition:transform 0.3s ease,box-shadow 0.3s ease}
.similar-card:hover{transform:translateY(-8px);box-shadow:0 18px 50px rgba(0,0,0,0.6)}

.similar-card img{width:100%;aspect-ratio:3/4;object-fit:cover;border-radius:8px}
.similar-card h3{font-size:1rem;font-weight:600;margin:0;color:var(--text)}
.similar-card-desc{font-size:0.85rem;color:rgba(245,245,245,0.7);margin:0.5rem 0;line-height:1.4;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

.card-meta{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.card-price{font-size:1.2rem;font-weight:700;color:var(--accent)}
.card-rating{font-size:0.95rem;color:rgba(245,245,245,0.8)}



/* Marketplace prices in similar products */
.card-prices{display:flex;gap:0.75rem;flex-wrap:wrap;width:100%;justify-content:space-between}
.market-price{display:flex;flex-direction:column;gap:0.25rem;font-size:0.85rem;background:rgba(214,194,168,0.08);padding:0.6rem;border-radius:6px;flex:1;min-width:120px}
.market-label{font-weight:600;color:var(--accent);font-size:0.75rem;text-transform:uppercase;opacity:0.9}
.price-current{font-weight:700;color:var(--text);font-size:1rem}
.price-old{text-decoration:line-through;color:rgba(245,245,245,0.5);font-size:0.8rem;display:none}
.price-discount{color:var(--accent);font-weight:600;font-size:0.8rem;display:none}

.card-btn{display:inline-block;background:var(--accent);color:var(--bg);padding:0.6rem 1.2rem;border-radius:8px;font-size:0.95rem;font-weight:600;text-align:center;transition:transform 0.2s ease,box-shadow 0.2s ease}
.card-btn:hover{transform:translateY(-3px);box-shadow:0 8px 24px rgba(214,194,168,0.12)}

@media(min-width:600px){
  .similar-grid{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:992px){
  .similar-grid{grid-template-columns:repeat(3,1fr)}
}

/* ===== REVIEWS SECTION ===== */
.product-reviews{background:var(--section);padding:2.5rem;border-radius:var(--rounded);box-shadow:0 12px 40px rgba(0,0,0,0.5)}
.product-reviews h2{font-size:1.5rem;font-weight:700;margin:0 0 2rem 0}

.reviews-header{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:3rem;padding-bottom:2rem;border-bottom:1px solid rgba(255,255,255,0.08)}

.rating-summary{text-align:center}
.big-rating{font-size:3rem;font-weight:800;color:var(--accent);line-height:1}
.rating-text{font-size:0.9rem;color:rgba(245,245,245,0.7);margin-top:0.5rem}
.rating-summary .review-count{font-size:0.9rem;color:rgba(245,245,245,0.6);margin-top:0.25rem}

.rating-bars{display:flex;flex-direction:column;gap:1.25rem}
.bar-row{display:grid;grid-template-columns:50px 1fr 60px;gap:1rem;align-items:center}
.bar-label{font-size:0.9rem;color:rgba(245,245,245,0.8);font-weight:500}
.bar-container{background:rgba(255,255,255,0.06);border-radius:9999px;height:14px;overflow:hidden}
.bar-fill{background:linear-gradient(90deg,var(--accent),#e6d6bf);height:100%;border-radius:9999px;display:block;transition:width 0.5s ease}
.bar-percent{font-size:0.85rem;color:rgba(245,245,245,0.7);text-align:right}

.review-cards{display:grid;grid-template-columns:1fr;gap:1.5rem;margin-top:2rem}
.review-item{background:rgba(255,255,255,0.02);padding:1.5rem;border-radius:10px;border:1px solid rgba(255,255,255,0.05);display:flex;flex-direction:column;gap:0.75rem}

.review-top{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.reviewer-name{font-weight:600;color:var(--text);font-size:0.95rem}
.review-rating{font-size:0.9rem;color:gold;font-weight:600}

.review-text{margin:0;line-height:1.6;color:rgba(245,245,245,0.85);font-size:0.95rem}
.review-date{font-size:0.85rem;color:rgba(245,245,245,0.6)}

@media(min-width:768px){
  .reviews-header{grid-template-columns:1fr 2fr}
  .review-cards{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:992px){
  .review-cards{grid-template-columns:repeat(3,1fr)}
}

/* Thumbnails for product hero */
.product-thumbs{display:flex;justify-content:center;gap:8px;margin-top:12px;flex-wrap:wrap}
.product-thumbs img.thumb{width:64px;height:64px;object-fit:cover;border-radius:8px;cursor:pointer;border:2px solid transparent;transition:transform .12s ease,border-color .12s ease}
.product-thumbs img.thumb.active{border-color:var(--accent);transform:scale(1.03)}
