.store-showcase-page{
  background:var(--bg);
}

.store-hero{
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.08), transparent 36%),
    radial-gradient(circle at bottom right, rgba(255,45,45,.10), transparent 30%),
    linear-gradient(135deg, #151515 0%, #0b0b0b 100%);
}

.store-hero-inner{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:24px;
  padding:28px 20px;
}

.store-hero-inner.simple{
  align-items:end;
}

.store-eyebrow{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.18em;
  color:var(--muted);
}

.store-title{
  margin:0 0 10px;
  font-size:40px;
  line-height:1.08;
}

.store-sub{
  margin:0;
  max-width:580px;
  color:#fff;
  font-size:18px;
  line-height:1.5;
  opacity:.78;
}

.store-filter-section{
  padding-top:22px;
}

.store-filter-bar{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.store-filter{
  appearance:none;
  border:1px solid var(--line);
  background:#121212;
  color:var(--text);
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}

.store-filter.active{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.store-head.compact p{
  display:none;
}

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

.store-item{
  display:flex;
  flex-direction:column;
  background:rgba(255,255,255,.02);
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px;
  min-height:100%;
}

.store-item.is-hidden{
  display:none;
}

.store-thumb{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  border-radius:16px;
  background:#111 center/cover no-repeat;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
}

.store-thumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.28), transparent 55%);
}

.store-badge{
  position:absolute;
  left:12px;
  top:12px;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.5);
  border:1px solid rgba(255,255,255,.14);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.store-meta{
  padding-top:16px;
}

