/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800;900&display=swap');

/* ===== LOCAL FONTS ===== */
@font-face {
    font-family: 'Horta';
    src: url('Fonts/horta.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ===== VIEW TRANSITIONS (suaviza el cambio entre páginas) ===== */
@view-transition {
    navigation: auto;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #d1d1d1;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #e23636;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #ff4d4d;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* ===== HEADER ===== */
header {
    background: #111;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header a {
    text-decoration: none;
    color: inherit;
    display: block;
}

header h1 {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 4.55rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e23636;
    line-height: 1;
    margin-bottom: 0.2rem;
}

header h1 span {
    color: #ffffff;
}

header p {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 1rem;
    color: #999;
    margin-top: 0;
    letter-spacing: 2px;
    font-weight: 300;
}

/* ===== NAVIGATION TABS ===== */
nav {
    background: #111;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
}


.tabs {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.tabs li {
    flex: 1;
    min-width: 0;
}

.tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 1rem 0.5rem;
    background: transparent;
    border: none;
    color: #888;
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
}

.tab-link:hover {
    color: #e23636;
    background: rgba(226, 54, 54, 0.06);
}

.tab-link.active {
    color: #e23636;
    border-bottom-color: #e23636;
    background: rgba(226, 54, 54, 0.04);
}

/* ===== MAIN CONTENT ===== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-x: clip;
}

main > * {
    position: relative;
    z-index: 1;
}


.landing-main {
    max-width: 100%;
    padding: 0;
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HEADER GRADIENT (degradado entre nav y main que abarca todo el ancho) ===== */
.header-gradient {
    width: 100%;
    height: 80px;
    background: linear-gradient(180deg, #150505 0%, #0a0a0a 100%);
    margin-bottom: -80px;
    position: relative;
    z-index: 0;
}

/* ILU page — degradados en naranja */
.page-ilu .header-gradient {
    background: linear-gradient(180deg, #1a0e05 0%, #0a0a0a 100%);
}

.page-ilu .footer-gradient {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0e05 100%);
}

/* ===== HERO SECTION ===== */
.hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: #111;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

/* ===== ILU HEADER ===== */
.header-ilu {
    background: #111;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-ilu a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.header-logo-ilu {
    height: 57px;
    width: auto;
    display: block;
    margin: 0 auto 0.35rem;
}

.header-ilu p {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 1.25rem;
    color: #999;
    letter-spacing: 8px;
    font-weight: 300;
    margin-top: 0.55rem;
    padding-left: 7px;
}

/* ===== ILU PERCUSIÓN TAB ===== */
.tab-logo-ilu {
    height: 20px;
    width: auto;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.3s;
}

/* Naranja/café hover and active state exclusively for the ILU tab */
.tab-link-ilu:hover .tab-logo-ilu,
.tab-link-ilu.active .tab-logo-ilu {
    filter: brightness(1) drop-shadow(0 0 4px rgba(191, 94, 27, 0.5));
}

.tab-link-ilu:hover {
    background: rgba(191, 94, 27, 0.06);
}

.tab-link-ilu.active {
    background: rgba(191, 94, 27, 0.04);
    border-bottom-color: #bf5e1b;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e23636, transparent);
}

.hero-section h2 {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #e23636;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: #999;
    max-width: 650px;
    margin: 0 auto;
}

/* ===== CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #111;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #2a2a2a;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #e23636;
    transform: scaleX(0);
    transition: transform 0.35s;
}

.card:hover::after {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(226, 54, 54, 0.08);
    border-color: #3a3a3a;
}

.card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: block;
    filter: grayscale(0.5);
    transition: filter 0.35s;
}

.card:hover .card-img,
.product-card:hover .product-thumb,
.brand-item:hover img {
    filter: grayscale(0);
}

.card h3 {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    color: #e23636;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card p {
    color: #999;
    font-size: 0.95rem;
}

.card ul {
    list-style: none;
    margin-top: 0.75rem;
}

.card ul li {
    padding: 0.3rem 0;
    color: #888;
    font-size: 0.9rem;
}

.card ul li::before {
    content: "▸ ";
    color: #e23636;
}

.price-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1.2rem;
    background: #e23636;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #e23636;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn:hover {
    background: #ff4d4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 54, 54, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid #e23636;
    color: #e23636;
}

.btn-outline:hover {
    background: #e23636;
    color: #fff;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.35s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(226, 54, 54, 0.08);
    border-color: #3a3a3a;
}

.product-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-bottom: 2px solid #e23636;
    overflow: hidden;
}

.product-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.5);
    transition: filter 0.35s;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    color: #e23636;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.product-info .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e23636;
    margin: 0.75rem 0;
}

/* ===== ARTIST SECTION ===== */
.artist-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: flex-start;
}

.page-artist .artist-photo {
    background: none;
    border: none;
    border-radius: 28px;
}

.page-artist .artist-photo::after {
    display: none;
}

.artist-photo {
    flex: 0 0 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.artist-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e23636;
}

.artist-details {
    flex: 1;
    min-width: 280px;
}

.artist-details h2 {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #e23636;
    margin-bottom: 1rem;
}

.artist-details p {
    color: #999;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.artist-details strong {
    color: #ddd;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #e23636;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #e23636;
    color: #fff;
    border-color: #e23636;
}

/* ===== SECTION TITLE ===== */
.section-title {
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-family: 'Horta', 'Inter Tight', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e23636;
    display: inline-block;
    padding: 0 1.5rem;
    position: relative;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 60px;
    background: #2a2a2a;
}

.section-title h2::before {
    right: 100%;
}

.section-title h2::after {
    left: 100%;
}

@media (max-width: 640px) {
    .section-title h2 {
        font-size: 1.3rem;
    }
    .section-title h2::before,
    .section-title h2::after {
        width: 30px;
    }
}

/* ===== ILU GALLERY ===== */
.ilu-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: transform 0.35s, border-color 0.35s, filter 0.35s;
    filter: grayscale(0.5);
}

.gallery-img:hover {
    transform: scale(1.02);
    border-color: #bf5e1b;
    filter: grayscale(0);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #2a2a2a;
    color: #666;
    font-size: 0.9rem;
    background: #111;
}

/* ===== FOOTER GRADIENT (degradado justo encima del footer) ===== */
.footer-gradient {
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, #0a0a0a 0%, #150505 100%);
    display: block;
}

footer a {
    color: #e23636;
}

.social-links-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: color 0.3s, transform 0.3s;
}

.social-links-footer a:hover {
    color: #e23636;
    transform: translateY(-2px);
}

/* ===== CURSOR NARANJA PARA PÁGINA ILU ===== */
.page-ilu a, .page-ilu button, .page-ilu .btn, .page-ilu .tab-link, .page-ilu [role="button"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpolygon points='5,2 20,12 5,22' fill='%23bf5e1b' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") 12 12, pointer;
}

/* ===== ILU PAGE THEME (naranja) — contenido solamente ===== */
.page-ilu .hero-section h2 {
    color: #bf5e1b;
}
.page-ilu .hero-section::before {
    background: linear-gradient(90deg, transparent, #bf5e1b, transparent);
}
.page-ilu .card h3,
.page-ilu .product-info h3 {
    color: #bf5e1b;
}
.page-ilu .card ul li::before {
    color: #bf5e1b;
}
.page-ilu .card::after {
    background: #bf5e1b;
}
.page-ilu .card:hover {
    box-shadow: 0 8px 24px rgba(191, 94, 27, 0.08);
}
.page-ilu .price-tag {
    background: #bf5e1b;
}
.page-ilu .product-info .price {
    color: #bf5e1b;
}
.page-ilu .product-img {
    border-bottom-color: #bf5e1b;
}
.page-ilu .product-card:hover {
    box-shadow: 0 8px 24px rgba(191, 94, 27, 0.08);
}
.page-ilu .btn {
    background: #bf5e1b;
}
.page-ilu .btn:hover {
    background: #d4782e;
    box-shadow: 0 6px 20px rgba(191, 94, 27, 0.3);
}
.page-ilu .btn-outline {
    border-color: #bf5e1b;
    color: #bf5e1b;
    background: transparent;
}
.page-ilu .btn-outline:hover {
    background: #bf5e1b;
    color: #fff;
}
/* ===== PRODUCCIÓN PAGE — border-radius redondeado ===== */
.page-produccion .card {
    display: flex;
    flex-direction: column;
}

.page-produccion .card > div:last-child {
    margin-top: auto;
}

.page-produccion .card-img {
    border-radius: 28px;
}

.page-produccion .brand-item {
    border-radius: 28px;
}

.page-produccion .brand-item img {
    border-radius: 28px;
}

/* ===== BRANDS GRID (Catálogo) ===== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* ===== BRANDS CAROUSEL (solo móvil) ===== */
.brands-carousel {
    margin: 0 auto;
}

@media (min-width: 641px) {
    .brands-carousel {
        display: block;
        max-width: 900px;
    }

    .carousel-track-wrapper {
        display: block;
    }

    .carousel-track {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }

    .carousel-track .brand-item {
        width: 100%;
        max-width: 220px;
        padding: 0.75rem;
        aspect-ratio: 1 / 1;
    }

    .carousel-btn {
        display: none;
    }
}

@media (max-width: 640px) {
    .brands-carousel {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
        align-self: center;
    }

    .carousel-controls {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }

    .carousel-track-wrapper {
        width: 100%;
        max-width: 280px;
        overflow: hidden;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    .carousel-track .brand-item {
        flex: 0 0 100%;
        width: 100%;
        padding: 0.6rem;
        margin: 0;
        aspect-ratio: 1 / 1;
        box-sizing: border-box;
    }

    .carousel-track .brand-item img {
        padding: 0.6rem;
    }

    .carousel-btn {
        flex-shrink: 0;
        background: transparent;
        color: #e23636;
        border: 2px solid #e23636;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.3rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .carousel-btn:hover {
        background: #e23636;
        color: #fff;
    }
}

.brand-item {
    background: #111;
    border-radius: 12px;
    padding: 0.75rem;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    filter: grayscale(0.5);
    transition: filter 0.3s;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(226, 54, 54, 0.08);
    border-color: #3a3a3a;
}

.brand-item:hover img {
    filter: grayscale(0) brightness(1.05);
}

/* ===== VIDEO HERO ===== */
.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.sound-toggle:hover {
    background: #e23636;
}

.sound-toggle.sound-on {
    background: #e23636;
}

@media (max-width: 768px) {
    .video-container {
        aspect-ratio: 9 / 16;
        max-height: 60vh;
    }

    .sound-toggle {
        bottom: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE ===== */
/* Tablets and small laptops */
@media (max-width: 1024px) {
    header h1 {
        font-size: 5rem;
        letter-spacing: 1px;
    }

    .tab-link {
        font-size: 1.3rem;
        padding: 0.85rem 0.5rem;
    }

    .hero-section h2 {
        font-size: 1.8rem;
    }
}

/* Landscape tablets */
@media (max-width: 900px) {
    header h1 {
        font-size: 4.5rem;
    }

    .tab-link {
        font-size: 1.2rem;
        padding: 0.8rem 0.4rem;
    }

    .artist-photo {
        flex: 0 0 240px;
        height: 240px;
        font-size: 4rem;
    }
}

/* Portrait tablets + large phones */
@media (max-width: 768px) {
    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .tabs::-webkit-scrollbar {
        display: none;
    }
    .tabs li {
        flex: 1;
    }

    .tab-link {
        font-size: 1rem;
        padding: 0.75rem 0.4rem;
        white-space: nowrap;
        letter-spacing: 0;
    }

    header h1 {
        font-size: 3.5rem;
    }

    .hero-section h2 {
        font-size: 1.6rem;
    }

    .hero-section p {
        font-size: 1rem;
    }


    main {
        padding: 1.5rem 1rem;
    }

    .artist-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .artist-photo {
        flex: 0 0 220px;
        height: 220px;
        font-size: 3.5rem;
    }
    .artist-details {
        min-width: unset;
    }

    .header-ilu p {
        font-size: 1rem;
        letter-spacing: 6px;
    }

    .gallery-img {
        height: 200px;
    }
}

/* Small phones */
@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brand-item {
        padding: 0.6rem;
        max-width: 280px;
        margin: 0 auto;
    }

    .brand-item img {
        padding: 0.6rem;
    }

    header h1 {
        font-size: 2.8rem;
    }
    header p {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .tab-logo-ilu {
        height: 0.6rem;
    }

    .tabs {
        max-width: 90%;
        padding: 0;
        gap: 0;
    }

    .tab-link {
        font-size: 0.8rem;
        padding: 0.7rem 0.2rem;
        letter-spacing: 2px;
        gap: 3px;
    }

    .cards-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding: 1.5rem 1rem;
    }
    .hero-section h2 {
        font-size: 1.3rem;
    }
    .hero-section p {
        font-size: 0.9rem;
    }


    .artist-photo {
        flex: 0 0 160px;
        height: 160px;
        font-size: 2.5rem;
    }
    .artist-details h2 {
        font-size: 1.5rem;
    }

    .product-img {
        height: 180px;
    }
    .product-info {
        padding: 1rem;
    }
    .product-info h3 {
        font-size: 1.2rem;
    }
    .product-info .price {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    .btn-sm {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .gallery-img {
        height: 180px;
    }

    .header-logo-ilu {
        height: 40px;
    }
    .header-ilu p {
        font-size: 0.85rem;
        letter-spacing: 5px;
        padding-left: 5px;
    }

    footer {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Very small phones */
@media (max-width: 400px) {
    .brands-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .brand-item {
        padding: 0.75rem;
    }

    .brand-item img {
        padding: 0.75rem;
    }

    header h1 {
        font-size: 2.2rem;
    }

    .tab-link {
        font-size: 0.7rem;
        padding: 0.5rem 0.3rem;
    }


    .gallery-img {
        height: 160px;
    }

    .product-img {
        height: 160px;
    }

    .header-logo-ilu {
        height: 35px;
    }
    .header-ilu p {
        font-size: 0.75rem;
        letter-spacing: 4px;
    }
}

/* ===== CURRENCY SELECTOR ===== */
.currency-selector {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 9999;
}

.currency-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #d1d1d1;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.currency-btn:hover {
    border-color: #e23636;
    color: #e23636;
    background: rgba(226, 54, 54, 0.06);
}

.currency-btn .chevron-down {
    transition: transform 0.3s;
}

.currency-btn.open .chevron-down {
    transform: rotate(180deg);
}

.currency-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 4px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.95);
    transition: all 0.2s ease;
    transform-origin: top right;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.currency-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.currency-option {
    display: block;
    width: 100%;
    padding: 8px 14px;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #999;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    white-space: nowrap;
}

.currency-option:hover {
    background: rgba(226, 54, 54, 0.08);
    color: #e23636;
}

.currency-option.active {
    color: #e23636;
    background: rgba(226, 54, 54, 0.12);
    font-weight: 600;
}

@media (max-width: 640px) {
    .currency-selector {
        top: 8px;
        right: 8px;
    }
    .currency-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    .currency-menu {
        min-width: 160px;
    }
    .currency-option {
        font-size: 0.8rem;
        padding: 7px 12px;
    }
}

/* ILU page: override currency selector colors to naranja */
.page-ilu .currency-btn:hover {
    border-color: #bf5e1b;
    color: #bf5e1b;
    background: rgba(191, 94, 27, 0.06);
}

.page-ilu .currency-option:hover {
    background: rgba(191, 94, 27, 0.08);
    color: #bf5e1b;
}

.page-ilu .currency-option.active {
    color: #bf5e1b;
    background: rgba(191, 94, 27, 0.12);
}

.page-ilu .currency-btn {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpolygon points='5,2 20,12 5,22' fill='%23bf5e1b' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") 12 12, pointer;
}

/* ===== CURSOR PERSONALIZADO ===== */
/* Cursor normal: PLAY negro con borde blanco */
body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpolygon points='5,2 20,12 5,22' fill='%230a0a0a' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") 12 12, auto;
}

/* Cursor clickeable: PLAY rojo con borde blanco */
a, button, [role="button"], .track-item, .release-card, .tab-link, .btn {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpolygon points='5,2 20,12 5,22' fill='%23e23636' stroke='white' stroke-width='1.5' stroke-linejoin='round'/%3E%3C/svg%3E") 12 12, pointer;
}

