/* ========================================
   SOLARIS — Showcase Sections
   Cosmetics banner + Season pass spotlight
   Full-width gradient backgrounds
   ======================================== */

/* ---- Cosmetics Banner (full-width) ---- */
.cosmetics-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #10b981;
}

[data-theme="light"] .cosmetics-section {
    background: #10b981;
}

.cosmetics-banner {
    position: relative;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cosmetics-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    overflow: hidden;
    position: relative;
    padding: var(--space-xl) 0;
}

/* Image side — bigger */
.cosmetics-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-md) var(--space-sm) 0;
}

.cosmetics-image img {
    max-height: 560px;
    width: auto;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}

/* Text side */
.cosmetics-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    color: #ffffff;
}

.cosmetics-eyebrow {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.cosmetics-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: var(--space-sm);
}

.cosmetics-desc {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-md);
    max-width: 400px;
}

.cosmetics-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.cosmetics-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ffffff;
}

.cosmetics-cta .btn {
    background: #ffffff;
    color: #059669;
    border-color: rgba(255, 255, 255, 0.3);
    font-weight: 800;
}

.cosmetics-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ---- Season Spotlight (full-width) ---- */
.season-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: var(--season-colour);
}

.season-banner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.season-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 480px;
    overflow: hidden;
    position: relative;
    padding: var(--space-xl) 0;
}

/* Left — season info */
.season-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg);
    color: #ffffff;
}

.season-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    width: fit-content;
    margin-bottom: var(--space-sm);
}

.season-label {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.season-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: var(--space-md);
}

.season-cta .btn {
    background: #fbbf24;
    color: #1a1a24;
    border-color: rgba(251, 191, 36, 0.6);
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3);
}

.season-cta .btn:hover {
    background: #fcd34d;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.45);
}

/* Right — vertical image carousel (MCCI-style) */
.season-preview {
    display: grid;
    grid-template-columns: 1fr 60px;
    gap: 14px;
    padding: var(--space-md);
    align-items: center;
}

/* Main preview image */
.season-preview-main {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    aspect-ratio: 16 / 10;
    position: relative;
}

.season-preview-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.season-preview-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #ffffff;
}

.season-preview-caption h4 {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.season-preview-caption p {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.season-preview-caption .season-preview-badge {
    position: absolute;
    top: -28px;
    right: 12px;
}

/* Vertical icon selector */
.season-preview-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.season-preview-icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.season-preview-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.08);
}

.season-preview-icon-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

/* Season preview badges */
.season-preview-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 6px;
}

.season-preview-badge.free {
    background: rgba(16, 185, 129, 0.25);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.season-preview-badge.premium {
    background: rgba(251, 191, 36, 0.25);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
    .cosmetics-card,
    .season-card {
        grid-template-columns: 1fr;
    }

    .cosmetics-image {
        order: -1;
        height: 320px;
        padding: var(--space-md) var(--space-sm);
    }

    .cosmetics-image img {
        max-height: 280px;
    }

    .cosmetics-title {
        font-size: 2.2rem;
    }

    .season-title {
        font-size: 2.5rem;
    }

    .season-preview {
        grid-template-columns: 1fr 50px;
        padding: 0 var(--space-md) var(--space-md);
    }
}

@media (max-width: 480px) {
    .cosmetics-title {
        font-size: 1.8rem;
    }

    .season-title {
        font-size: 2rem;
    }

    .season-preview {
        grid-template-columns: 1fr;
    }

    .season-preview-icons {
        flex-direction: row;
        justify-content: center;
    }
}
