/* CLTECH — Marketplace/Catálogo + Pix */
.top-sale-bar{
  background:linear-gradient(90deg,#22d3ee,#a78bfa,#22d3ee);
  color:#06111f;
  text-align:center;
  font-weight:900;
  padding:10px 14px;
  letter-spacing:.2px;
}

.store-header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(6,9,20,.9);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,.12);
}

.store-header-inner{
  max-width:1200px;
  margin:auto;
  padding:14px 18px;
  display:grid;
  grid-template-columns:220px 1fr auto;
  gap:14px;
  align-items:center;
}

.store-logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:950;
  letter-spacing:.3px;
  font-size:20px;
}

.store-logo-mark{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#06111f;
  font-weight:950;
  background:linear-gradient(135deg,#38bdf8,#a78bfa);
  box-shadow:0 0 28px rgba(56,189,248,.28);
}

.search-shell{
  display:flex;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:16px;
  overflow:hidden;
}

.search-shell input{
  width:100%;
  border:0;
  outline:0;
  color:#e5e7eb;
  background:transparent;
  padding:13px 14px;
}

.search-shell button{
  border:0;
  padding:0 16px;
  color:#06111f;
  font-weight:900;
  background:linear-gradient(135deg,#38bdf8,#a78bfa);
  cursor:pointer;
}

.store-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.hero-shop{
  max-width:1200px;
  margin:24px auto;
  padding:0 18px;
}

.hero-banner{
  min-height:310px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.12);
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(6,9,20,.92),rgba(6,9,20,.62),rgba(6,9,20,.88)),
    url('/assets/background-cltech.png') center/cover no-repeat;
  box-shadow:0 24px 70px rgba(0,0,0,.42);
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:20px;
  padding:34px;
}

.hero-banner h1{
  font-size:clamp(33px,5vw,62px);
  line-height:.98;
  margin:0 0 14px;
  letter-spacing:-1.8px;
}

.hero-banner p{
  color:#cbd5e1;
  line-height:1.6;
  font-size:17px;
  max-width:630px;
}

.hero-card-stack{
  display:grid;
  gap:12px;
}

.mini-proof{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  border-radius:22px;
  padding:16px;
}

.category-grid{
  max-width:1200px;
  margin:0 auto;
  padding:18px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.category-card{
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  border-radius:22px;
  padding:18px;
  box-shadow:0 18px 44px rgba(0,0,0,.26);
}

.category-card strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}

.store-section{
  max-width:1200px;
  margin:16px auto 0;
  padding:0 18px;
}

.store-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:14px;
  margin:20px 0 14px;
}

.store-section-head h2{
  margin:0;
  font-size:30px;
}

.catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.product-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:26px;
  overflow:hidden;
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.04));
  box-shadow:0 20px 55px rgba(0,0,0,.32);
}

.product-art{
  min-height:138px;
  background:
    radial-gradient(circle at 20% 25%,rgba(56,189,248,.34),transparent 28%),
    radial-gradient(circle at 82% 10%,rgba(168,85,247,.34),transparent 30%),
    linear-gradient(135deg,#0f172a,#111827);
  display:grid;
  place-items:center;
  font-size:42px;
}

.product-body{
  padding:18px;
}

.product-body h3{
  margin:0 0 8px;
}

.product-desc{
  min-height:62px;
  color:#9ca3af;
}

.product-price{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  margin:16px 0;
}

.product-price b{
  font-size:28px;
}

.checkout-layout{
  max-width:1100px;
  margin:34px auto;
  padding:0 18px;
  display:grid;
  grid-template-columns:1fr 390px;
  gap:20px;
}

.pix-box{
  border:1px solid rgba(45,212,191,.35);
  background:linear-gradient(180deg,rgba(45,212,191,.12),rgba(56,189,248,.05));
  border-radius:24px;
  padding:20px;
}

.pix-copy{
  width:100%;
  min-height:150px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(2,6,23,.7);
  color:#d1fae5;
  border-radius:16px;
  padding:13px;
  resize:vertical;
  font-size:13px;
}

.pay-steps{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.pay-step{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.045);
  border-radius:16px;
  padding:12px;
}

.payment-card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  border-radius:24px;
  padding:20px;
  box-shadow:0 20px 55px rgba(0,0,0,.32);
}

.payment-card h1,
.payment-card h2{
  margin-top:0;
}

.payment-price{
  font-size:38px;
  font-weight:950;
  margin:10px 0;
}

@media(max-width:900px){
  .store-header-inner,
  .hero-banner,
  .checkout-layout{
    grid-template-columns:1fr;
  }

  .category-grid,
  .catalog-grid{
    grid-template-columns:1fr;
  }

  .store-actions{
    justify-content:flex-start;
  }
}


.efi-status{
  border:1px solid rgba(56,189,248,.3);
  background:rgba(56,189,248,.08);
  border-radius:16px;
  padding:14px;
  margin:14px 0;
}
.efi-status.ok{
  border-color:rgba(34,197,94,.42);
  background:rgba(34,197,94,.09);
}
.efi-status.bad{
  border-color:rgba(239,68,68,.42);
  background:rgba(239,68,68,.09);
}
.qr-wrap{
  display:grid;
  place-items:center;
  padding:14px;
  background:#fff;
  border-radius:18px;
  margin:12px 0;
}
.qr-wrap img{
  max-width:240px;
  width:100%;
  height:auto;
  display:block;
}
