/* Product page v2 */

.product-v2-page{
  width:min(1260px,92vw);
  margin:auto;
  padding:34px 0 90px;
}

.product-v2-hero{
  display:grid;
  grid-template-columns:minmax(0,520px) minmax(0,1fr);
  gap:50px;
  align-items:center;
  padding:26px 0 55px;
}

.product-v2-media{
  position:relative;
  min-width:0;
}

.product-v2-media-glow{
  position:absolute;
  inset:auto auto 20px 50%;
  width:70%;
  height:70%;
  transform:translateX(-50%);
  border-radius:50%;
  background:radial-gradient(circle, rgba(0,169,232,.18), transparent 66%);
  filter:blur(8px);
  pointer-events:none;
}

.product-v2-image-card{
  position:relative;
  min-height:560px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:34px;
  background:
    linear-gradient(180deg, rgba(0,169,232,.05), transparent 24%),
    var(--panel);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.product-v2-image-card img{
  width:100%;
  height:100%;
  max-height:720px;
  object-fit:contain;
}

.product-v2-info{
  min-width:0;
}

.product-v2-breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.product-v2-size-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:#101318;
  color:#fff;
  font-size:12px;
  font-weight:900;
  margin-bottom:18px;
}

.product-v2-info h1{
  margin:12px 0 10px;
  font-size:clamp(48px,5vw,82px);
  line-height:.96;
  letter-spacing:-.05em;
}

.product-v2-flavor{
  font-size:26px;
  font-weight:800;
  color:var(--blue-deep);
  margin-bottom:18px;
}

html[data-theme="dark"] .product-v2-flavor{
  color:#55cbf4;
}

.product-v2-summary{
  margin:0;
  color:var(--muted);
  font-size:18px;
  max-width:760px;
}

.product-v2-facts{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
  margin:28px 0;
}

.fact-card{
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--bg-soft);
}

.fact-card span{
  display:block;
  color:var(--muted);
  font-size:12px;
  margin-bottom:6px;
}

.fact-card strong{
  display:block;
  font-size:16px;
  line-height:1.35;
  overflow-wrap:anywhere;
}

.product-v2-detail-box{
  padding:24px;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--panel);
  box-shadow:var(--shadow);
}

.product-v2-detail-box h3{
  margin:0 0 12px;
  font-size:22px;
}

.product-v2-detail-box p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.related-section{
  padding-top:12px;
}

.related-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  margin-bottom:22px;
}

.related-head h2{
  margin:8px 0 0;
  font-size:clamp(34px,4vw,52px);
  line-height:1;
  letter-spacing:-.04em;
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.related-card{
  min-width:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--panel);
  transition:.2s ease;
}

.related-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.related-image{
  position:relative;
  height:250px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:14px;
  background:var(--bg-soft);
}

.related-image img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.related-meta{
  padding:16px;
}

.related-meta h3{
  margin:0;
  min-height:44px;
  font-size:16px;
  line-height:1.35;
  overflow-wrap:anywhere;
}

@media(max-width:1050px){
  .product-v2-hero{
    grid-template-columns:1fr;
    gap:28px;
  }

  .product-v2-image-card{
    min-height:460px;
  }

  .related-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media(max-width:760px){
  .product-v2-page{
    padding-top:18px;
  }

  .product-v2-image-card{
    min-height:360px;
    padding:18px;
    border-radius:24px;
  }

  .product-v2-info h1{
    font-size:48px;
  }

  .product-v2-flavor{
    font-size:22px;
  }

  .product-v2-summary{
    font-size:16px;
  }

  .product-v2-facts{
    grid-template-columns:1fr;
  }

  .related-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:520px){
  .product-v2-hero{
    padding-bottom:38px;
  }

  .product-v2-image-card{
    min-height:300px;
    padding:14px;
  }

  .product-v2-info h1{
    font-size:40px;
  }

  .product-v2-flavor{
    font-size:19px;
  }

  .related-grid{
    gap:10px;
  }

  .related-image{
    height:180px;
    padding:10px;
  }

  .related-meta{
    padding:12px;
  }

  .related-meta h3{
    font-size:13px;
    min-height:52px;
  }
}


.product-v2-pill-row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
}
.product-v2-pill-row .product-v2-size-pill{
  margin-bottom:0;
}
.product-v2-nicotine-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 12px;
  border-radius:999px;
  background:var(--blue-deep);
  color:#fff;
  font-size:12px;
  font-weight:900;
}
html[data-theme="dark"] .product-v2-nicotine-pill{
  background:#0aa8df;
}
.product-v2-facts{
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
}
.nicotine-fact strong{
  color:var(--blue-deep);
}
html[data-theme="dark"] .nicotine-fact strong{
  color:#55cbf4;
}


.product-overview-wide{
  margin:0 0 30px;
  padding:34px;
  border:1px solid var(--line);
  border-radius:30px;
  background:var(--panel);
  box-shadow:var(--shadow);
}

.product-overview-main{
  max-width:980px;
  margin-bottom:26px;
}

.product-overview-main h2{
  margin:10px 0 14px;
  font-size:clamp(34px,4vw,52px);
  line-height:1;
  letter-spacing:-.04em;
}

.product-overview-main p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.85;
}

.product-overview-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}

.overview-card{
  min-width:0;
  padding:22px;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--bg-soft);
}

.overview-card h3{
  margin:0 0 10px;
  font-size:20px;
}

.overview-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.highlight-card{
  background:
    linear-gradient(180deg, rgba(0,169,232,.06), transparent 40%),
    var(--bg-soft);
}

.highlight-card ul{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.9;
}

.rtl .highlight-card ul{
  padding-left:0;
  padding-right:18px;
}

.highlight-card li strong{
  color:var(--text);
}

@media(max-width:1050px){
  .product-overview-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:760px){
  .product-overview-wide{
    padding:24px;
    border-radius:24px;
  }

  .product-overview-main p{
    font-size:16px;
  }
}

@media(max-width:520px){
  .product-overview-grid{
    grid-template-columns:1fr;
  }

  .overview-card{
    padding:18px;
  }
}
