/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #0a0e1a;
    --color-bg-elevated: #111827;
    --color-bg-card: rgba(17, 24, 39, 0.8);
    --color-bg-card-hover: rgba(31, 41, 55, 0.9);
    --color-border: rgba(75, 85, 99, 0.4);
    --color-border-hover: rgba(75, 85, 99, 0.6);
    --color-text: #f9fafb;
    --color-text-muted: #9ca3af;
    --color-text-subtle: #6b7280;
    --color-primary: #f59e0b;
    --color-primary-hover: #ea580c;
    --color-accent: #ea580c;
    --brand-gradient: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --color-legendary: #f59e0b;
    --color-epic: #a855f7;
    --color-rare: #06b6d4;
    --color-common: #64748b;
    --color-promo: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.2s ease;
}

html {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background */
.background-image {
    position: fixed;
    inset: 0;
    background: var(--img) center/cover no-repeat;
    z-index: -2;
}

.background-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 14, 26, 0.7) 0%,
            rgba(10, 14, 26, 0.85) 50%,
            rgba(10, 14, 26, 0.95) 100%);
    z-index: -1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border-color: var(--color-border-hover);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient);
    border-radius: var(--radius-md);
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}

.logo-subtitle {
    font-size: 12px;
    color: var(--color-text-muted);
}

.voucher-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--brand-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.voucher-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* Main Content */
.main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    background: rgba(3, 70, 28, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}

/* Product Card */
.product-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}

.product-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border-color: var(--color-promo);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.2);
}

