/* =======================================================
   Velkarys Shop — overrides/additions
   ======================================================= */

:root{
  /* small tweaks for shop accents (keeps original palette from base style.css) */
  --shop-card: rgba(14, 18, 26, .72);
  --shop-stroke: rgba(214,178,94,.28);
  --shop-stroke-2: rgba(214,178,94,.45);
}

/* ---------- Header cart button ---------- */
.cartTopBtn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.cartTopBtn .pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 28px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing:.2px;
  background: rgba(214,178,94,.18);
  border: 1px solid rgba(214,178,94,.35);
}

/* ---------- Shop hero ---------- */
.shopHero{
  padding-top: 48px;
  padding-bottom: 12px;
}
.shopHero .hero__lead{ max-width: 60ch; }

/* ---------- Product sections rendered by script.js ---------- */
.product-section{
  margin-top: 28px;
  padding: 18px 18px 6px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 18, 26, .72), rgba(10, 12, 18, .45));
  border: 1px solid rgba(214,178,94,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.product-category-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding: 10px 8px 14px;
  border-bottom: 1px solid rgba(214,178,94,.14);
  margin-bottom: 14px;
}
.product-category-header h3{
  margin:0;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing:.3px;
}
.product-category-desc{
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  max-width: 70ch;
  font-size: 14px;
}

.product-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  padding-bottom: 14px;
}
.product-card{
  grid-column: span 4;
  border-radius: 22px;
  overflow:hidden;
  background: radial-gradient(1200px 500px at 20% -10%, rgba(214,178,94,.12), transparent 60%),
              rgba(12, 15, 22, .70);
  border: 1px solid rgba(214,178,94,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.48);
  transform: translateZ(0);
}
.product-card:hover{
  border-color: rgba(214,178,94,.35);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
}
.product-card-image img{
  width:100% !important;
  height: 210px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  filter: saturate(1.05) contrast(1.05);
}
.product-card-body{
  display:flex;
  flex-direction:column;
  gap: 14px;
  padding: 16px 16px 18px;
}
.product-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing:.35px;
  text-transform: uppercase;
  background: rgba(214,178,94,.13);
  border: 1px solid rgba(214,178,94,.22);
  color: rgba(255,255,255,.86);
}
.product-title{
  font-weight: 900;
  letter-spacing:.2px;
  font-size: 18px;
  line-height:1.15;
  margin-top: 10px;
}
.product-desc{
  margin: 8px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 14px;
  line-height: 1.55;
  min-height: 22px;
}
.product-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.product-price{
  font-weight: 900;
  font-size: 18px;
}
.product-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding-top: 2px;
}
.product-note{
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.35;
  max-width: 46ch;
}
.qty{
  display:flex;
  align-items:center;
  gap: 14px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(214,178,94,.18);
  border-radius: 999px;
  padding: 8px 12px;
}
.qty-btn{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(214,178,94,.18);
  background: rgba(214,178,94,.10);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.qty-btn:hover{ background: rgba(214,178,94,.18); border-color: rgba(214,178,94,.35); }
.qty-num{ font-weight: 900; min-width: 26px; text-align:center; color: rgba(255,255,255,.92); }

.product-add{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 11px 14px;
  min-height: 38px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(214,178,94,.30);
  background: linear-gradient(180deg, rgba(214,178,94,.22), rgba(214,178,94,.12));
  color: rgba(255,255,255,.92);
  cursor:pointer;
  transition: transform .15s ease;
}
.product-add:hover{ transform: translateY(-1px); border-color: rgba(214,178,94,.50); }
.product-add:active{ transform: translateY(0); }

/* responsive grid */
@media (max-width: 1024px){
  .product-card{ grid-column: span 6; }
}
@media (max-width: 640px){
  .product-card{ grid-column: span 12; }
  .product-card-image img{ height: 190px !important; }
}

/* ---------- Cart drawer ---------- */
.cart-drawer{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: end;
  z-index: 800;
  pointer-events:none;
}
.cart-drawer[aria-hidden="false"]{ pointer-events:auto; }
.cart-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  transition: opacity .22s ease;
}
.cart-drawer[aria-hidden="false"] .cart-backdrop{ opacity: 1; }

