/* © Cross Link by Chris Neaves. All rights reserved. */

body.shop-body{
  background:radial-gradient(circle at top left,#ff4fad 0,#6b1bbf 36%,#1a0633 80%);
  min-height:100vh;
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:#16052f;
}
.shop-wrap{max-width:1080px;margin:0 auto;padding:24px 16px 64px;display:flex;flex-direction:column;gap:18px}

.shop-hero{
  background:rgba(255,255,255,.96);
  border-radius:24px;
  padding:26px 24px 22px;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
  text-align:center;
  position:relative;
}
.shop-hero-tag{
  display:inline-block;
  background:linear-gradient(135deg,#7a2bd6 0%,#b14ce8 60%,#ff5fae 100%);
  color:#fff;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:11px;
  padding:6px 12px;
  border-radius:999px;
  box-shadow:0 6px 16px rgba(122,43,214,.35);
}
.shop-hero h1{
  margin:14px 0 6px;
  font-size:38px;
  letter-spacing:-.5px;
  color:#16052f;
}
.shop-hero-lead{
  max-width:720px;
  margin:0 auto 14px;
  font-size:15px;
  line-height:1.55;
  color:#241044;
  font-weight:600;
}
.shop-hero-promise{
  display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:8px 0 12px;
}
.shop-hero-promise span{
  background:#f7f5ff;border-radius:999px;padding:6px 12px;font-weight:900;font-size:12px;color:#16052f;
  border:2px solid rgba(122,43,214,.18);
}
.shop-back{
  display:inline-block;color:#7a2bd6;font-weight:900;text-decoration:none;font-size:13px;
}
.shop-back:hover{text-decoration:underline}

.shop-email-card{
  background:rgba(255,255,255,.96);
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:18px;
  align-items:center;
}
.shop-email-text h2{margin:0 0 4px;font-size:20px;color:#16052f}
.shop-email-text p{margin:0;font-size:13.5px;line-height:1.5;color:#241044;font-weight:600}
.shop-email-form{display:flex;flex-direction:column;gap:8px}
.shop-email-label{display:flex;flex-direction:column;gap:4px;font-weight:900;font-size:12px;text-transform:uppercase;color:#16052f}
.shop-email-label input{
  padding:11px 12px;border-radius:12px;border:2px solid #ddd;font-size:14px;font-weight:700;background:#fff;
  text-transform:none;
}
.shop-email-consent{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;font-weight:700;color:#241044}
.shop-email-consent input{margin-top:3px;transform:scale(1.1)}
.shop-email-submit{padding:11px 14px;border-radius:12px;font-size:14px}
.shop-email-status{font-size:12.5px;font-weight:800;color:#21833f;min-height:16px}
.shop-email-status.is-error{color:#b00020}

.shop-section{
  background:rgba(255,255,255,.96);
  border-radius:24px;
  padding:20px 22px;
  box-shadow:0 14px 32px rgba(0,0,0,.18);
}
.shop-section-head{margin-bottom:14px}
.shop-section-head h2{
  margin:0 0 4px;font-size:22px;color:#16052f;display:flex;align-items:center;gap:10px;
}
.shop-section-emoji{font-size:24px;line-height:1}
.shop-section-head p{margin:0;font-size:13.5px;line-height:1.5;color:#241044;font-weight:600}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:12px;
}
.shop-card{
  background:#f7f5ff;
  border-radius:18px;
  padding:14px;
  display:flex;flex-direction:column;gap:10px;
  border:2px solid rgba(122,43,214,.12);
  transition:border-color .15s ease,transform .08s ease,box-shadow .15s ease;
}
.shop-card:hover{border-color:rgba(122,43,214,.32);box-shadow:0 8px 18px rgba(122,43,214,.15)}
.shop-card.is-voted-yes{border-color:#21d36b;background:linear-gradient(180deg,#eaffef 0%,#f7f5ff 100%)}
.shop-card.is-voted-no{border-color:#b00020;background:linear-gradient(180deg,#fff0f3 0%,#f7f5ff 100%);opacity:.85}
.shop-card-preview{
  height:90px;border-radius:14px;background:#fff;display:flex;align-items:center;justify-content:center;
  font-size:48px;line-height:1;border:2px dashed rgba(122,43,214,.2);
}
.shop-card-title{margin:0;font-size:15px;font-weight:900;color:#16052f}
.shop-card-desc{margin:0;font-size:12.5px;line-height:1.45;color:#241044;font-weight:600;flex:1}
.shop-card-status{
  display:none;font-size:12px;font-weight:900;color:#21833f;text-transform:uppercase;letter-spacing:.04em;
}
.shop-card.is-voted-yes .shop-card-status,
.shop-card.is-voted-no .shop-card-status{display:block}
.shop-card.is-voted-no .shop-card-status{color:#b00020}
.shop-card-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.shop-vote{
  padding:9px 6px;border-radius:11px;border:none;font-weight:900;font-size:13px;cursor:pointer;
  transition:transform .08s ease,filter .12s ease,opacity .15s ease;
}
.shop-vote-yes{background:#21d36b;color:#fff;box-shadow:0 6px 14px rgba(33,211,107,.32)}
.shop-vote-no{background:#e9e6ff;color:#16052f}
.shop-vote-yes:hover{filter:brightness(1.05)}
.shop-vote-no:hover{filter:brightness(.95)}
.shop-vote.is-active{outline:3px solid #16052f;outline-offset:1px}
.shop-vote:disabled{opacity:.6;cursor:not-allowed}

.shop-suggest-form{display:flex;flex-direction:column;gap:10px}
.shop-suggest-form textarea{
  width:100%;padding:12px;border-radius:14px;border:2px solid #ddd;font-size:14px;font-weight:600;
  font-family:inherit;resize:vertical;min-height:90px;
}
.shop-suggest-form button{align-self:flex-start;padding:11px 18px;border-radius:12px}
.shop-suggest-status{font-size:12.5px;font-weight:800;color:#21833f;min-height:16px}
.shop-suggest-status.is-error{color:#b00020}

.shop-footer{
  background:rgba(255,255,255,.92);
  border-radius:22px;
  padding:18px 22px;
  text-align:center;
  font-size:13.5px;font-weight:600;color:#241044;line-height:1.55;
  display:flex;flex-direction:column;gap:8px;align-items:center;
}
.shop-footer p{margin:0}

@media(max-width:720px){
  .shop-email-card{grid-template-columns:1fr}
  .shop-hero h1{font-size:30px}
  .shop-hero-lead{font-size:14px}
  .shop-grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr))}
  .shop-card-preview{height:70px;font-size:38px}
}

/* "Shop" CTA on the main game page */
.shop-cta{
  width:100%;
  margin-top:8px;
  padding:12px 14px;
  border-radius:14px;
  border:none;
  cursor:pointer;
  font-weight:900;
  font-size:14px;
  color:#16052f;
  background:linear-gradient(135deg,#ffd76a 0%,#ffb703 60%,#ff8a3d 100%);
  box-shadow:0 8px 22px rgba(255,138,61,.35);
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  letter-spacing:.02em;
  text-decoration:none;
}
.shop-cta:hover{filter:brightness(1.05)}
.shop-cta-emoji{font-size:18px;line-height:1}
.shop-cta-tag{
  background:#16052f;color:#ffd76a;font-size:10px;font-weight:900;
  padding:2px 7px;border-radius:999px;letter-spacing:.08em;text-transform:uppercase;
  margin-left:4px;
}
