/* Store Page, Category Nav & Popup Modals - Reaper Softwares */

/* Main layout */
.store-section {
  padding: 1.25rem 0 6rem;
  position: relative;
  z-index: 1;
}

.store-header {
  text-align: center;
  margin-bottom: 3rem;
}

.store-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.store-subtitle {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.5;
}

/* Menu Preview - side-by-side carousel */
.menu-preview {
  margin: 0 auto 1rem;
  max-width: 1280px;
}

.menu-preview[hidden] {
  display: none !important;
}

.menu-preview-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.menu-preview-title {
  font-family: var(--font-display);
  font-size: 2.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.menu-preview-desc {
  margin: 0 auto;
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.menu-preview-stage {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 0.85rem;
}

.menu-preview-arrow {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1.95rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.menu-preview-arrow:hover:not(:disabled) {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.5);
  transform: translateY(-1px);
}

.menu-preview-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.menu-preview-window {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(220, 38, 38, 0.07) 0%, transparent 55%),
    #07070b;
  padding: 1.15rem 1rem 1rem;
}

.menu-preview-track {
  --visible-count: 3;
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.menu-preview-card {
  flex: 0 0 calc((100% - (1rem * (var(--visible-count) - 1))) / var(--visible-count));
  margin: 0;
  min-width: 0;
}

.menu-preview-card img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.menu-preview-card figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-preview-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.menu-preview-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.menu-preview-dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.menu-preview-dot.is-active {
  background: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 0 10px var(--accent-glow);
}

.menu-preview-video {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-preview-video-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-preview-video-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.menu-preview-video-sub {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.menu-preview-video-counter {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 38, 38, 0.28);
  background: rgba(220, 38, 38, 0.08);
}

.menu-preview-video-stage {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 0.75rem;
}

.menu-preview-video-window {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(220, 38, 38, 0.1) 0%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%),
    #050508;
  padding: 0.85rem;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.menu-preview-video-track {
  display: flex;
  gap: 0.85rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.menu-preview-video-card {
  flex: 0 0 100%;
  margin: 0;
  min-width: 0;
}

.menu-preview-video-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
}

.menu-preview-video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  z-index: 1;
}

.menu-preview-video-player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: min(68vh, 640px);
  object-fit: contain;
  background: #000;
}

.menu-preview-video-card figcaption {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8edf2;
}

.menu-preview-video-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.menu-preview-arrow--video {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-preview-arrow--video:hover:not(:disabled) {
  background: rgba(220, 38, 38, 0.16);
  border-color: rgba(220, 38, 38, 0.45);
  box-shadow: 0 0 16px rgba(220, 38, 38, 0.15);
}

.preview-disclaimer {
  margin-top: 1.75rem;
  text-align: left;
}

.preview-disclaimer-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.preview-disclaimer-list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.preview-disclaimer-list strong {
  color: #d5dee8;
}

.preview-disclaimer-more {
  margin: 0.85rem 0 0;
  font-size: 0.82rem;
}

.preview-disclaimer-more a {
  color: var(--accent);
  text-decoration: none;
}

.preview-disclaimer-more a:hover {
  text-decoration: underline;
}

.disclaimer-panel h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.disclaimer-list {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.disclaimer-list strong {
  color: #d5dee8;
}

.disclaimer-footer-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.88rem;
}

.disclaimer-footer-note a {
  color: var(--accent);
  text-decoration: none;
}

.disclaimer-footer-note a:hover {
  text-decoration: underline;
}

@media (max-width: 700px) {
  .menu-preview-stage {
    grid-template-columns: 42px 1fr 42px;
    gap: 0.45rem;
  }

  .menu-preview-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .menu-preview-window {
    padding: 0.8rem 0.6rem 0.7rem;
  }

  .menu-preview-title {
    font-size: 1.7rem;
  }

  .menu-preview-desc {
    font-size: 0.95rem;
  }

  .menu-preview-video-stage {
    grid-template-columns: 40px 1fr 40px;
    gap: 0.45rem;
  }

  .menu-preview-arrow--video {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .menu-preview-video-window {
    padding: 0.55rem;
    border-radius: 14px;
  }

  .menu-preview-video-heading {
    font-size: 1.15rem;
  }
}

#store-products-container[hidden] {
  display: none !important;
}

/* Category Navigation Filter Bar */
.store-categories-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: rgba(3, 3, 3, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.store-categories-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.35rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-tab:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.category-tab.active {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Category Sections */
.store-category-section {
  margin-bottom: 4rem;
  transition: opacity 0.3s ease, display 0.3s ease;
}

.store-category-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text);
}

.title-dash {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-glow);
}

/* Products Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
  justify-content: center;
  gap: 1.5rem;
}

/* Product Cards */
.store-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0.2;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.store-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 
    0 15px 35px -10px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(220, 38, 38, 0.15);
}

