/* Store overrides for Grayscale theme */

:root{
  --store-glass: rgba(10, 14, 25, 0.55);
  --store-glass-strong: rgba(10, 14, 25, 0.75);
  --store-border: rgba(255,255,255,0.10);
  --store-shadow: 0 16px 50px rgba(0,0,0,0.45);
}

.brand-logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--store-border);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.store-section{
  padding: 6rem 0;
  background: radial-gradient(circle at 20% 10%, rgba(71, 94, 255, 0.16), transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(110, 255, 198, 0.12), transparent 45%),
              linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.6));
}

.glass-card{
  background: var(--store-glass);
  border: 1px solid var(--store-border);
  border-radius: 18px;
  box-shadow: var(--store-shadow);
  backdrop-filter: blur(16px);
}

.store-sticky{
  top: 98px;
}

.nav-pills .nav-link{
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  margin-bottom: 0.5rem;
  border-radius: 12px;
}

.nav-pills .nav-link:hover{ color: #fff; }

.nav-pills .nav-link.active{
  background: rgba(71, 94, 255, 0.24);
  border-color: rgba(71, 94, 255, 0.45);
  color: #fff;
}

.store-card{
  height: 100%;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.40);
}

.store-card .thumb{
  height: 140px;
  background: radial-gradient(circle at 30% 20%, rgba(71, 94, 255, 0.35), transparent 40%),
              radial-gradient(circle at 70% 50%, rgba(110, 255, 198, 0.22), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.35));
}

.store-card .badge-cat{
  display:inline-flex;
  align-items:center;
  gap: 0.4rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
}

.store-card .price{
  font-weight: 700;
  color: #7dffcb;
}

.store-card .desc{
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
}

.store-card .btn{
  border-radius: 12px;
}

.offcanvas{
  border-left: 1px solid rgba(255,255,255,0.12);
}

.cart-item{
  padding: 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
}

.cart-item .name{
  font-weight: 700;
}

.cart-item .meta{
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

#alertBox{
  background: rgba(220, 53, 69, 0.15);
  border-color: rgba(220, 53, 69, 0.35);
  color: rgba(255,255,255,0.90);
}

/* Make Bootstrap accordion match */
.accordion-button:focus{ box-shadow: none; }