.cart-drawer-inner{
  position: relative;
  width: min(520px, 100%);
  height: 100%;
  max-height: 100%;
  background: linear-gradient(180deg, rgba(14,18,26,.95), rgba(8,10,14,.92));
  border-left: 1px solid rgba(214,178,94,.22);
  transform: translateX(12px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
  padding: 18px;
  overflow: auto;
}
.cart-drawer[aria-hidden="false"] .cart-drawer-inner{
  transform: translateX(0);
  opacity: 1;
}

.cart-drawer-header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214,178,94,.14);
}
.cart-drawer-header h3{ margin: 0; letter-spacing:.2px; }
.cart-drawer-header p{ margin: 6px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }

.icon-button{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(214,178,94,.22);
  background: rgba(214,178,94,.10);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.icon-button:hover{ background: rgba(214,178,94,.16); border-color: rgba(214,178,94,.40); }

.cart-empty{
  margin-top: 16px;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(214,178,94,.22);
  color: rgba(255,255,255,.72);
  background: rgba(0,0,0,.20);
}
.cart-items{ margin-top: 16px; display:flex; flex-direction:column; gap: 10px; }
.hidden{ display:none !important; }

.cart-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(214,178,94,.14);
  background: rgba(0,0,0,.18);
}
.cart-item-name{ font-weight: 900; }
.cart-item-meta{ display:block; color: rgba(255,255,255,.64); font-size: 12px; margin-top: 2px; }
.cart-item-actions{ display:flex; align-items:center; gap: 10px; }
.cart-item-qtycontrols{ display:flex; align-items:center; gap: 8px; }
.cart-item-qtybtn{
  width: 30px; height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(214,178,94,.18);
  background: rgba(214,178,94,.10);
  color: rgba(255,255,255,.92);
  cursor:pointer;
}
.cart-item-qtybtn:hover{ background: rgba(214,178,94,.18); border-color: rgba(214,178,94,.35); }
.cart-item-qty{ min-width: 20px; text-align:center; font-weight: 900; }
.cart-item-price{ font-weight: 900; white-space:nowrap; }
.cart-remove{
  border: 1px solid rgba(255,90,90,.35);
  background: rgba(255,90,90,.10);
  color: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}
.cart-remove:hover{ background: rgba(255,90,90,.16); border-color: rgba(255,90,90,.55); }

.cart-drawer-footer{
  position: sticky;
  bottom: 0;
  padding-top: 14px;
  margin-top: 16px;
  border-top: 1px solid rgba(214,178,94,.14);
  background: linear-gradient(180deg, rgba(14,18,26,0), rgba(14,18,26,.95));
}
.cart-total-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-weight: 900;
  margin-bottom: 12px;
}
.full-width{ width: 100%; }

/* ---------- Checkout layout ---------- */
.checkoutGrid{
  display:grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 18px;
  align-items:start;
}
@media (max-width: 980px){
  .checkoutGrid{ grid-template-columns: 1fr; }
}

.shopCard{
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14,18,26,.72), rgba(10,12,18,.45));
  border: 1px solid rgba(214,178,94,.18);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  padding: 16px;
}
.shopCardHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(214,178,94,.14);
  margin-bottom: 12px;
}
.shopCardHead h3{ margin:0; }
.shopCardHead p{ margin:6px 0 0; color: rgba(255,255,255,.68); font-size: 14px; }

label{ font-weight: 700; }
input, textarea, select{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(214,178,94,.18);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.92);
  padding: 12px 12px;
  outline: none;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, textarea:focus, select:focus{
  border-color: rgba(214,178,94,.45);
  box-shadow: 0 0 0 4px rgba(214,178,94,.10);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px){ .form-row{ grid-template-columns: 1fr; } }

.form-help{ color: rgba(255,255,255,.62); font-size: 12px; margin-top: 6px; }

.checkboxRow{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 16px;
  border: 1px solid rgba(214,178,94,.14);
  background: rgba(0,0,0,.16);
}
.checkboxRow input{ width: 18px; height: 18px; margin-top: 2px; }
.checkboxRow span{ color: rgba(255,255,255,.78); font-size: 13px; line-height:1.4; }

