/* ==========================================================================
   DESIGN SYSTEM & BASIC SETUP
   ========================================================================== */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-light: #ffffff;
    --bg-light-sec: #f9f9f9;
    
    --text-light: #ffffff;
    --text-muted-light: #b3b3b3;
    --text-dark: #0f0f0f;
    --text-muted-dark: #555555;
    
    --primary-red: #ff003c;
    --primary-red-hover: #cc0030;
    --red-glow: rgba(255, 0, 60, 0.4);
    
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* Common Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections Base Styling */
section {
    padding: 8rem 0;
    position: relative;
}

/* Section Header Typography */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: inherit;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    section {
        padding: 5rem 0;
    }
}

/* Buttons Styling */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 4px 15px var(--red-glow);
}

.btn-red:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 60, 0.6);
}

.btn-white {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-white:hover {
    background-color: #e6e6e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* Floating Label Form Input Group */
.input-group {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.1rem 1rem;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    color: inherit;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.input-group textarea {
    resize: none;
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 1.1rem;
    color: #888;
    pointer-events: none;
    transition: var(--transition-normal);
    font-size: 0.95rem;
}

/* Floating behavior */
.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red);
    background-color: var(--bg-dark);
    padding: 0 0.4rem;
}

/* Glow Border on focus */
.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.25);
    background-color: rgba(255, 0, 60, 0.01);
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 90px;
    transition: var(--transition-normal);
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    height: 75px;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-container {
    height: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#main-header nav {
    display: flex;
    gap: 3rem;
    width: 38%;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

#main-header nav a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted-light);
    position: relative;
    padding: 0.5rem 0;
}

#main-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition-normal);
}

#main-header nav a:hover,
#main-header nav a.active {
    color: var(--text-light);
}

#main-header nav a:hover::after,
#main-header nav a.active::after {
    width: 100%;
}

.logo-container {
    width: 24%;
    text-align: center;
}

.band-logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-light);
    display: inline-block;
    transition: var(--transition-normal);
    text-shadow: 0 0 15px rgba(255, 0, 60, 0);
}

.band-logo-text:hover {
    color: var(--primary-red);
    text-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
}

/* Logo Image */
.band-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.band-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: filter 0.3s ease, transform 0.3s ease;
    filter: drop-shadow(0 0 0px rgba(255, 0, 60, 0));
}

.band-logo-link:hover .band-logo-img {
    filter: drop-shadow(0 0 8px rgba(255, 0, 60, 0.6));
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .band-logo-img {
        height: 44px;
    }
}

/* ── Mobile Hamburger Toggle ── */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.4rem 0.6rem;
    z-index: 1001;
    line-height: 1;
}

@media (max-width: 900px) {
    /* Hide desktop navs */
    #main-header nav {
        display: none;
    }
    /* Header: logo on left, hamburger on right */
    .header-container {
        justify-content: space-between;
        padding: 0 1.2rem;
    }
    .logo-container {
        width: auto;
        flex: 1;
        text-align: left;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ── Mobile Sidebar ── */
/* Dark backdrop */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 400;
    pointer-events: none;
    transition: background-color 0.35s ease;
}

.mobile-nav-overlay.open {
    background-color: rgba(0, 0, 0, 0.65);
    pointer-events: auto;
}

/* Sidebar drawer */
.mobile-links-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0d0d0d 0%, #111 100%);
    border-right: 1px solid rgba(255, 0, 60, 0.15);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 401;
    overflow-y: auto;
}

.mobile-nav-overlay.open .mobile-links-sidebar {
    transform: translateX(0);
}

/* Sidebar header: logo + close */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 0, 60, 0.3));
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-muted-light);
    cursor: pointer;
    padding: 0.3rem;
    transition: color 0.2s ease;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--primary-red);
}

/* Sidebar nav links */
.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.mobile-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted-light);
    padding: 0.9rem 0.8rem;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.mobile-links a:hover,
