:root{
  --store-bg: #013D48;
  --store-surface: rgba(255,255,255,0.06);
  --store-border: rgba(255,255,255,0.10);
  --store-accent: #00AE85;
  --store-text: #E6F5F5;
}

.store-wrap{
  padding-top: 96px;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(1,61,72,0.98) 0%, rgba(2,77,80,0.92) 100%);
  overflow-x:hidden;
}

.store-hero{
  padding: 28px 0 18px;
}

.store-hero h1{
  color: #fff;
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 44px);
}

.store-hero p{
  color: rgba(255,255,255,0.86);
  margin: 0 0 0;
  max-width: 720px;
}

.store-filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 18px 0 22px;
}

.store-pill{
  border: 1px solid var(--store-border);
  background: var(--store-surface);
  color: var(--store-text);
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  text-transform: none;
}

.store-pill.is-active{
  background: var(--store-accent);
  color: #013D48;
}

.store-grid{
  display:grid;
  grid-template-columns: repeat(1, minmax(0,1fr));
  gap: 14px;
  padding-bottom: 40px;
}

@media (min-width: 720px){
  .store-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 1024px){
  .store-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.store-card{
  border: 1px solid var(--store-border);
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.22);
  display:flex;
  flex-direction: column;
}

.store-card__media{
  height: 180px;
  background: rgba(0,0,0,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
}

.store-card__media img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.store-card__body{
  padding: 14px 14px 12px;
  color: var(--store-text);
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.store-card__title{
  margin:0;
  font-size: 18px;
  color: #fff;
}

.store-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.store-badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  font-weight: 800;
}

.store-badge--accent{
  background: rgba(0,174,133,0.18);
  border-color: rgba(0,174,133,0.35);
  color: #E6F5F5;
}

.store-card__desc{
  margin:0;
  color: rgba(255,255,255,0.84);
  line-height: 1.45;
}

.store-card__footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 14px;
}

.store-price{
  font-weight: 900;
  color: #fff;
}

.store-empty{
  padding: 30px 0 50px;
  color: rgba(255,255,255,0.86);
}

/* Make the existing header sit on top of the gradient background */
.header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
}