.form-status{
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(214,178,94,.22);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.82);
}

/* make base reveal effect apply nicely to product cards too */
.product-card.reveal{ opacity: 0; transform: translateY(14px) scale(.99); }
.product-card.reveal.is-in{ opacity: 1; transform: translateY(0) scale(1); }
.product-category-header.reveal{ opacity: 0; transform: translateY(10px); }
.product-category-header.reveal.is-in{ opacity: 1; transform: translateY(0); }

/* ---------- Extra layout helpers used by shop pages ---------- */
.kicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing:.32px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.70);
}
.kicker::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(214,178,94,.85);
  box-shadow: 0 0 0 6px rgba(214,178,94,.10);
}

.chip__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(214,178,94,.90);
  box-shadow: 0 0 0 6px rgba(214,178,94,.12);
}

.hero__actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.hero__meta{
  margin-top: 14px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.hero__meta span{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(214,178,94,.14);
  background: rgba(0,0,0,.16);
}

.panel__cta{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.bullets{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 8px;
  color: rgba(255,255,255,.78);
}
.bullets strong{ color: rgba(255,255,255,.92); }

.badge--ok{
  border-color: rgba(88,214,126,.40) !important;
  background: rgba(88,214,126,.12) !important;
  color: rgba(255,255,255,.92) !important;
}

.card__icon{
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  margin-bottom: 10px;
  border: 1px solid rgba(214,178,94,.18);
  background: rgba(214,178,94,.10);
}

/* CTA block */
.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(214,178,94,.18);
  background: radial-gradient(900px 260px at 20% 0%, rgba(214,178,94,.14), transparent 60%),
              rgba(0,0,0,.16);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.cta__copy h2{ margin: 0; }
.cta__copy p{ margin: 8px 0 0; }
.cta__actions{ display:flex; flex-wrap:wrap; gap: 10px; }
@media (max-width: 800px){
  .cta{ flex-direction: column; align-items: flex-start; }
}

/* Footer structure */
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.footer__cols{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.footer__col h4{ margin: 0 0 8px; }
.footer__col a{
  display:block;
  color: rgba(255,255,255,.78);
  text-decoration:none;
  margin: 7px 0;
}
.footer__col a:hover{ color: rgba(255,255,255,.92); }
.footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(214,178,94,.14);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px){
  .footer__grid{ grid-template-columns: 1fr; }
}

/* ---------- Product controls spacing (fix) ---------- */
.product-controls{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}
.qty-controls{
  display:flex;
  align-items:center;
  gap: 10px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(214,178,94,.18);
  border-radius: 999px;
  padding: 6px 10px;
}
.qty-value{
  font-weight: 900;
  min-width: 22px;
  text-align:center;
  color: rgba(255,255,255,.92);
}

/* ---------- Sale price (per-product discount) ---------- */
.product-priceWrap{
  display:inline-flex;
  align-items:flex-start;
  gap: 8px;
}
.product-priceWrap.is-sale{
  display:flex;
  flex-direction:column-reverse;
  align-items:flex-start;
  gap: 6px;
}
.product-priceWrap.is-sale .price-old{
  position:relative;
  font-weight: 700;
  font-size: 16px;
  opacity: .72;
  color: rgba(255,255,255,.68);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255,95,95,.95);
}
.product-priceWrap.is-sale .price-old::after{ display:none; }
.product-priceWrap.is-sale .price-sale{
  position:static;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  color: var(--gold2);
}

/* ---------- Coupon / discount code UI ---------- */
.coupon{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(214,178,94,.14);
}
.couponRow{
  display:flex;
  align-items:center;
  gap: 10px;
}
.couponRow input{
  flex:1;
}

.cart-total-row--grand{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(214,178,94,.14);
  font-weight: 900;
}
.cart-discount-row{ color: rgba(255,255,255,.86); }
.cart-discount-row .pill{ margin-left: 8px; }

.hidden{ display:none !important; }


/* =======================================================
   Velkarys theme refresh
   ======================================================= */
:root{
  --bg:#05040a;
  --bg2:#0b0914;
  --card:rgba(17, 12, 28, .72);
  --stroke:rgba(255,255,255,.11);
  --stroke2:rgba(255,255,255,.18);
  --text:#f8f6ff;
  --muted:rgba(248,246,255,.72);

  --violet:#7f5cff;
  --violet-2:#b07cff;
  --pink:#ff7bc9;
  --pink-2:#ffb4df;
  --gold:#e6b770;
  --gold2:#ffd89a;

  --shop-card: rgba(15, 10, 25, .82);
  --shop-stroke: rgba(182,124,255,.26);
  --shop-stroke-2: rgba(255,123,201,.34);
}

::selection{
  background: rgba(255,123,201,.32);
  color: #fff;
}

body{
  background:
    radial-gradient(1100px 720px at 10% 0%, rgba(127,92,255,.20), transparent 60%),
    radial-gradient(900px 600px at 100% 8%, rgba(255,123,201,.16), transparent 58%),
    radial-gradient(960px 620px at 50% 100%, rgba(230,183,112,.12), transparent 62%),
    linear-gradient(180deg, #05040a 0%, #090611 100%);
}

.bg__grid{
  opacity:.4;
  mask-image: radial-gradient(720px 560px at 55% 18%, #000 30%, transparent 80%);
}
.bg::before,
.bg::after{
  content:"";
  position:absolute;
  inset:auto;
  border-radius:50%;
  filter:blur(70px);
  opacity:.45;
}
.bg::before{
  width:260px; height:260px; left:-60px; top:120px;
  background:rgba(127,92,255,.28);
}
.bg::after{
  width:320px; height:320px; right:-70px; bottom:60px;
  background:rgba(255,123,201,.18);
}

.top{
  background: rgba(8,6,16,.56);
  border-bottom:1px solid rgba(182,124,255,.16);
}
.top.is-scrolled{
  background: rgba(8,6,16,.9);
  border-bottom-color: rgba(255,123,201,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}
.brand__logo{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.1), transparent 60%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border-color: rgba(255,255,255,.16);
}
.brand__logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:4px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.brand__text strong{
  font-size:13px;
}
.brand__sub{
  color: rgba(248,246,255,.6);
}

.nav__menu a:hover{
  background: rgba(127,92,255,.10);
}
.nav__toggle,
.btn,
.chip,
.page-loader__badge{
  backdrop-filter: blur(12px);
}
.btn{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}
.btn:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
}
.btn--gold{
  background: linear-gradient(135deg, rgba(255,123,201,1), rgba(230,183,112,1));
  color:#180b1a;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 38px rgba(255,123,201,.18);
}
.btn--gold:hover{
  background: linear-gradient(135deg, rgba(255,140,208,1), rgba(255,216,154,1));
}
.btn--ghost{
  background: rgba(127,92,255,.08);
  border-color: rgba(182,124,255,.18);
}
.btn--ghost:hover{
  background: rgba(127,92,255,.12);
}

.grad{
  background: linear-gradient(90deg, var(--pink), var(--gold2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.chip{
  background: rgba(127,92,255,.08);
  border-color: rgba(182,124,255,.18);
  color: rgba(248,246,255,.82);
}
.chip__dot,
.pulse{
  background: linear-gradient(135deg, var(--pink), var(--gold2));
}

.hero{
  padding-top: 72px;
}
.hero__grid{
  gap: 28px;
  align-items: center;
}
.hero__title{
  text-shadow: 0 10px 40px rgba(0,0,0,.32);
}
.hero__lead{
  color: rgba(248,246,255,.78);
}
.hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.hero__meta span,
.hero-mini-stat{
  border:1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: 16px;
  padding: 12px 14px;
  color: rgba(248,246,255,.82);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.hero-mini-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:16px;
}
.hero-mini-stat strong{
  display:block;
  font-size:13px;
  margin-bottom:4px;
}
.hero-mini-stat span{
  padding:0;
  border:0;
  background:none;
  box-shadow:none;
  color: rgba(248,246,255,.64);
  font-size:12px;
}

.panel,
.card,
.product-section,
.product-card,
.shopCard,
.cart-drawer-inner,
.cart-item{
  background:
    radial-gradient(1200px 520px at 18% -10%, rgba(127,92,255,.12), transparent 58%),
    radial-gradient(1200px 520px at 100% 0%, rgba(255,123,201,.10), transparent 52%),
    linear-gradient(180deg, rgba(18, 12, 30, .92), rgba(11, 8, 19, .9));
  border-color: rgba(255,255,255,.10);
}
.panel,
.product-section,
.shopCard,
.cart-drawer-inner{
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
}
.card:hover,
.product-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,123,201,.28);
  box-shadow: 0 32px 85px rgba(0,0,0,.52);
}
.card,
.product-card{
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-category-header,
.shopCardHead,
.cart-drawer-header,
.cart-drawer-footer{
  border-color: rgba(255,255,255,.08);
}
.product-tag,
.cartTopBtn .pill,
.pill{
  background: rgba(127,92,255,.12);
  border-color: rgba(182,124,255,.24);
}
.product-price,
.stat__n,
.wiki-card .more{
  color: var(--gold2);
}
.qty,
input,
textarea,
select,
.cart-empty{
  background: rgba(5,4,10,.34);
  border-color: rgba(182,124,255,.16);
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(255,123,201,.42);
  box-shadow: 0 0 0 4px rgba(255,123,201,.08);
}
.qty-btn,
.cart-item-qtybtn,
.icon-button{
  background: rgba(127,92,255,.12);
  border-color: rgba(182,124,255,.24);
}
.qty-btn:hover,
.cart-item-qtybtn:hover,
.icon-button:hover{
  background: rgba(255,123,201,.12);
  border-color: rgba(255,123,201,.28);
}
.product-add{
  background: linear-gradient(135deg, rgba(127,92,255,.22), rgba(255,123,201,.16));
  border-color: rgba(255,123,201,.22);
}
.product-add:hover{
  border-color: rgba(255,123,201,.34);
}
.loaderbar{
  border-color: rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
}
.loaderbar__fill{
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--gold2));
  box-shadow: 0 0 22px rgba(255,123,201,.22);
}
.page-loader__logo{
  background-image: url("../assets/velkarys-logo.png"), linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
  background-size: contain, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  border-color: rgba(255,255,255,.14);
}
.skip{
  background: linear-gradient(135deg, rgba(255,123,201,1), rgba(230,183,112,1));
  color:#170d18;
}

/* Home showcase */
.hero__grid--showcase{
  align-items: stretch;
}
.panel--showcase{
  overflow:hidden;
}
.panel__media{
  position:relative;
  border-bottom:1px solid rgba(255,255,255,.08);
  min-height: 320px;
}
.panel__media img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
}
.panel__media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(5,4,10,.04), rgba(5,4,10,.28));
}
.panel__mediaBadge{
  position:absolute;
  left:18px;
  bottom:18px;
  z-index:2;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(8,6,16,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 45px rgba(0,0,0,.35);
}
.panel__mediaBadge img{
  width:50px;
  min-height:auto;
  height:50px;
  object-fit:contain;
}
.panel__mediaBadge strong{
  display:block;
  font-size:13px;
  letter-spacing:.14em;
}
.panel__mediaBadge span{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color: rgba(248,246,255,.6);
}
.panel--showcase .panel__body{
  padding:18px;
}
.panel--showcase .steps{
  grid-template-columns:1fr;
}
.panel--showcase .steps li{
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  border-radius:16px;
}
.panel--showcase .steps li span{
  color: rgba(248,246,255,.68);
}
.panel--showcase .panel__cta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:16px;
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(8,6,16,.35));
}

@media (max-width: 980px){
  .hero-mini-stats{
    grid-template-columns:1fr;
  }
  .hero__grid--showcase{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .panel__media{
    min-height:240px;
  }
  .panel__media img{
    min-height:240px;
  }
  .panel__mediaBadge{
    left:12px;
    right:12px;
    bottom:12px;
  }
  .panel--showcase .panel__cta{
    grid-template-columns:1fr;
  }
}


.product-card.is-unavailable {
  opacity: .76;
}

.product-card.is-unavailable .product-card-image {
  filter: grayscale(.35);
}

.product-unavailable-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 120, 160, .22);
  background: rgba(255, 120, 160, .08);
  color: #ffd2e6;
  font-size: 13px;
  font-weight: 600;
}

.product-add:disabled,
.qty-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}
