.normal-store-body {
  margin: 0;
  min-height: 100vh;
  background: #0a0e16;
  color: #f4f1ea;
  position: relative;
}

.store-scene {
  display: none;
}

.has-scene-bg .store-scene {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 20, 0.72) 0%, rgba(7, 11, 20, 0.88) 100%),
    var(--store-scene) center / cover no-repeat;
  filter: saturate(0.9) brightness(0.72);
  pointer-events: none;
}

.has-scene-bg .site-header,
.has-scene-bg .flash-wrap,
.has-scene-bg .store-shell {
  position: relative;
  z-index: 1;
}

.has-scene-bg .site-header {
  background: rgba(5, 8, 16, 0.72);
  backdrop-filter: blur(12px);
}

.store-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 64px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.store-sidebar {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0.9rem;
  background: rgba(10, 14, 24, 0.92);
  backdrop-filter: blur(10px);
}

.sidebar-title {
  font-family: Bungee, sans-serif;
  font-size: 0.85rem;
  color: #ff3b4a;
  margin: 0 0 0.75rem;
  letter-spacing: 0.04em;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  color: #d7deef;
  text-decoration: none;
  border-left: 3px solid transparent;
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}

.sidebar-link:hover,
.sidebar-link.is-active {
  background: rgba(225, 29, 46, 0.12);
  border-left-color: #e11d2e;
  color: #fff;
}

.sidebar-link small { color: #8b93a7; }

.store-sidebar hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.store-content {
  padding: 1.25rem 1.5rem 2rem;
  position: relative;
  z-index: 6;
  color: #f4f1ea;
  background: rgba(7, 11, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.has-video-bg .store-content .product-card,
.has-video-bg .store-content .filters,
.store-content .product-card,
.store-content .filters {
  background: rgba(10, 14, 24, 0.94) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 1;
}

.store-content .section-head h1,
.store-content .section-sub,
.store-content .meta,
.store-content .price {
  color: #f4f1ea;
  position: relative;
  z-index: 1;
}

.store-content .section-sub,
.store-content .meta,
.store-content .views-hint {
  color: #9aa6bf;
}

.checkout-with-bg {
  background:
    linear-gradient(180deg, rgba(10, 14, 24, 0.82), rgba(10, 14, 24, 0.9)),
    var(--checkout-banner) center / cover no-repeat;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.has-scene-bg .checkout-with-bg {
  background: rgba(10, 14, 24, 0.78);
  backdrop-filter: blur(8px);
}

@media (max-width: 800px) {
  .store-shell { grid-template-columns: 1fr; }
  .store-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .sidebar-title { width: 100%; }
  .sidebar-link { border-left: 0; border-bottom: 2px solid transparent; }
  .sidebar-link.is-active { border-bottom-color: #e11d2e; }
}
