/* ===== STORE PAGE STYLES ===== */

.store-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, transparent 100%);
}

.page-title {
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Lava Text Effect */
/* Lava Text Effect (Updated to Holographic/Neon) */
.text-gradient {
    background: linear-gradient(to right, #10b981, #3b82f6, #14b8a6, #10b981);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holographicFlow 5s linear infinite;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

@keyframes holographicFlow {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.store-content {
    padding-top: 0;
}

.store-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--spacing-lg);
}

/* Sidebar */
.store-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-section {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.filter-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.filter-option:hover {
    background: var(--bg-tertiary);
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    cursor: pointer;
}

.price-range {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.price-range input {
    flex: 1;
}

/* Toolbar */
.store-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.results-count {
    font-weight: 500;
    color: var(--text-secondary);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.sort-options label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.sort-options select {
    min-width: 180px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.product-card-store {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card-store:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(59, 130, 246, 0.4),
        inset 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.product-image-store {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.product-content-store {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header-store {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: var(--spacing-sm);
}

.product-title-store {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.product-category-store {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
}

.product-description-store {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.product-footer-store {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
}

.product-price-store {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

/* Modal */
.modal-large {
    max-width: 800px;
}

.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.product-modal-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

.product-modal-info h2 {
    margin-bottom: var(--spacing-sm);
}

.product-modal-category {
    color: var(--text-tertiary);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

.product-modal-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.variants-section h4 {
    margin-bottom: var(--spacing-md);
}

.variant-card {
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.variant-card:hover,
.variant-card.selected {
    border-color: var(--primary);
    background: var(--bg-glass);
}

.variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.variant-duration {
    font-weight: 600;
    font-size: 1.1rem;
}

.variant-price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .store-layout {
        grid-template-columns: 1fr;
    }

    .store-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }

    .product-modal-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .store-toolbar {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: stretch;
    }

    .sort-options {
        flex-direction: column;
        align-items: stretch;
    }

    .sort-options select {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}/* KillSwxtch Image Filter - Shifts Pink/Purple to Green/Blue */
.killswxtch-filter {
    filter: hue-rotate(-140deg) brightness(1.1) contrast(1.1) saturate(1.2);
}
