/*==============================================================================
   IBOARDS ENERGY - MAIN STYLESHEET
==============================================================================*/

:root {
    --bg-dark: #050505;
    --bg-darker: #000000;
    --bg-light-dark: #151515;
    --accent-color: #fbbc1a; /* Warm Golden Yellow */
    --accent-color-hover: #e5a90d;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color-hover);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.accent-text {
    color: var(--accent-color);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    position: relative;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5); /* Glowing effect */
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: #000;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    isolation: isolate;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
}

.site-logo-img {
    max-height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-logo-img:hover {
    transform: scale(1.05);
}



.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-btn {
    padding: 8px 20px;
    font-size: 1rem;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.shop-btn:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* HERO CAROUSEL */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--bg-darker);
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s linear;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(5,5,5,1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: clamp(4rem, 10vw, 8rem);
    margin-bottom: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    transform: skewX(-5deg);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.hero-diagonal-cut {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-dark);
    transform: skewY(-3deg);
    z-index: 3;
}

.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.carousel-dot {
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

.carousel-dot.active {
    background: var(--accent-color);
}

/* EXPOSITOR SECTION (Liquid Death Style) */
.expositor-section {
    background-color: #FFFFFF;
    color: #000000;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.expositor-headline {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    margin-bottom: 80px;
    letter-spacing: 2px;
}

.expositor-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.expositor-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.expositor-track {
    display: flex;
    width: max-content;
    animation: marquee 80s linear infinite;
}

.expositor-track:hover {
    animation-play-state: paused;
}

.expositor-item {
    margin: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 300px;
    text-decoration: none;
}

.expositor-item img {
    height: 400px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0px 20px 20px rgba(0,0,0,0.15));
}

.expositor-item:hover img {
    transform: scale(1.05) translateY(-10px);
    cursor: pointer;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.board-name {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: #000;
}

.board-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    background: #eee;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    color: #555;
    border: 1px solid #ddd;
}

/* BOARDS SECTION */
.boards-section {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    z-index: 4;
}

.section-title {
    font-size: 3rem;
    text-align: center;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--accent-color);
    margin: 0 auto 50px auto;
}

.boards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.board-card {
    background: var(--bg-light-dark);
    padding: 20px;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.board-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 255, 0, 0.1);
    border-color: var(--accent-color);
}

.board-image {
    height: 300px;
    background: transparent;
    margin-bottom: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.board-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.board-card:hover .board-image img {
    transform: scale(1.05);
}

.board-info h3 {
    font-size: 1.8rem;
}

.board-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* BRUTALIST ACTION SECTION */
.action-section.brutalist {
    position: relative;
    padding: 150px 0;
    background: #000;
    overflow: hidden;
}

.brutalist-bg-stripes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        -45deg,
        #050505,
        #050505 15px,
        #111 15px,
        #111 30px
    );
    background-size: 42px 42px;
    opacity: 0.4;
    animation: bg-scroll 12s linear infinite;
    z-index: 0;
}

@keyframes bg-scroll {
    0% { background-position: 0 0; }
    100% { background-position: 42px 42px; }
}

/* INFINITE MARQUEE */
.marquee-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 120vw;
    left: -10vw;
    background: var(--accent-color);
    color: #000;
    padding: 20px 0;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(255, 255, 0, 0.5);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: marquee 15s linear infinite;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.marquee-track span {
    padding-right: 20px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* OVERLAPPING LAYOUT */
.brutalist-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.action-video-wrapper {
    position: absolute;
    width: 60%;
    height: 120%;
    right: 5%;
    top: -10%;
    z-index: 2;
}

.brutal-clip {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
    background: #111;
}

.brutal-clip video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: contrast(1.2) grayscale(0.5);
    transition: filter 0.3s;
}

.brutal-clip:hover video {
    filter: contrast(1.1) grayscale(0);
}

.brutal-text {
    position: relative;
    z-index: 3;
    width: 100%;
    pointer-events: none; /* Let video be clickable underneath if needed */
}

.massive-text {
    font-size: 6rem;
    line-height: 0.9;
    text-shadow: 10px 10px 0 rgba(0,0,0,0.9);
}