.mobile-links a.active {
    color: var(--text-light);
    background-color: rgba(255, 0, 60, 0.06);
    border-left-color: var(--primary-red);
    padding-left: 1.2rem;
}

/* Sidebar social footer */
.sidebar-footer {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.sidebar-footer a {
    font-size: 1.3rem;
    color: var(--text-muted-light);
    transition: color 0.2s ease;
}

.sidebar-footer a:hover {
    color: var(--primary-red);
}

/* ==========================================================================
   HERO / BANNER SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

/* Portrait slides — align from top so faces are visible */
.hero-slider .slide.slide-portrait {
    background-position: center 10%;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 0 2rem;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 5px;
    margin-bottom: 1rem;
    animation: fadeInUp 1s var(--transition-normal);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.2s var(--transition-normal) 0.1s both;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }
}

/* Custom Audio Player */
.custom-audio-player {
    background: rgba(20, 20, 20, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1.4s var(--transition-normal) 0.2s both;
}

.player-cover {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-controls-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.song-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.5rem;
}

.song-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
}

.song-artist {
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.progress-bar-container {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    cursor: pointer;
    margin-bottom: 0.3rem;
    position: relative;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: var(--primary-red);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 8px var(--primary-red);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted-light);
    margin-bottom: 0.5rem;
}

.player-buttons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.player-btn {
    color: var(--text-muted-light);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.player-btn:hover {
    color: var(--text-light);
}

.main-play-btn {
    background-color: var(--primary-red);
    color: var(--text-light) !important;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--red-glow);
}

.main-play-btn:hover {
    background-color: var(--primary-red-hover);
    transform: scale(1.05);
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

#volume-slider {
    width: 60px;
    height: 3px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    border-radius: 2px;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-red);
    cursor: pointer;
}

.scroll-down-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted-light);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.scroll-down-btn:hover {
    color: var(--primary-red);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, -10px);
    }
    60% {
        transform: translate(-50%, -5px);
    }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    filter: grayscale(20%);
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.about-text-content {
    display: flex;
    flex-direction: column;
}

.about-p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-p strong {
    color: var(--primary-red);
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-dark);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-stats {
        gap: 1.5rem;
        justify-content: space-between;
    }
}

/* ==========================================================================
   BAND MEMBERS (INTEGRANTES) SECTION
   ========================================================================== */
.members-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.member-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-normal);
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 60, 0.3);
    box-shadow: 0 15px 30px rgba(255, 0, 60, 0.1);
}

.member-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 0.85;
    overflow: hidden;
    background-color: #222;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition-slow);
}

.member-card:hover .member-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.member-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 60, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.member-card:hover .member-hover-overlay {
    opacity: 1;
}

.overlay-btn {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    background-color: var(--text-light);
    color: var(--bg-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.member-card:hover .overlay-btn {
    transform: translateY(0);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

.member-role {
    font-size: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 500px) {
    .members-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SHOWS / AGENDA SECTION
   ========================================================================== */
.shows-section {
    background-color: #050505;
    color: var(--text-light);
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: var(--transition-normal);
}

.show-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.01);
}

.show-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    border: 2px solid var(--primary-red);
    width: 75px;
    height: 75px;
    border-radius: 6px;
    flex-shrink: 0;
}

.date-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-light);
}

.date-month {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-red);
    letter-spacing: 1px;
}

.show-venue-image {
    width: 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.show-venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-details {
    flex-grow: 1;
}

.show-venue {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.show-location, .show-time {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 2rem;
}

.show-location i, .show-time i {
    color: var(--primary-red);
}

.show-action {
    flex-shrink: 0;
}

.ticket-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .show-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.2rem;
    }
    .show-venue-image {
        width: 100%;
        max-width: 250px;
        height: 140px;
    }
    .show-location, .show-time {
        margin: 0.3rem 1rem;
    }
    .show-action {
        width: 100%;
    }
    .ticket-btn {
        width: 100%;
    }
}

/* ==========================================================================
/* ==========================================================================
   YOUTUBE & MUSIC SUGGESTIONS SECTION
   ========================================================================== */
