/* --- STORE PAGE SPECIFIC STYLES --- */
/* --- File: store_specific.css --- */

/* --- Simplified Header Styles (Centered Logo, No Menu) --- */
/* These styles are now shared with chams.html via the common class names */
/* Ensure html and body don't cause overflow */
html, body {
    width: 100%;
    max-width: 100vw; /* Use viewport width */
    overflow-x: hidden; /* Hide any horizontal overflow */
    box-sizing: border-box; /* Include padding/border in width */
}

/* Ensure the main content wrapper doesn't cause overflow */
#main-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* Important */
}

/* Ensure the particle container fits perfectly */
#particles-js {
    width: 100vw; /* Full viewport width */
    max-width: 100%; /* Prevent overflow */
    left: 0; /* Pin to the left edge */
}

.simple-header-centered {

    padding: var(--spacing-md) 0;
    text-align: center;
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container-centered {
    
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.centered-logo {
    height: 60px;
    width: auto;
    transition: transform var(--transition-speed) ease;
}

.centered-logo:hover {
    transform: scale(1.05);
}

/* --- Store Hero Section --- */
.store-hero {
        user-select: none;
    cursor: default; /* Keep default arrow cursor */
    pointer-events: none; /* Prevent any mouse interactions */
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('images/store_hero_background.jpg') center/cover no-repeat;
}

.store-hero .hero-content {
    z-index: 1;
    text-align: center;
}

.store-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
    text-shadow: 0 0 10px rgba(255, 17, 0, 0.5);
}

.store-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.2em;
    color: red
}

/* --- Coming Soon Section --- */
.store-coming-soon {
    background-color: var(--color-bg-secondary);
    position: relative; /* For ::before pseudo-element */
}

/* Lightened background overlay */
.store-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(17, 17, 17, 0.25); /* Lightened from 0.4 to 0.25 */
    backdrop-filter: blur(3px);
    z-index: -1;
    border-radius: var(--border-radius);
    margin: calc(var(--spacing-sm) * -1);
}

.coming-soon-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .coming-soon-content {
        flex-direction: row;
        text-align: left;
    }

    .placeholder-visual {
        flex: 1;
    }

    .placeholder-message {
        flex: 2;
    }
}

.placeholder-visual .glitch-frame {
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-tertiary);
    margin: 0 auto;
}

.placeholder-icon {
    color: var(--color-accent-primary);
    opacity: 0.7;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0.5;
        transform: scale(1);
    }
}

.placeholder-message .message-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.placeholder-message .message-text {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
    line-height: 1.7;
}

/* --- Teaser Section --- */
.store-teaser {
    background-color: var(--color-bg-primary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    position: relative; /* For ::before pseudo-element */
}

/* Lightened background overlay */
.store-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(13, 13, 13, 0.3); /* Lightened from 0.5 to 0.3 */
    backdrop-filter: blur(4px);
    z-index: -1;
    border-radius: var(--border-radius);
    margin: calc(var(--spacing-sm) * -1);
}

.teaser-content {
    max-width: 600px;
    margin: 0 auto;
}

.teaser-text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.teaser-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

.teaser-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    font-size: 1rem;
}

.teaser-list i {
    color: var(--color-accent-primary);
    min-width: 20px; /* Ensure icon width is consistent */
}

/* --- Responsive Adjustments --- */
@media (max-width: 767px) {
    .store-hero {
        height: 40vh;
    }

    .store-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    .store-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.2rem);
    }

    .teaser-list {
        grid-template-columns: 1fr;
    }
}