.store-meta-top{
  display:flex;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.store-kicker{
  color:var(--muted);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.store-price{
  color:#fff;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.store-meta h3{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.3;
}

.store-desc{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
  min-height:42px;
}

.store-option-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.store-option-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:30px;
  padding:0 11px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  font-size:12px;
  color:#dbe3ef;
  line-height:1;
}

.store-option-chip strong{
  font-weight:700;
  color:#fff;
}

.store-actions{
  display:flex;
  gap:10px;
  margin-top:auto;
  padding-top:22px;
}

.store-actions .btn{
  flex:1 1 0;
}

.btn-buy-disabled{
  opacity:.48;
  cursor:not-allowed;
}

.store-empty{
  margin-top:20px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(255,255,255,.02);
  border:1px solid var(--line);
  color:var(--muted);
}

.store-toast{
  position:fixed;
  left:20px;
  bottom:20px;
  z-index:210;
  padding:12px 14px;
  background:#111;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  color:#fff;
  font-size:13px;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.hidden{ display:none !important; }

.footer-copy-wrap{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  flex-wrap:nowrap;
  margin-top:10px;
  width:100%;
}

.footer-copy{
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  text-align:left;
}

.footer-admin-link{
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
  margin-left:auto;
  text-align:right;
}

.footer-admin-link:hover{
  color:#fff;
}

@media (max-width: 1280px){
  .store-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

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

@media (max-width: 640px){
  .store-title{
    font-size:30px;
  }

  .store-grid{
    grid-template-columns:1fr;
  }

  .store-actions{
    flex-direction:column;
  }

  .footer-copy-wrap{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
    gap:6px;
  }

  .footer-copy,
  .footer-admin-link{
    width:100%;
  }
}

.store-option-stack{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.store-option-field{
  min-width:0;
}

.store-option-field label{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.store-option-select{
  width:100%;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.08);
  background:#0f0f0f;
  color:#fff;
  padding:12px 14px;
  font-size:14px;
  outline:none;
  appearance:none;
}

.store-option-select:focus{
  border-color:rgba(255,255,255,.22);
}

.store-choice-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.store-choice-summary{
  color:var(--muted);
  font-size:12px;
  line-height:1.5;
}

.store-total-price{
  color:#fff;
  font-size:14px;
  font-weight:700;
  white-space:nowrap;
}

.btn-buy-disabled.is-ready{
  opacity:.92;
  cursor:pointer;
}

@media (max-width: 640px){
  .store-choice-line{
    flex-direction:column;
    align-items:flex-start;
  }

  .store-total-price{
    white-space:normal;
  }
}


/* Store page alignment normalized to shared styles.css rhythm */
.store-hero{
  border-bottom:1px solid var(--line);
}

.store-hero-inner{
  padding:28px 20px;
}

.store-title{
  margin:0 0 6px;
  font-size:28px;
  line-height:1.1;
}

.store-sub{
  font-size:14px;
  line-height:1.6;
  color:var(--muted);
  opacity:1;
}

.store-filter-section{
  padding-top:22px;
}

.store-filter-bar,
.section-head.store-head,
.store-grid{
  padding-left:0;
  padding-right:0;
  margin-left:0;
  margin-right:0;
}

@media (max-width: 640px){
  html, body, .store-showcase-page{
    overflow-x:hidden;
  }

  .store-hero .container,
  .page-main.container{
    padding-left:20px;
    padding-right:20px;
  }

  .store-hero-inner{
    padding:28px 20px 32px;
  }

  .store-title{
    font-size:32px;
    margin-bottom:10px;
  }

  .store-filter-section,
  .page-section{
    padding-top:22px;
  }

  .store-filter-bar{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-start;
    gap:10px;
  }

  .section-head.store-head{
    margin-bottom:20px;
  }

  .store-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .store-item{
    width:100%;
    min-width:0;
    margin:0;
  }

  .store-actions{
    flex-direction:column;
  }

  .store-actions .btn{
    width:100%;
  }

  .store-choice-line{
    flex-direction:column;
    align-items:flex-start;
  }

  .store-total-price{
    white-space:normal;
  }
}


.store-head-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.store-head-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.store-title-line{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:space-between;
}

.store-title-line h3{
  margin:0;
}

.store-status-chip{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:24px;
  padding:0 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.02em;
}

.store-status-chip.is-coming_soon{
  background:rgba(255,255,255,.08);
  color:#e5e7eb;
}

.store-status-chip.is-sold_out{
  background:rgba(255,255,255,.12);
  color:#fff;
}

.store-actions .btn.is-blocked{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:none;
}

.store-policy-strip{
  margin:0 0 20px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  background:rgba(255,255,255,.02);
}
.store-policy-strip__inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:16px 18px;
}
.store-policy-strip__text{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:220px;
}
.store-policy-strip__text strong{
  font-size:13px;
}
.store-policy-strip__text span,
.store-policy-strip__links a{
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.store-policy-strip__links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.store-compliance-footer{
  margin-top:32px;
}
.store-policy-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:10px 0 14px;
}
.store-policy-links a{
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
  text-decoration:none;
}
.store-policy-links a:hover,
.store-business-box a:hover{
  color:#fff;
}
.store-business-box{
  border:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
  border-radius:18px;
  padding:16px 18px;
}
.store-business-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 20px;
}
.store-business-grid .full{
  grid-column:1 / -1;
}
.store-business-grid span{
  display:block;
  margin-bottom:4px;
  color:var(--muted);
  font-size:12px;
}
.store-business-grid strong{
  display:block;
  font-size:13px;
  line-height:1.55;
  color:#fff;
  font-weight:600;
  word-break:keep-all;
}
.store-business-grid strong a{
  color:#fff;
}
.store-business-note{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.06);
}
.store-business-note p{
  margin:0 0 6px;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}
.store-business-note p:last-child{
  margin-bottom:0;
}
.order-policy-box{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.order-policy-box h3{
  margin:0 0 10px;
  font-size:16px;
}
.order-policy-box ul{
  margin:0;
  padding-left:18px;
  color:#b5b5b5;
  font-size:13px;
  line-height:1.7;
}
.order-policy-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.order-policy-links a,
.consent a{
  color:#d8d8d8;
  text-decoration:none;
}
.policy-card h2{
  margin-bottom:18px;
}
.policy-content{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.policy-row{
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:18px;
}
.policy-row:first-child{
  border-top:0;
  padding-top:0;
}
.policy-row strong{
  display:block;
  margin-bottom:8px;
  font-size:15px;
}
.policy-row p{
  margin:0;
  color:#b5b5b5;
  line-height:1.8;
}
@media (max-width:760px){
  .store-business-grid{
    grid-template-columns:1fr;
  }
  .store-business-grid .full{
    grid-column:auto;
  }
}