.youtube-section {
    background-color: #0b0b0c;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 0, 60, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 0, 60, 0.1);
    border-bottom: 1px solid rgba(255, 0, 60, 0.1);
}

.youtube-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: flex-start;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.widget-title i {
    color: var(--primary-red);
}

.widget-desc {
    color: var(--text-muted-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.youtube-player-wrapper {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 60, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 60, 0.05);
}

.youtube-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.youtube-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.suggestion-wrapper {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 0, 60, 0.15);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 0, 60, 0.05);
}

.suggestion-form .input-group input {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.suggestion-form .input-group input:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.3);
}

.suggestion-form .input-group label {
    color: var(--text-muted-light);
}

.suggestion-form .input-group input:focus ~ label,
.suggestion-form .input-group input:not(:placeholder-shown) ~ label {
    background-color: #121212;
    color: var(--primary-red);
}

.suggestion-status {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 1.5rem;
}

.suggestion-status.success {
    color: #00cc66;
}

.suggestion-status.error {
    color: var(--primary-red);
}

@media (max-width: 900px) {
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   MEDIA KIT SECTION
   ========================================================================== */
.mediakit-section {
    background-color: var(--bg-dark);
    padding: 5rem 0;
}

.mediakit-card {
    background: linear-gradient(135deg, #141414 0%, #080808 100%);
    border: 1px solid rgba(255, 0, 60, 0.15);
    border-radius: 12px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 0, 60, 0.05);
}

.mediakit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.mediakit-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-red);
    display: block;
    margin-bottom: 1rem;
}

.mediakit-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.mediakit-desc {
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    color: var(--text-muted-light);
    font-size: 1rem;
}

.mediakit-download-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .mediakit-card {
        padding: 2.5rem 1.5rem;
    }
    .mediakit-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: #050505;
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.contact-panel-desc {
    color: var(--text-muted-light);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-method-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-method-details span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-light);
    display: block;
    margin-bottom: 0.2rem;
}

.contact-method-details a {
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-method-details a:hover {
    color: var(--primary-red);
}

.contact-social-icons {
    display: flex;
    gap: 1.5rem;
}

.contact-social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    font-size: 1.1rem;
}

.contact-social-icons a:hover {
    color: var(--text-light);
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--red-glow);
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.contact-status {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    min-height: 1.5rem;
}

.contact-status.success {
    color: green;
}

