#game-modal-store .offcanvas-body {
  padding: 0 !important;
}

.war-store-panel {
  height: 100%;
}

.store-panel-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  gap: 1rem;
}

.store-panel-body {
  flex: 1;
  overflow: hidden;
}

.store-panel-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 1.25rem 1.5rem 0;
}

.store-panel-inner {
  min-height: 100%;
}

.store-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.5rem;
  align-items: stretch;
  min-height: 100%;
}

.store-panel-col--filters {
  min-width: 0;
}

.store-panel-col--detail {
  min-width: 0;
}

.store-panel-col--detail #store-detail-panel {
  position: sticky;
  top: 1rem;
}

.store-panel-footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  position: relative;
  z-index: 2;
}

.store-filter-state {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-filter-form {
  background-color: rgba(10, 10, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-filter-simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-filter-group {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0.85rem;
  background-color: rgba(255, 255, 255, 0.02);
}

.store-filter-group-header h6 {
  letter-spacing: 0.2em;
}

.store-filter-pillset label {
  cursor: pointer;
}

.store-price-chip {
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f8f9fa;
  background-color: transparent;
}

.store-price-chip.active {
  background-color: rgba(255, 193, 7, 0.25);
  border-color: rgba(255, 193, 7, 0.6);
}

.store-price-sliders {
  gap: 1.25rem;
}

.store-price-range {
  width: 100%;
}

.store-price-display {
  font-weight: 600;
}

.store-featured-toggle .form-check-input {
  margin-top: 0;
}

.store-advanced-toggle {
  display: flex;
  justify-content: flex-end;
}

.store-advanced-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.store-advanced-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.store-advanced-panel.is-open {
  max-height: 1200px;
}

.store-advanced-actions {
  padding-top: 0.5rem;
}

.store-products-list {
  margin-top: 0.5rem;
}

.store-results-count {
  padding: 0 0.5rem;
  letter-spacing: 0.08em;
}

.store-products-list .row {
  row-gap: 1rem;
}

.store-product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-product-card .card-img-top {
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

.store-product-card .card-body {
  padding: 1.1rem;
}

.store-detail-panel-wrapper {
  border-radius: 20px;
  padding: 1.75rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 20, 0.85);
  backdrop-filter: blur(20px);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  z-index: 12000;
}

.store-detail-overlay.show {
  display: flex;
}

.store-detail-overlay-inner {
  width: 100%;
  max-width: 460px;
}

.store-advanced-reset {
  border-radius: 10px;
}

@media (max-width: 991px) {
  .store-panel-grid {
    grid-template-columns: 1fr;
  }
  .store-panel-body {
    padding-bottom: 2px;
  }
  .store-filter-form {
    padding: 0.85rem;
  }
  .store-advanced-panel {
    max-height: 800px;
  }
}

/*# sourceMappingURL=store.css.map */