.store-card:hover::before {
  opacity: 1;
}

/* Glowing CSS Text Banners - No Graphic Logos */
.store-card-banner {
  background: #030305;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.store-card-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.banner-text {
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: 
    0 0 8px rgba(220, 38, 38, 0.25),
    0 0 25px var(--accent);
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.store-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.store-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.store-card-title {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.store-card-description {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.store-card-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.25rem;
}

.store-card-price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}

.store-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Modals Core */
#store-modal-root {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

#store-modal-root.active {
  pointer-events: auto;
  opacity: 1;
}

.store-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 2, 4, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1;
}

.store-modal-content {
  position: relative;
  background: #06060a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  width: min(480px, 92vw);
  max-height: 92vh;
  z-index: 2;
  overflow-y: auto;
  padding: 2.25rem 2rem 2rem;
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.95),
    0 0 35px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.25s cubic-bezier(0.34, 1.45, 0.64, 1);
}

#store-modal-root.active .store-modal-content {
  transform: scale(1);
}

.store-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 10;
}

.store-modal-close:hover {
  color: var(--text);
}

.store-modal-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.store-modal-banner-mini {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  text-shadow: 0 0 10px var(--accent);
}

.store-modal-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.store-modal-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* Variant selectors */
.store-variants-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.variant-select-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--text);
}

.variant-select-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--modal-accent);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.01);
  transform: translateY(-1px);
}

.variant-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.variant-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.variant-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  opacity: 0.8;
}

.variant-price {
  font-size: 1.15rem;
  font-weight: 700;
}

.variant-select-item:hover .variant-price {
  color: var(--modal-accent);
  text-shadow: 0 0 8px var(--modal-accent);
}

.store-modal-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.store-modal-secure .lock-icon {
  font-size: 0.9rem;
}

/* Info Detail Modal Variations */
.store-modal-content--info {
  width: min(600px, 94vw);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.store-modal-banner-large {
  background: #030305;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.store-modal-banner-large .banner-text {
  color: var(--accent);
  font-size: 2.2rem;
  text-shadow: 
    0 0 10px rgba(220, 38, 38, 0.25),
    0 0 30px var(--accent);
}

.store-modal-header--info {
  margin: 1.75rem 2rem 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.store-info-body {
  padding: 0 2rem;
  overflow-y: auto;
  max-height: 55vh;
  margin-bottom: 1.75rem;
}

.store-info-long-desc {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.store-info-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.store-info-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .store-info-features-list {
    grid-template-columns: 1fr 1fr;
  }
}

.store-info-feature-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.feature-check {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.55);
  position: relative;
}

.feature-check::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.16rem;
  width: 0.28rem;
  height: 0.5rem;
  border: solid #10b981;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.feature-bullet {
  font-weight: 700;
  font-size: 0.9rem;
  color: #10b981;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.store-info-footer {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.btn-close-modal {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close-modal:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn-modal-buy {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .store-modal-content {
    padding: 2rem 1.25rem 1.5rem;
  }
  .store-modal-header {
    margin-bottom: 1.5rem;
  }
  .store-modal-banner-large {
    height: 120px;
  }
  .store-modal-banner-large .banner-text {
    font-size: 1.8rem;
  }
  .store-modal-header--info {
    margin: 1.5rem 1.25rem 1rem;
  }
  .store-info-body {
    padding: 0 1.25rem;
  }
  .store-info-footer {
    padding: 1rem 1.25rem;
  }
}

/* Quantity Selection Modal Layouts */
.store-quantity-selection-body {
  margin-bottom: 2rem;
}

.bulk-discount-banner {
  background: rgba(220, 38, 38, 0.05);
  border: 1px dashed rgba(220, 38, 38, 0.3);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.discount-badge {
  background: var(--accent);
  color: #fff;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px var(--accent-glow);
  flex-shrink: 0;
}

.quantity-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.qty-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.qty-control-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-number-input {
  width: 90px;
  height: 44px;
  text-align: center;
  background: #09090e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.qty-number-input:focus {
  border-color: var(--modal-accent, var(--accent));
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.1);
}

/* Remove default spin buttons from number input */
.qty-number-input::-webkit-outer-spin-button,
.qty-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-number-input[type=number] {
  -moz-appearance: textfield;
}

.btn-qty-adj {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 0.85rem;
  height: 44px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 48px;
}

.btn-qty-adj:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.quantity-price-display-wrapper {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.25rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-row:not(:last-child) {
  margin-bottom: 0.75rem;
}

.price-row--total {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  color: #fff;
  font-weight: 700;
}

.price-row--total .price-value {
  font-size: 1.35rem;
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

.store-quantity-footer {
  display: flex;
  flex-direction: column;
}

.btn-qty-checkout {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
}
