:root{
  --deepindigo2: #3A2E6B;
  --deepindigo2-dark: #28204A;
  --warmcoral2: #E08A6A;
  --warmcoral2-dark: #B5684C;
  --pale: #EEECF5;
  --ink: #221F2A;
  --line: #E0DCEC;
  --bg: #FAF7F5;
}

*{box-sizing:border-box;}

body{
  margin:0;
  font-family:'Inter', Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.6;
}

/* Split banner header - distinct from prior plain headers */
.split-banner{
  background:var(--deepindigo2);
  padding:40px 16px;
  position:relative;
  overflow:hidden;
}
.split-banner::after{
  content:"";
  position:absolute;
  right:-60px;
  top:-60px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:var(--warmcoral2);
  opacity:0.18;
}
.banner-side{
  max-width:640px;
  margin:0 auto;
  position:relative;
  z-index:1;
  text-align:center;
}
.banner-eyebrow{
  display:inline-block;
  color:var(--warmcoral2);
  font-size:0.78rem;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.banner-title{
  color:#fff;
  font-size:1.7rem;
  font-weight:800;
  margin:0 0 8px;
  letter-spacing:-0.01em;
}
.banner-tagline{
  color:#D9D5EC;
  font-size:0.95rem;
  margin:0;
}

.product-section{
  max-width:1120px;
  margin:0 auto;
  padding:32px 16px 8px;
}
.product-panel{
  display:flex;
  flex-direction:column;
  gap:32px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:24px;
}
@media (min-width:900px){
  .product-panel{
    flex-direction:row;
    padding:36px;
  }
}

.gallery-wrap{
  flex:0 0 auto;
  width:100%;
  position:relative;
}
@media (min-width:900px){
  .gallery-wrap{width:40%;}
}
.gallery-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.gallery-main{
  width:100%;
  aspect-ratio:1/1;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:var(--pale);
}
.slide{
  display:none;
  width:100%;
  height:100%;
  object-fit:contain;
}
#g1:checked ~ .gallery-main .s1,
#g2:checked ~ .gallery-main .s2,
#g3:checked ~ .gallery-main .s3,
#g4:checked ~ .gallery-main .s4{
  display:block;
}
.gallery-thumbs{
  display:flex;
  gap:10px;
  margin-top:14px;
  overflow-x:auto;
  padding-bottom:4px;
}
.thumb{
  flex:0 0 66px;
  width:66px;
  height:66px;
  border:2px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
  display:block;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
#g1:checked ~ .gallery-thumbs .t1,
#g2:checked ~ .gallery-thumbs .t2,
#g3:checked ~ .gallery-thumbs .t3,
#g4:checked ~ .gallery-thumbs .t4{
  border-color:var(--warmcoral2);
}

.product-info{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
}
.product-name{
  font-size:1.25rem;
  font-weight:800;
  margin:0 0 18px;
  color:var(--deepindigo2-dark);
  line-height:1.35;
}
.description-heading{
  font-size:0.85rem;
  font-weight:800;
  margin:0 0 16px;
  color:var(--warmcoral2-dark);
  text-transform:uppercase;
  letter-spacing:0.1em;
}

/* Timeline list - distinct visual pattern from prior badge grids and plain lists */
.timeline-list{
  position:relative;
  padding-left:8px;
  margin-bottom:24px;
}
.timeline-item{
  display:flex;
  gap:14px;
  position:relative;
  padding-bottom:20px;
}
.timeline-item:not(:last-child)::before{
  content:"";
  position:absolute;
  left:17px;
  top:38px;
  bottom:-2px;
  width:2px;
  background:var(--line);
}
.timeline-dot{
  flex:0 0 auto;
  width:36px;
  height:36px;
  border-radius:50%;
  background:var(--deepindigo2);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  z-index:1;
}
.timeline-content{
  padding-top:4px;
}
.timeline-title{
  font-weight:700;
  margin:0 0 4px;
  color:var(--deepindigo2-dark);
  font-size:0.98rem;
}
.timeline-content p:not(.timeline-title){
  margin:0;
  font-size:0.92rem;
  color:var(--ink);
}

.cta-button{
  display:block;
  text-align:center;
  background:var(--warmcoral2);
  color:#fff;
  font-weight:700;
  font-size:1.05rem;
  padding:16px 24px;
  border-radius:10px;
  text-decoration:none;
  margin-top:auto;
  transition:background 0.2s ease;
}
.cta-button:hover{
  background:var(--warmcoral2-dark);
}
.cta-button-secondary{
  max-width:340px;
  margin:36px auto 0;
}

/* Reviews - side-bar accent card grid, distinct from other layouts */
.reviews-section{
  max-width:1000px;
  margin:0 auto;
  padding:44px 16px 64px;
}
.reviews-heading{
  font-size:1.35rem;
  font-weight:800;
  margin:0 0 26px;
  color:var(--deepindigo2-dark);
  text-align:center;
}
.review-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}
@media (min-width:800px){
  .review-grid{grid-template-columns:repeat(3,1fr);}
}
.review{
  display:flex;
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 3px 12px rgba(34,31,42,0.06);
}
.review-bar{
  flex:0 0 6px;
  background:var(--warmcoral2);
}
.review-body{
  padding:18px;
  flex:1 1 auto;
}
.review-top{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:8px;
}
.review-avatar{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  flex:0 0 auto;
}
.review-head-text{
  display:flex;
  flex-direction:column;
  gap:1px;
}
.review-author{
  font-weight:700;
  margin:0;
  font-size:0.88rem;
}
.review-author a{
  color:var(--deepindigo2-dark);
  text-decoration:none;
}
.review-author a:hover{
  text-decoration:underline;
}
.review-stars{
  color:var(--warmcoral2-dark);
  margin:0;
  font-size:0.82rem;
}
.review-title{
  font-size:0.96rem;
  font-weight:700;
  margin:0 0 4px;
  color:var(--ink);
}
.review-meta{
  font-size:0.72rem;
  color:#8A7F97;
  margin:0 0 10px;
}
.review-text{
  font-size:0.87rem;
  margin:0 0 10px;
  color:var(--ink);
}
.review-photos{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.review-photo{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:6px;
}

.site-footer{
  background:var(--deepindigo2-dark);
  color:#EEECF5;
  text-align:center;
  padding:28px 16px;
}
.footer-title{
  font-weight:800;
  margin:0 0 12px;
}
.footer-links{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  margin:0;
  padding:0;
}
.footer-links a{
  color:#EEECF5;
  font-size:0.85rem;
  text-decoration:underline;
}
.footer-links a:hover{
  color:#fff;
}