.text-box-accent {
    background: rgba(0, 0, 0, 0.85);
    padding: 40px;
    margin-top: 20px;
    max-width: 500px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.text-box-accent p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 30px;
}

/* PULSING BUTTON */
.btn-pulse {
    position: relative;
    display: inline-block;
    padding: 18px 35px;
    background: var(--accent-color);
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    box-shadow: 0 0 15px var(--accent-color);
    transition: transform 0.2s, background 0.2s;
}

.btn-pulse::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: transparent;
    z-index: -1;
    animation: pulse-neon 2s infinite;
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
}

.btn-pulse:hover {
    transform: scale(1.05);
    background: #fff;
}

@keyframes pulse-neon {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 0, 0); }
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(30% 20%, 80% 50%, 30% 80%);
}

/* FOOTER */
.site-footer {
    background: var(--bg-darker);
    padding: 100px 0 30px;
    position: relative;
    margin-top: 100px;
}

.footer-slanted-edge {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--bg-darker);
    transform: skewY(2deg);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-links h3, .footer-social h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light-dark);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-3px);
}

.site-info {
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .action-content {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-carousel {
        height: 100dvh;
        min-height: 500px;
    }

    /* Expositor Carousel mobile overrides */
    .expositor-section {
        padding: 60px 15px;
    }
    
    .expositor-headline {
        margin-bottom: 40px;
    }
    
    .expositor-item {
        width: 200px;
        margin: 0 20px;
    }
    
    .expositor-item img {
        height: 260px;
        margin-bottom: 15px;
    }
    
    .board-name {
        font-size: 1.5rem;
    }
    
    .board-tag {
        font-size: 0.8rem;
    }
    

    
    .site-logo-img {
        max-height: 45px;
    }

    .header-actions {
        gap: 12px;
    }

    .shop-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    @media (max-width: 400px) {
        .site-logo-img {
            max-height: 35px;
        }
        .header-actions {
            gap: 8px;
        }
        .shop-btn {
            padding: 4px 8px;
            font-size: 0.8rem;
        }
    }
    


    /* Sports Section mobile overrides */
    .sports-section {
        padding: 60px 0;
    }
    
    .sports-text-container {
        max-width: 800px;
        margin: 0 auto 35px;
        padding: 0 15px;
        text-align: center;
    }
    
    .sports-headline {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .sports-headline br {
        display: none;
    }
    
    .sports-description {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .sport-slide {
        height: 100dvh;
    }
    
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-info-box {
        padding: 25px 20px;
        max-width: 100%;
        clip-path: none; /* Disable clip-path on mobile to prevent text clipping */
        border-left: 4px solid var(--accent-color);
        background: rgba(0, 0, 0, 0.85);
    }
    
    .slide-info-box h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .slide-info-box p {
        font-size: 0.95rem;
    }
    
    .slide-info-box strong {
        font-size: 1.05rem;
    }

    /* Brutalist Action Section mobile overrides */
    .action-section.brutalist {
        padding: 60px 0;
    }
    
    .brutalist-layout {
        min-height: auto;
    }
    
    .action-video-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        right: auto;
        top: auto;
        margin-bottom: 25px;
    }
    
    .brutal-clip {
        border-radius: 15px; /* Softer radius on mobile */
    }
    
    .massive-text {
        font-size: 3rem;
        text-shadow: 4px 4px 0 rgba(0,0,0,0.9);
    }
    
    .text-box-accent {
        padding: 25px 20px;
        margin-top: 15px;
        border-radius: 15px;
        max-width: 100%;
    }
    
    .text-box-accent p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Legal dossier template mobile overrides */
    .legal-page-wrapper {
        padding: 100px 0 60px;
    }
    
    .legal-dossier {
        padding: 25px 20px;
        box-shadow: 10px 10px 0 rgba(0,0,0,0.5);
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .dossier-meta {
        flex-direction: column;
        gap: 10px;
    }

    /* Product Detail page mobile overrides */
    .product-detail-image-section {
        position: static;
    }
    
    .product-main-image-wrapper {
        padding: 20px;
    }
    
    .product-detail-name {
        font-size: 2rem;
    }
}

/* SPORTS SECTION */
.sports-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sports-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.sports-headline {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sports-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.stacked-cards-container {
    position: relative;
    width: 100%;
    /* We don't need overflow hidden here, we want natural scroll */
}

.sport-slide {
    position: sticky;
    top: 0;
    height: 100vh; /* Full screen height for perfect stacking */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #000;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8); /* Shadow to separate cards as they stack */
}


.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5); /* Dim video to make text pop */
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-info-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 40px;
    max-width: 500px;
    border-left: 4px solid var(--accent-color);
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
    backdrop-filter: blur(10px);
}

.slide-info-box h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}

.stacked-card.active .card-number {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
}

.slide-info-box p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.slide-info-box strong {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* EFFECTS & GLITCH */
.glitch-effect {
    position: relative;
    display: inline-block;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    opacity: 0;
}

.glitch-effect:hover::before {
    left: 3px;
    text-shadow: -2px 0 red;
    animation: glitch-anim-1 0.8s infinite linear alternate-reverse;
    opacity: 1;
}

.glitch-effect:hover::after {
    left: -3px;
    text-shadow: 2px 0 blue;
    animation: glitch-anim-2 0.9s infinite linear alternate-reverse;
    opacity: 1;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 50% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    100% { clip-path: inset(5% 0 80% 0); }
}

/* HARDCORE F1 ANIMATION */
.hardcore-anim {
    animation: hardcore-shake 0.25s infinite alternate;
}

@keyframes hardcore-shake {
    0% { transform: scale(1.1) translate(1px, 1px) rotate(0deg); filter: contrast(1.2) brightness(0.7) saturate(1.2); }
    20% { transform: scale(1.15) translate(-2px, -2px) rotate(-0.5deg); filter: contrast(1.4) brightness(0.9) saturate(1.5); }
    40% { transform: scale(1.12) translate(-3px, 0px) rotate(0.5deg); filter: contrast(1.2) brightness(0.7) saturate(1.2); }
    60% { transform: scale(1.14) translate(3px, 2px) rotate(0deg); filter: contrast(1.6) brightness(1) saturate(1.8); }
    80% { transform: scale(1.1) translate(-1px, 2px) rotate(-0.5deg); filter: contrast(1.4) brightness(0.8) saturate(1.4); }
    100% { transform: scale(1.13) translate(1px, -2px) rotate(0.5deg); filter: contrast(1.3) brightness(0.9) saturate(1.6); }
}

/* BRUTALIST FOOTER */
.brutal-footer {
    background: #050505;
    border-top: 5px solid var(--accent-color);
    padding: 80px 0 20px;
    color: #fff;
    font-family: var(--font-body);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-slogan {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.footer-links h3, .footer-social h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
}

.social-icons a:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px) rotate(5deg);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-social .social-icons {
    justify-content: center;
}

.footer-channels h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.channel-decathlon {
    margin-top: 15px;
}

.channel-decathlon a {
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.channel-decathlon a:hover {
    transform: translateY(-3px);
}

.decathlon-logo {
    width: 120px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .footer-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

.footer-bottom-bar {
    border-top: 1px solid #222;
    padding: 30px 0;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.site-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .legal-links {
        justify-content: center;
    }
    .legal-links .separator {
        display: none;
    }
}

.legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: var(--accent-color);
}

.legal-links .separator {
    color: #444;
}

/* LEGAL PAGES DOSSIER TEMPLATE */
.legal-page-wrapper {
    padding: 150px 0 100px;
    background: repeating-linear-gradient(45deg, #020202, #020202 10px, #050505 10px, #050505 20px);
    min-height: 100vh;
}

.legal-dossier {
    background: #0a0a0a;
    border: 1px solid #333;
    border-top: 5px solid var(--accent-color);
    padding: 60px;
    box-shadow: 20px 20px 0 rgba(0,0,0,0.5);
    max-width: 900px;
    margin: 0 auto;
}

.legal-header {
    border-bottom: 2px solid #222;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.dossier-badge {
    display: inline-block;
    background: var(--accent-color);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.legal-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.dossier-meta {
    display: flex;
    gap: 30px;
    color: #666;
    font-family: monospace;
    font-size: 0.9rem;
}

.legal-content-body {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.legal-content-body h2, .legal-content-body h3 {
    color: #fff;
    font-family: var(--font-heading);
    margin: 40px 0 20px;
}

.legal-content-body p {
    margin-bottom: 20px;
}

.legal-content-body ul, .legal-content-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content-body li {
    margin-bottom: 10px;
}

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */
.shop-main {
    padding-top: 100px;
    background-color: var(--bg-dark);
}

.shop-header-section {
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid #333;
}

.shop-headline {
    font-size: 4rem;
    margin-bottom: 10px;
}

.shop-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.shop-products-section {
    padding: 60px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 768px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: var(--bg-light-dark);
    border: 1px solid #222;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(250, 255, 0, 0.15);
    transform: translateY(-5px);
}

.product-image-wrapper {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-tag {
    display: block;
    font-family: monospace;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.product-buy-btn {
    width: 100%;
    padding: 15px 0;
    border-radius: 8px;
}

/* ==========================================================================
   CART SYSTEM
   ========================================================================== */
.cart-toggle {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.cart-toggle:hover {
    color: var(--accent-color);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--accent-color);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    border-left: 1px solid #333;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.cart-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-close:hover {
    color: var(--accent-color);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item {
    display: flex;
    gap: 15px;
    background: var(--bg-light-dark);
    padding: 10px;
    border: 1px solid #222;
    position: relative;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #000;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-title {
    font-size: 1rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 0;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.cart-qty-btn, .checkout-qty-btn {
    background: #222;
    border: 1px solid #333;
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.cart-qty-btn:hover, .checkout-qty-btn:hover {
    background: #333;
    border-color: var(--accent-color);
}

.cart-qty-val, .checkout-qty-val {
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 15px;
    text-align: center;
}


.cart-item-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-item-remove:hover {
    color: #ff3333;
}

.cart-empty-msg {
    text-align: center;
    color: #666;
    margin-top: 50px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #333;
    background: #0a0a0a;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.cart-checkout-btn {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
}

/* ==========================================================================
   CHECKOUT PAGE STYLES
   ========================================================================== */
.checkout-main {
    padding: 140px 0 80px;
    background-color: #0b0b0b;
    color: #ffffff;
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

@media (min-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

.checkout-section-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}

.checkout-subsection-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin: 40px 0 20px;
    border-bottom: 2px solid #222;
    padding-bottom: 10px;
}

/* Form Styles */
.checkout-form {
    background: #111;
    padding: 30px;
    border: 2px solid #222;
    border-radius: 0;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    color: #888;
}

.form-group input {
    background-color: #000;
    border: 2px solid #333;
    color: #fff;
    padding: 15px;
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: var(--accent-color);
}

.form-row {
    display: flex;
    gap: 20px;
}

.col-6 {
    flex: 0 0 calc(50% - 10px);
}

.btn-checkout-submit {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.1rem;
}

/* Summary Styles */
.checkout-summary-box {
    background: #111;
    border: 2px solid #222;
    padding: 30px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.3);
}

.checkout-summary-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

/* Checkout Item Row */
.checkout-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #000;
    padding: 5px;
    border: 1px solid #222;
}

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

.checkout-item-title {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
}

.checkout-item-tag {
    font-size: 0.75rem;
    color: var(--accent-color);
    background: rgba(255, 235, 59, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

.checkout-item-price {
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: auto;
}

.checkout-item-remove {
    background: none;
    border: none;
    color: #ff5252;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    padding: 0 5px;
    line-height: 1;
    margin-left: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.checkout-item-remove:hover {
    color: #ff1a1a;
    transform: scale(1.2);
}


.summary-divider {
    border: 0;
    border-top: 2px solid #222;
    margin: 25px 0;
}

.sub-totals-divider {
    border-top-style: dashed;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: #aaa;
}

.totals-row span:last-child {
    color: #fff;
    font-weight: 700;
}

.total-final {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}

.total-final span:last-child {
    color: var(--accent-color);
    font-size: 1.8rem;
}

/* Success State styling */
.checkout-success-container {
    text-align: center;
    background: #111;
    border: 2px solid #222;
    padding: 60px 40px;
    margin: 40px auto 80px;
    max-width: 650px;
    box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.4);
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.success-title {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.success-message {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-order-details {
    background: #000;
    padding: 20px;
    border: 1px dashed #333;
    margin-bottom: 40px;
}

.success-order-details p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #888;
}

.success-order-details strong {
    color: var(--accent-color);
}

/* Recommended Section */
.checkout-recommended-section {
    border-top: 2px solid #222;
    padding-top: 60px;
    margin-top: 40px;
}

.recommended-title {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
}

.recommended-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.recommended-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .recommended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rec-product-card {
    background: #111;
    border: 2px solid #222;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.3s ease;
}

.rec-product-card:hover {
    border-color: var(--accent-color);
}

.rec-product-image-wrapper {
    height: 180px;
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-product-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.rec-product-details {
    width: 100%;
}

.rec-product-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.rec-product-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.rec-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.rec-add-btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

/* Province and Select input styling */
.form-group select {
    background-color: #000;
    border: 2px solid #333;
    color: #fff;
    padding: 15px;
    font-size: 1rem;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none; /* remove default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.form-group select:focus {
    border-color: var(--accent-color);
}

.col-4 {
    flex: 0 0 calc(33.333% - 13.33px);
}

/* Shipping Methods styles */
.shipping-methods-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000;
    border: 2px solid #222;
    padding: 15px 20px;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.shipping-option:hover {
    border-color: #444;
}

.shipping-option.active {
    border-color: var(--accent-color);
    background: #111;
}

.shipping-option input[type="radio"] {
    margin-right: 15px;
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
}

.shipping-option-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.shipping-option-name {
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.shipping-option-time {
    font-size: 0.8rem;
    color: #888;
    margin-top: 3px;
}

.shipping-option-price {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Billing Toggle styles */
.billing-toggle-wrapper {
    margin: 30px 0 10px;
}

.billing-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.billing-checkbox-label input[type="checkbox"] {
    accent-color: var(--accent-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Collapsible Billing Address */
.billing-fields-collapse {
    transition: all 0.3s ease;
    border-top: 1px dashed #222;
    margin-top: 20px;
}

/* Payment tabs styling */
.payment-tabs-wrapper {
    background: #000;
    border: 2px solid #222;
    padding: 20px;
    margin-bottom: 30px;
}

.payment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 2px solid #222;
    padding-bottom: 15px;
}

.payment-tab-btn {
    flex: 1;
    background: #111;
    border: 2px solid #222;
    color: #888;
    padding: 12px;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.payment-tab-btn:hover {
    color: #fff;
    border-color: #444;
}

.payment-tab-btn.active {
    background: var(--accent-color);
    color: #000;
    border-color: var(--accent-color);
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
}

.payment-help-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
}

.paypal-info-box {
    background: #111;
    border-left: 4px solid #0070ba;
    padding: 15px;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
}

/* ==========================================================================
   CHECKOUT RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 767px) {
    .checkout-main {
        padding: 100px 0 60px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-row .col-6,
    .form-row .col-4 {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .checkout-form, .checkout-summary-box {
        padding: 20px;
    }
    
    .checkout-section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .payment-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-tab-btn {
        width: 100%;
    }
    
    .checkout-item {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
    }
    
    .checkout-item-img {
        width: 60px;
        height: 60px;
        padding: 2px;
    }
    
    .checkout-item-title {
        font-size: 0.95rem;
    }
    
    .checkout-item-price {
        font-size: 1rem;
        margin-left: auto;
    }
    
    .checkout-item-remove {
        margin-left: 10px;
        position: static;
    }
    
    .checkout-success-container {
        padding: 40px 20px;
    }
    
    .success-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE STYLING
   ========================================================================== */
.product-detail-main {
    padding: 140px 0 80px;
    background: #020202;
    color: #fff;
    min-height: 100vh;
}

.product-back-link {
    margin-bottom: 40px;
}

.product-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #888;
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.product-back-link a:hover {
    color: var(--accent-color);
}

.product-back-link a svg {
    transition: transform 0.2s;
}

.product-back-link a:hover svg {
    transform: translateX(-5px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
}

/* Image section */
.product-detail-image-section {
    position: static;
}

@media (min-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
    }
    .product-detail-image-section {
        position: sticky;
        top: 120px;
    }
}

.product-main-image-wrapper {
    background: #090909;
    border: 2px solid #222;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.product-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.5s ease;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.product-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Product Details Thumbnail Overlay (hidden by default, reveals on hover) */
.product-thumbnails-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.65);
    padding: 6px 12px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.product-main-image-wrapper:hover .product-thumbnails-overlay {
    opacity: 1;
    pointer-events: auto;
}

.thumb-overlay-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

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

.thumb-overlay-item:hover {
    border-color: rgba(251, 188, 26, 0.5);
}

.thumb-overlay-item.active {
    border-color: var(--accent-color);
}

/* Info section */
.product-detail-info-section {
    display: flex;
    flex-direction: column;
}

.product-detail-tag {
    display: inline-block;
    background: #111;
    border: 1px solid #222;
    color: var(--accent-color);
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    align-self: flex-start;
}

.product-detail-name {
    font-size: 3rem;
    line-height: 1.1;
    margin: 0 0 15px;
}

.product-detail-price {
    font-size: 2rem;
    font-family: 'Anton', sans-serif;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin: 0 0 25px;
}

.product-detail-divider {
    border: 0;
    border-top: 2px solid #222;
    margin: 0 0 25px;
}

.product-detail-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

/* Specs */
.product-specs-box {
    background: #090909;
    border: 1px solid #222;
    padding: 25px;
    margin-bottom: 35px;
}

.specs-title {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #555;
    margin-bottom: 15px;
    font-weight: bold;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.specs-list li {
    font-size: 0.95rem;
    color: #aaa;
    border-bottom: 1px dashed #222;
    padding-bottom: 8px;
}

.specs-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.specs-list strong {
    color: #fff;
    margin-right: 5px;
}

/* Actions */
.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .product-detail-actions {
        flex-direction: row;
    }
    .product-detail-actions .btn {
        flex: 1;
    }
}

.product-detail-actions .btn {
    padding: 18px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Guarantees */
.product-guarantees {
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #222;
    padding-top: 25px;
}

@media (min-width: 576px) {
    .product-guarantees {
        flex-direction: row;
        gap: 30px;
    }
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.9rem;
}

.guarantee-icon {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .product-detail-info-section .product-meta-header {
        order: 1;
    }
    .product-detail-info-section .product-detail-name {
        order: 2;
    }
    .product-detail-info-section .product-detail-price {
        order: 3;
        margin-bottom: 20px;
    }
    .product-detail-info-section .product-detail-actions {
        order: 4;
        margin-bottom: 25px;
    }
    .product-detail-info-section .product-detail-divider {
        order: 5;
        margin-bottom: 20px;
    }
    .product-detail-info-section .product-detail-description {
        order: 6;
        margin-bottom: 25px;
    }
    .product-detail-info-section .product-specs-box {
        order: 7;
        margin-bottom: 25px;
    }
    .product-detail-info-section .product-guarantees {
        order: 8;
    }
}

/* Related section */
.related-products-section {
    border-top: 2px solid #222;
    padding-top: 60px;
    margin-top: 60px;
}

.related-title {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 0 25px;
    scrollbar-width: none;
}

.related-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0;
        gap: 30px;
    }
}

.related-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-card {
    background: #090909;
    border: 2px solid #222;
    transition: border-color 0.3s, transform 0.3s;
    flex: 0 0 280px;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .related-card {
        flex: unset;
    }
}

.related-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.related-image-wrapper {
    padding: 20px;
    display: flex;
    justify-content: center;
    background: #050505;
    border-bottom: 1px solid #222;
}

.related-image {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.3s;
}

.related-card:hover .related-image {
    transform: scale(1.05);
}

.related-details {
    padding: 20px;
}

.related-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.related-name {
    font-size: 1.3rem;
    margin: 0 0 10px;
}

.related-price {
    font-size: 1.1rem;
    font-family: 'Anton', sans-serif;
    color: var(--accent-color);
    margin: 0;
}

/* Link reset wrapper in shop */
.product-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-name a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.product-name a:hover {
    color: var(--accent-color);
}

/* Product Details Thumbnail Gallery */
.product-thumbnails-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 15px;
    width: 100%;
}

.thumb-item {
    aspect-ratio: 1;
    background-color: var(--bg-light-dark);
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.thumb-item:hover {
    border-color: rgba(251, 188, 26, 0.4);
}

.thumb-item:hover img {
    transform: scale(1.05);
}

.thumb-item.active {
    border-color: var(--accent-color);
}

/* Make overlay thumbnails always visible on mobile/tablets since there is no hover state */
@media (max-width: 768px) {
    .product-thumbnails-overlay {
        opacity: 1 !important;
        pointer-events: auto !important;
        bottom: 10px !important;
    }
    .thumb-overlay-item {
        width: 28px !important;
        height: 28px !important;
    }
}

/* ==========================================================================
   SHOP SEARCH AND FILTER CONTROLS
   ========================================================================== */
.shop-controls-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.shop-controls-bar .search-wrapper {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.shop-controls-bar .filter-wrapper {
    width: 220px;
}

@media (max-width: 768px) {
    .shop-controls-bar .filter-wrapper {
        width: 100%;
    }
}

.shop-controls-bar .shop-input {
    width: 100%;
    background-color: #000;
    border: 2px solid #333;
    color: #fff;
    padding: 15px 15px 15px 45px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-controls-bar .shop-input:focus {
    border-color: var(--accent-color);
}

.shop-controls-bar .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.shop-controls-bar .shop-select {
    width: 100%;
    background-color: #000;
    border: 2px solid #333;
    color: #fff;
    padding: 15px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    border-radius: 0;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.shop-controls-bar .shop-select:focus {
    border-color: var(--accent-color);
}

.shop-no-results {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    padding: 60px 0;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

/* Ensure product image containers are relative for absolute badges */
.product-image-wrapper,
.expositor-item,
.related-image-wrapper {
    position: relative;
}

/* Attention-grabbing "NEW" badge */
.new-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: #000;
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 6px 14px;
    border: 2px solid #000;
    letter-spacing: 1px;
    z-index: 5;
    box-shadow: 3px 3px 0px #000;
    pointer-events: none; /* let click events go through to the product link */
    text-transform: uppercase;
    animation: badge-pulse 2s infinite ease-in-out;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 5px 5px 0px #000;
    }
}

/* ==========================================================================
   PRODUCT SHARE BUTTON & POPUP MENU
   ========================================================================== */
.product-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.share-container {
    position: relative;
    display: inline-block;
}

.product-share-icon-btn {
    background-color: transparent;
    border: 2px solid #333;
    color: #fff;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
    padding: 0;
}

.product-share-icon-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 2px 2px 0px #000;
}

.share-dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: #000;
    border: 2px solid #333;
    width: 200px;
    z-index: 999;
    box-shadow: 5px 5px 0px #000;
    display: none;
    flex-direction: column;
    padding: 5px 0;
}

.share-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    color: #fff;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.share-dropdown-item:hover {
    background-color: var(--accent-color);
    color: #000;
}

.share-dropdown-item svg {
    margin-right: 12px;
    flex-shrink: 0;
    stroke: currentColor;
}

.share-dropdown-item:hover svg {
    stroke: #000;
}

/* Share Toast Notification */
.share-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background-color: #000;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 15px 30px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
    font-size: 1rem;
    z-index: 10000;
    box-shadow: 5px 5px 0px #000;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.share-toast.show {
    transform: translateX(-50%) translateY(0);
}