.contact-status.error {
    color: var(--primary-red);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-form-panel {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   LARGE STYLIZED FOOTER
   ========================================================================== */
.footer-section {
    background-color: var(--bg-dark);
    padding: 6rem 0 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-bio {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.copyright {
    font-size: 0.75rem;
    color: #555;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.links-col ul a {
    font-size: 0.9rem;
}

.links-col ul a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-newsletter-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    background-color: #111;
    border: 1px solid #222;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.newsletter-input-group input {
    flex-grow: 1;
    padding: 0.9rem 1.2rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.newsletter-input-group input::placeholder {
    color: #555;
}

.newsletter-input-group button {
    background-color: var(--primary-red);
    color: var(--text-light);
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-input-group button:hover {
    background-color: var(--primary-red-hover);
}

.news-status {
    margin-top: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-status.success {
    color: green;
}

.news-status.error {
    color: var(--primary-red);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   INTERACTIVE MEMBER MODAL (POP-UP)
   ========================================================================== */
.member-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

.member-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.modal-body-container {
    position: relative;
    z-index: 2;
    background-color: var(--bg-card);
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 0, 60, 0.05);
    transform: translateY(40px);
    transition: var(--transition-normal);
}

.member-modal.open .modal-body-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--primary-red);
    background-color: rgba(255, 255, 255, 0.05);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    min-height: 550px;
}

.modal-image-panel {
    background-color: #111;
    position: relative;
}

.modal-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.modal-text-panel {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-member-role {
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.modal-member-name {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 2.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.modal-member-bio {
    margin-bottom: 2.5rem;
}

.bio-title, .social-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.modal-member-bio p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    line-height: 1.7;
}

.modal-social-links {
    display: flex;
    gap: 1.2rem;
}

.modal-social-links a {
    color: var(--text-muted-light);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.modal-social-links a:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-image-panel {
        aspect-ratio: 1.2;
    }
    .modal-text-panel {
        padding: 2.5rem 1.5rem;
    }
    .modal-member-name {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-left {
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-right {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   SHOP SECTION (LOJA PSICOLOZZI)
   ========================================================================== */
.shop-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.product-image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.image-zoom-window {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 450px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background-color: #fafafa;
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: transform 0.15s ease-out;
    transform-origin: center center;
}

.zoom-instruction {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.zoom-instruction i {
    color: var(--primary-red);
}

.product-details {
    display: flex;
    flex-direction: column;
}

.product-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--text-dark);
}

.product-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-sizes {
    margin-bottom: 2.5rem;
}

.size-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted-dark);
    display: block;
    margin-bottom: 0.8rem;
}

.size-options {
    display: flex;
    gap: 1rem;
}

.size-option {
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.size-option input:checked + .size-box {
    border-color: var(--primary-red);
    background-color: var(--primary-red);
    color: var(--text-light);
    box-shadow: 0 4px 10px var(--red-glow);
}

.size-box:hover {
    border-color: #999;
}

.buy-btn {
    align-self: flex-start;
    padding: 1.1rem 3rem;
}

.shop-status {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 1.5rem;
}

.shop-status.success {
    color: green;
}

@media (max-width: 900px) {
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .image-zoom-window {
        height: 350px;
    }
    .cart-icon-btn.floating-cart {
        right: 70px;
        top: 21px; /* Align perfectly with hamburger toggle */
    }
}

/* ==========================================================================
   CART DRAWER / SHOPPING CART
   ========================================================================== */
.cart-icon-btn.floating-cart {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1001; /* Floats on top-right of the viewport */
    background-color: #0b0b0b;
    border: 2px solid var(--primary-red);
    color: var(--text-light);
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.35);
    transition: var(--transition-fast);
}

.cart-icon-btn.floating-cart:hover {
    color: var(--primary-red);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-red);
    color: var(--text-light);
    font-size: 0.68rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px var(--red-glow);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0);
}

.cart-badge.active {
    transform: scale(1);
}

/* Cart Drawer Structure (Sliding from RIGHT side) */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1010; /* Higher than floating cart button so drawer overlay covers it */
    display: flex;
    justify-content: flex-end; /* Aligns content panel to the RIGHT */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cart-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.cart-drawer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background-color: #121212;
    border-left: 1px solid rgba(255, 255, 255, 0.08); /* Border on left now */
    border-right: none;
    display: flex;
    flex-direction: column;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.6);
    transform: translateX(100%); /* Slide from the right */
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.open .cart-drawer-content {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-drawer-header h3 i {
    color: var(--primary-red);
}

.cart-drawer-close {
    background: none;
    border: none;
    color: var(--text-muted-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer-close:hover {
    color: var(--primary-red);
    background-color: rgba(255, 255, 255, 0.05);
}

.cart-drawer-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Empty State */
.cart-empty-message {
    text-align: center;
    padding: 5rem 1rem;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-empty-message .empty-icon {
    font-size: 4rem;
    color: #222;
    margin-bottom: 1.5rem;
}

.cart-empty-message p {
    color: var(--text-muted-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cart-empty-message .btn-sm {
    padding: 0.8rem 2rem;
}

/* Cart Item card */
.cart-item {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding: 1.2rem;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cart-item-img-container {
    width: 65px;
    height: 65px;
    border-radius: 4px;
    background-color: #fafafa;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-size {
    font-size: 0.82rem;
    color: var(--text-muted-light);
    margin-bottom: 0.2rem;
}

.cart-item-size strong {
    color: var(--primary-red);
}

.cart-item-price {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-red);
}

.remove-item-btn {
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-fast);
    padding: 0.5rem;
}

.remove-item-btn:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

/* Pricing Summary Box */
.cart-summary-box {
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    padding: 1.2rem;
}

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

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-row .free-shipping {
    color: #00cc66;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-row.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
}

.total-row span:first-child {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-light);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.total-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

/* Cart Checkout Form */
.cart-request-form {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-request-form .form-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-request-form .input-group input {
    background-color: #1a1a1a;
    border-color: rgba(255,255,255,0.08);
    color: var(--text-light);
}

.cart-request-form .input-group input:focus {
    background-color: #222;
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.cart-request-form .input-group label {
    color: #888;
}

.cart-request-form .input-group input:focus ~ label,
.cart-request-form .input-group input:not(:placeholder-shown) ~ label {
    background-color: #121212;
}

.checkout-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 1.1rem;
    font-size: 0.95rem;
}

/* Success Message inside Cart Drawer */
.cart-success-message {
    text-align: center;
    padding: 4rem 1rem;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart-success-message .success-icon {
    font-size: 4.5rem;
    color: green;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 12px rgba(0, 128, 0, 0.4));
}

.cart-success-message h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 850;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.cart-success-message p {
    color: var(--text-muted-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cart-success-message .btn {
    padding: 0.8rem 2.5rem;
}

/* Form Additions */
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
}

.cep-group {
    position: relative;
}

.cep-loading-spinner {
    position: absolute;
    right: 15px;
    top: 18px;
    color: var(--primary-red);
    font-size: 1.1rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-red);
    cursor: pointer;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.checkbox-container label {
    font-size: 0.88rem;
    color: var(--text-muted-light);
    cursor: pointer;
    user-select: none;
}

/* Repertoire Modal Pop-up */
.repertoire-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000; /* Higher than other modals to display correctly */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.repertoire-modal.open {
    opacity: 1;
    visibility: visible;
}

.repertoire-body-container {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    max-width: 800px;
    width: 92%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 0, 60, 0.1);
    z-index: 2;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.repertoire-modal.open .repertoire-body-container {
    transform: translateY(0);
}

.repertoire-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.repertoire-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.3rem;
}

.repertoire-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.repertoire-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    line-height: 1.5;
}

.repertoire-list-container {
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for Repertoire */
.repertoire-list-container::-webkit-scrollbar {
    width: 6px;
}

.repertoire-list-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}

.repertoire-list-container::-webkit-scrollbar-thumb {
    background: rgba(255, 0, 60, 0.3);
    border-radius: 3px;
}

.repertoire-list-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-red);
}

.repertoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.repertoire-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.repertoire-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    transition: all 0.25s ease;
}

.repertoire-item:hover {
    border-color: var(--primary-red);
    background-color: rgba(255, 0, 60, 0.04);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.05);
}

.song-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 850;
    color: var(--primary-red);
    opacity: 0.7;
    min-width: 20px;
}

.song-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.song-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.song-artist {
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

@media (max-width: 768px) {
    .repertoire-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .repertoire-body-container {
        padding: 1.5rem;
    }
    .repertoire-title {
        font-size: 1.6rem;
    }
}

/* Helpers */
.style-hidden {
    display: none !important;
}

/* ==========================================================================
   RESPONSIVE OVERHAUL — MOBILE FIRST CORRECTIONS
   ========================================================================== */

/* ── Tablet (≤ 900px) ── */
@media (max-width: 900px) {

    /* Container */
    .container {
        padding: 0 1.2rem;
    }

    /* Sections */
    section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

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

    /* Hero */
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    /* Audio Player */
    .custom-audio-player {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem;
    }

    .player-cover {
        display: none;
    }

    .player-controls-container {
        width: 100%;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Members */
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    /* Shows */
    .show-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .show-venue-image {
        width: 100%;
        height: 160px;
    }

    .show-action {
        width: 100%;
    }

    .ticket-btn {
        width: 100%;
        text-align: center;
    }

    /* YouTube / Music */
    .youtube-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Media Kit */
    .mediakit-card {
        padding: 2.5rem 1.5rem;
    }

    .mediakit-title {
        font-size: 1.8rem;
    }

    .mediakit-download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mediakit-download-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-panel {
        padding: 2rem 1.2rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Shop */
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .image-zoom-window {
        height: 320px;
        max-width: 100%;
    }

    .buy-btn {
        width: 100%;
        align-self: stretch;
        text-align: center;
    }

    /* Cart sidebar */
    .cart-sidebar {
        width: 100vw;
    }

    /* Floating cart button: avoid overlap with hamburger */
    .cart-icon-btn.floating-cart {
        right: 72px;
        top: 20px;
    }

    /* Cart checkout form row grids → single column */
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Member modal */
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-image-panel {
        aspect-ratio: 1.2;
    }

    .modal-text-panel {
        padding: 2rem 1.5rem;
    }

    .modal-member-name {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
}

/* ── Mobile (≤ 600px) ── */
@media (max-width: 600px) {

    /* Container tighter */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3.5rem 0;
    }

    /* Hero */
    .hero-title {
        font-size: 2.6rem;
        letter-spacing: -1.5px;
    }

    /* Members: single column */
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Shows: stack info vertically */
    .show-item {
        padding: 1.2rem;
    }

    .show-date {
        width: 60px;
        height: 60px;
    }

    .date-day {
        font-size: 1.5rem;
    }

    .show-venue {
        font-size: 1.2rem;
    }

    /* About stats: 2 columns */
    .about-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        border-top: 1px solid #e0e0e0;
        padding-top: 1.5rem;
    }

    /* Footer logo smaller */
    .footer-logo {
        font-size: 1.8rem;
    }

    /* Buttons full width on small screens */
    .hero-content .btn {
        width: 100%;
        justify-content: center;
    }

    /* Section title smaller */
    .section-title {
        font-size: 1.7rem;
    }

    /* Sidebar full width */
    .mobile-links-sidebar {
        width: 85vw;
    }

    /* Logo in header */
    .band-logo-img {
        height: 38px;
    }

    /* MediaKit buttons stacked */
    .mediakit-download-buttons {
        gap: 0.8rem;
    }

    /* Cart form */
    .cart-request-form .input-group {
        margin-bottom: 0.5rem;
    }

    /* Size options wrap */
    .size-options {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    /* Contact social icons */
    .contact-social-icons {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* RSVP Modal Pop-up */
.rsvp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.rsvp-modal.open {
    opacity: 1;
    visibility: visible;
}

.rsvp-body-container {
    background: rgba(18, 18, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 60, 0.2);
    padding: 0;
    max-width: 900px;
    width: 92%;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 0, 60, 0.15);
    z-index: 2;
    position: relative;
    transform: translateY(25px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.rsvp-modal.open .rsvp-body-container {
    transform: translateY(0);
}

.rsvp-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    align-items: stretch;
}

.rsvp-flyer-column {
    position: relative;
    background-color: #0d0d0d;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.rsvp-flyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.rsvp-flyer-column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.4));
    pointer-events: none;
}

.rsvp-form-column {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rsvp-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.rsvp-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.3rem;
}

.rsvp-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.rsvp-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted-light);
    line-height: 1.5;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rsvp-form .input-group input {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.rsvp-form .input-group input:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.2);
}

.rsvp-form .input-group label {
    color: var(--text-muted-light);
}

.rsvp-form .input-group input:focus ~ label,
.rsvp-form .input-group input:not(:placeholder-shown) ~ label {
    background-color: rgba(20, 20, 20, 0.9);
    color: var(--primary-red);
}

.rsvp-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.rsvp-status.success {
    color: #00cc66;
}

.rsvp-status.error {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .rsvp-grid-layout {
        grid-template-columns: 1fr;
    }
    .rsvp-flyer-column {
        height: 220px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .rsvp-flyer-img {
        object-fit: cover;
    }
    .rsvp-form-column {
        padding: 2rem 1.5rem;
    }
    .rsvp-body-container {
        max-width: 480px;
        margin: 1rem;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
}