.product-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--color-promo), transparent, var(--color-promo));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.product-badges {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.badge {
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-tier {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
}

.badge-tier.legendary {
    background: rgba(245, 158, 11, 0.15);
    color: var(--color-legendary);
}

.badge-tier.epic {
    background: rgba(168, 85, 247, 0.15);
    color: var(--color-epic);
}

.badge-tier.rare {
    background: rgba(6, 182, 212, 0.15);
    color: var(--color-rare);
}

.badge-promo {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-promo);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
}

.product-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition);
    border-radius: var(--radius-md);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image .placeholder {
    width: 64px;
    height: 64px;
    background: var(--brand-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.product-description {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.product-price {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.price-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: end;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-value-new {
    color: var(--color-promo);
}

.price-value-old {
    position: relative;
    color: var(--color-text-muted);
}

.price-value-old::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background-color: var(--color-accent);
    border-radius: 2px;
    transform: rotate(-22deg);
}

.buy-button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--brand-gradient);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* Features Section */
.features-section {
    margin-top: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.feature-description {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.feature-description a {
    color: var(--color-text);
}

/* Footer */
.footer {
    background: rgba(17, 24, 39, 0.9);
    border-top: 1px solid var(--color-border);
    padding: 40px 24px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: var(--color-text);
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-divider {
    color: var(--color-text-subtle);
}

.footer-affiliation {
    font-size: 13px;
    color: var(--color-text-subtle);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 440px;
    margin: 24px;
    transform: scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 0;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-text);
}

.modal-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.modal-body {
    padding: 24px;
}

.modal-description {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.voucher-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.voucher-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 15px;
    transition: var(--transition);
}

.voucher-input::placeholder {
    color: var(--color-text-muted);
}

.voucher-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.voucher-submit {
    width: 100%;
    padding: 14px;
    background: var(--brand-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.voucher-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.voucher-submit:disabled {
    cursor: default;
    opacity: 0.6;
}

/* Purchase Modal */
.modal-purchase {
    max-width: 520px;
}

.purchase-info-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
}

.purchase-info-box .info-main {
    font-size: 14px;
    color: var(--color-text);
    margin-bottom: 12px;
    text-align: center;
}

.purchase-info-box .info-main a {
    color: var(--color-primary);
    text-decoration: none;
    font-family: monospace;
    background: rgba(245, 158, 11, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.purchase-info-box .info-main a:hover {
    text-decoration: underline;
}

.purchase-info-box .info-main:last-of-type {
    margin-bottom: 0;
}

.purchase-pricing {
    text-align: center;
    margin-bottom: 24px;
}

.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer;
}

.form-select option {
    background: var(--color-bg-elevated);
    color: var(--color-text);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
    cursor: pointer;
}

.checkbox-text {
    font-size: 14px;
    color: var(--color-text-muted);
}

.checkbox-text a {
    color: var(--color-primary);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.purchase-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--brand-gradient);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.purchase-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.purchase-submit:disabled {
    cursor: default;
    opacity: 0.75;
}

.purchase-footer {
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 20px;
}

.purchase-footer a {
    color: var(--color-primary);
    text-decoration: none;
}

.purchase-footer a:hover {
    text-decoration: underline;
}

/* Alert Styles */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.alert-success {
  background: rgba(3, 70, 28, 0.5);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #22c55e;
}

.alert-danger {
  background: rgba(88, 8, 8, 0.3);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #ef4444;
}

.alert-info {
  background: rgba(8, 41, 94, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.5);
  color: #3b82f6;
}

.alert-brand {
  background: rgba(94, 61, 6, 0.5);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: var(--color-primary);
}

/* Quantity Selector */
.quantity-selector {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}

.quantity-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 16px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.quantity-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.quantity-btn:hover:not(:disabled) {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.quantity-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.quantity-input {
  width: 80px;
  height: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(245, 158, 11, 0.1);
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Slider Container */
.slider-container {
  position: relative;
  padding: 12px 8px;
}

/* Slider Track Background */
.slider-track {
  position: relative;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: visible;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Slider Track Fill */
.slider-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b 0%, #ea580c 100%);
  border-radius: 100px;
  pointer-events: none;
  box-shadow:
    0 0 12px rgba(245, 158, 11, 0.5),
    0 0 24px rgba(234, 88, 12, 0.3);
}

/* Custom Range Slider */
.quantity-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: transparent;
  cursor: pointer;
  position: absolute;
  top: 12px;
  left: 8px;
  right: 8px;
  width: calc(100% - 16px);
  z-index: 10;
  margin: 0;
}

.quantity-slider::-webkit-slider-runnable-track {
  height: 10px;
  background: transparent;
  border-radius: 100px;
}

.quantity-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 30% 30%, #fcd34d 0%, #f59e0b 40%, #ea580c 100%);
  border: 4px solid var(--color-bg-elevated);
  border-radius: 50%;
  cursor: grab;
  margin-top: -6px;
  box-shadow:
    0 4px 12px rgba(245, 158, 11, 0.6),
    0 0 0 4px rgba(245, 158, 11, 0.2),
    0 0 20px rgba(245, 158, 11, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.quantity-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 20px rgba(245, 158, 11, 0.7),
    0 0 0 6px rgba(245, 158, 11, 0.25),
    0 0 30px rgba(245, 158, 11, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.quantity-slider::-webkit-slider-thumb:active {
  cursor: grabbing;
  box-shadow:
    0 8px 25px rgba(245, 158, 11, 0.8),
    0 0 0 8px rgba(245, 158, 11, 0.3),
    0 0 40px rgba(245, 158, 11, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.quantity-slider::-moz-range-track {
  height: 10px;
  background: transparent;
  border-radius: 100px;
  border: none;
}

.quantity-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 30% 30%, #fcd34d 0%, #f59e0b 40%, #ea580c 100%);
  border: 4px solid var(--color-bg-elevated);
  border-radius: 50%;
  cursor: grab;
  box-shadow:
    0 4px 12px rgba(245, 158, 11, 0.6),
    0 0 0 4px rgba(245, 158, 11, 0.2),
    0 0 20px rgba(245, 158, 11, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.quantity-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 20px rgba(245, 158, 11, 0.7),
    0 0 0 6px rgba(245, 158, 11, 0.25),
    0 0 30px rgba(245, 158, 11, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.quantity-slider::-moz-range-thumb:active {
  cursor: grabbing;
}

/* Slider Tick Marks */
.slider-ticks {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-top: 8px;
  pointer-events: none;
}

.slider-ticks span {
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  transition: all 0.2s ease;
}

.slider-ticks span.active {
  background: var(--color-primary);
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.5);
}
