/*
Theme Name: Stribaloff Theme
Theme URI: https://stribaloff.com
Author: Antigravity
Description: Stribaloff Custom Theme with WooCommerce support
Version: 1.0
Text Domain: stribaloff
*/
:root {
    --text-color: #ffffff;
    --background-dark: #000000;
    --accent-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-dark);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

/* Top Bar */
.top-bar {
    background-color: #ffffff;
    /* White for contrast */
    color: #000;
    text-align: center;
    padding: 12px 0;
    /* Increased padding */
    font-size: 11px;
    /* Increased font size */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: fixed;
    /* Fix top bar */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    /* Increased size */
    position: fixed;
    /* Fixed to stay on top */
    top: 38px;
    /* Adjusted to match new top bar height (approx 13px font + 24px padding = ~37-40px) */
    /* Below top bar */
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    /* Glassmorphism */
    background: #000000;
    /* Solid Black */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header:hover {
    background: rgba(0, 0, 0, 0.3);
    /* Darken on hover */
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-5px);
    /* Visual balance */
}

.logo {
    font-size: 28px;
    /* Adjusted size */
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    /* More spacing */
    margin-bottom: 10px;
    /* Reduced margin */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Tighter space between image and text */
}

.logo span {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;

    /* Silver Metallic Effect */
    background: linear-gradient(to bottom,
            #cfc7f8 0%,
            #ffffff 20%,
            #6c6c6c 40%,
            #abaaaa 60%,
            #dfdfdf 80%,
            #cfc7f8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    /* Make text transparent so background shows through */
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    /* Shine animation */
    /* text-shadow: none; Use filter drop-shadow for clipped text if needed, but clean is better */
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.main-nav li {
    position: relative;
    /* Added for dropdown positioning */
}

/* Base link style update to match previous */
.main-nav>ul>li>a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
    /* Increased padding */
    display: block;
}

.main-nav>ul>li:hover>a {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.main-nav>ul>li>a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: white;
    transition: width 0.3s ease;
}

.main-nav>ul>li:hover>a::after {
    width: 100%;
}

.main-nav i {
    font-size: 9px;
    margin-left: 5px;
    opacity: 0.7;
}

/* Dropdown Container */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    /* Start slightly down */
    background: rgba(0, 0, 0, 0.85);
    /* Dark semi-transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    /* Override parent flex gap */
    z-index: 1002;
    border-radius: 4px;
}

/* Show Dropdown on Hover */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */
.dropdown li {
    width: 100%;
}

.dropdown li a {
    display: block;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    /* Align text left */
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 30px;
    /* Slide effect */
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-left a,
.header-right a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.header-left a:hover,
.header-right a:hover {
    transform: scale(1.1);
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s;
    position: relative;
    /* For dropdown */
}

.lang-selector:hover {
    opacity: 1;
}

.lang-selector i {
    font-size: 10px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    /* Ensure video doesn't spill out */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    /* Behind content, below overlay */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* On top of video */
    background: rgba(0, 0, 0, 0.4);
    /* Slightly darker for better text readability over video */
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    /* On top of overlay */
    padding-top: 120px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 80px;
    /* Even larger and more imposing */
    font-weight: 900;
    margin-bottom: 40px;
    letter-spacing: 5px;
    /* Cinematic spacing */
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    /* Optional: Subtle gradient text or keeps white for max contrast */
    color: #ffffff;
    /* Static white */
    transition: all 0.3s ease;
}

.hero-content h1:hover {
    animation: none;
    /* Stop the color cycle */
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
    /* Subtle pop */
}



.cta-button {
    display: inline-block;
    padding: 18px 45px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;

    /* Glassmorphism & Gradient Background */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    /* Left of WhatsApp button */
    width: 50px;
    height: 50px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #10b981;
    border-color: #10b981;
    color: #000;
    transform: translateY(-5px);
}

/* Support Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Slightly more transparent */
    backdrop-filter: blur(15px);
    /* Strong blur */
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.support-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 600px;
    background: rgba(5, 5, 5, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 50px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 0 80px rgba(16, 185, 129, 0.15);
    overflow: hidden;
    /* For noise */
}

/* Modal Noise */
.modal-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.support-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-modal:hover {
    color: #10b981;
    transform: rotate(90deg);
}

.support-modal h2 {
    position: relative;
    /* For glitch */
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
    display: inline-block;
}

/* Glitch for Modal Title */
.support-modal h2.glitch-title::before,
.support-modal h2.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
}

.support-modal h2.glitch-title::before {
    left: 2px;
    text-shadow: -1px 0 #10b981;
    /* Green glitch */
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 4s infinite linear alternate-reverse;
}

.support-modal h2.glitch-title::after {
    left: -2px;
    text-shadow: -1px 0 #fff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 4s infinite linear alternate-reverse;
}

.support-modal .modal-body {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.support-modal .modal-body p {
    margin-bottom: 20px;
}

.support-modal .modal-body strong {
    color: #fff;
    font-weight: 700;
    color: #10b981;
    /* Highlight strong text */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .main-header {
        padding: 25px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .logo {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 12px;
    }

    .logo {
        font-size: 22px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #050505;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    /* Ensure it sits on top */
}

.newsletter-card {
    background: linear-gradient(145deg, #0a1128, #050815);
    border: 1px solid rgba(30, 60, 255, 0.3);
    box-shadow: 0 0 40px rgba(10, 30, 100, 0.4);
    border-radius: 30px;
    padding: 60px 80px;
    width: 100%;
    max-width: 600px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 60, 255, 0.2);
    color: #3b82f6;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border: 1px solid rgba(30, 60, 255, 0.3);
    text-transform: uppercase;
}

.newsletter-card h2 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-card h2 i {
    color: #3b82f6;
    font-size: 0.8em;
}

.input-group {
    margin-bottom: 30px;
}

.input-group label {
    display: block;
    color: #3b82f6;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    background: #000;
    width: fit-content;
    padding: 2px 5px;
    text-transform: uppercase;
}

.input-group input {
    width: 100%;
    background: rgba(30, 60, 255, 0.1);
    border: 1px solid #3b82f6;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    outline: none;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
}

.newsletter-btn {
    width: 100%;
    background: #eef2ff;
    color: #000;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    /* Static sizing, no transitions */
}

.newsletter-footer {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .newsletter-card {
        padding: 40px 30px;
    }

    .newsletter-card h2 {
        font-size: 32px;
    }
}

/* Utility */
.highlight-green {
    color: #10b981;
    /* Green accent color */
    font-weight: 700;
}

/* New Drop Section */
.new-drop-section {
    padding: 100px 50px;
    background: #050505;
    position: relative;
    overflow: hidden;
}

/* Reuse noise overlay if available, otherwise ensure it covers this section */
.new-drop-section .noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.new-drop-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.new-drop-header h2 {
    font-size: 70px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Glitch Effect - Reusing logic or defining specific */
.new-drop-header h2::before,
.new-drop-header h2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
}

.new-drop-header h2::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.new-drop-header h2::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    15% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 50px, 0);
    }

    100% {
        clip: rect(10px, 9999px, 40px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(50px, 9999px, 10px, 0);
    }

    10% {
        clip: rect(20px, 9999px, 70px, 0);
    }

    15% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(60px, 9999px, 70px, 0);
    }
}

.new-drop-header p {
    color: #10b981;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.new-drop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.drop-card {
    position: relative;
    transition: transform 0.3s ease;
}

.drop-card:hover {
    transform: translateY(-10px);
}

.drop-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.drop-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), filter 0.5s ease;
    filter: grayscale(100%) contrast(1.2);
}

.drop-card:hover .drop-image {
    transform: scale(1.1);
    filter: grayscale(0%) contrast(1);
}

/* Quick Add Overlay */
.quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drop-card:hover .quick-add {
    transform: translateY(0);
}

.quick-add span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.quick-add i {
    color: #10b981;
}

.drop-info {
    text-align: left;
    padding: 0 10px;
}

.drop-title {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.drop-card:hover .drop-title {
    color: #10b981;
}

.drop-price {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.drop-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    color: #10b981;
    padding: 5px 15px;
    border: 1px solid #10b981;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 2px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

/* View All Button Wrapper */
.view-all-wrapper {
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.btn-view-all {
    display: inline-block;
    padding: 15px 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-view-all:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Marquee Section */
.marquee-section {
    background: #111;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-section .track {
    position: absolute;
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite;
}

.marquee-section .content {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    color: transparent;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 100px 50px;
    background: #000;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 600px;
    background: linear-gradient(45deg, #1a1a1a, #0d0d0d);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: 'STRIBALOFF';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.text-link:hover {
    color: #10b981;
    border-color: #10b981;
    padding-bottom: 8px;
}

/* Categories Section */
.categories-section {
    padding: 100px 50px;
    background: #050505;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.outline-text {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    height: 600px;
}

.category-card {
    position: relative;
    background: #111;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
    cursor: pointer;
}

.category-card.large {
    grid-column: span 1;
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, #000 100%);
    opacity: 0.8;
    transition: opacity 0.5s;
}

.cat-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.cat-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.5s;
}

.cat-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
    display: inline-block;
}

.category-card:hover .cat-overlay {
    opacity: 0.4;
}

.category-card:hover .cat-content h3 {
    transform: translateY(0);
}

.category-card:hover .cat-link {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.main-footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 50px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 100px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0 30px;
    max-width: 300px;
}

.footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #10b981;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-column h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #fff;
}

.link-column a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.link-column a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 11px;
    letter-spacing: 1px;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-placeholder {
        height: 400px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .category-card {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   INSANE MODE CSS OVERRIDES
   ========================================= */

/* --- MARQUEE TILTED --- */
.marquee-container-tilted {
    background: #000;
    padding: 20px 0;
    margin: 50px 0;
    transform: rotate(-2deg) scale(1.05);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.marquee-section {
    background: #000;
    /* Keep black for high contrast */
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
}

.marquee-section .content {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-text-stroke: 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    /* Explicitly ensure strong font */
}

/* --- ABOUT SECTION (DECONSTRUCTED) --- */
.about-section {
    position: relative;
    padding: 150px 50px;
    background-color: #050505;
    overflow: hidden;
}

/* Noise Overlay (Simulated) */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* Keep tight for overlay effect */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text-content {
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glitch-text {
    font-size: 100px;
    font-weight: 900;
    line-height: 0.9;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    position: relative;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitch-anim-1 2.5s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    transform: translate(-2px, 2px);
}

.glitch-text::after {
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    transform: translate(2px, -2px);
}

@keyframes glitch-anim-1 {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}

@keyframes glitch-anim-2 {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(2px, -2px)
    }

    40% {
        transform: translate(2px, 2px)
    }

    60% {
        transform: translate(-2px, -2px)
    }

    80% {
        transform: translate(-2px, 2px)
    }

    100% {
        transform: translate(0)
    }
}

.about-description h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #fff;
}

.about-description p {
    font-family: 'Courier New', monospace;
    /* Tech feel */
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-brutalist {
    display: inline-block;
    padding: 20px 40px;
    background: #fff;
    color: #000;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.btn-brutalist:hover {
    background: #000;
    color: #fff;
    box-shadow: 5px 5px 0px #fff;
}

.about-visual {
    position: relative;
}

.visual-placeholder {
    width: 100%;
    height: 700px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* In a real scenario, use an image background */
    background: radial-gradient(circle, #222, #000);
}

.visual-placeholder span {
    color: rgba(255, 255, 255, 0.2);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    letter-spacing: 5px;
}

/* --- CATEGORIES (EXPANDING CARDS) --- */
.categories-section {
    padding: 0;
    background: #000;
    overflow: hidden;
}

.categories-container {
    display: flex;
    height: 800px;
    /* Tall section */
    width: 100%;
}

.cat-card {
    flex: 1;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    /* Placeholder background color if image fails */
    background-color: #111;
    background-size: cover;
    background-position: center;
}

.cat-card:last-child {
    border-right: none;
}

.cat-card:hover {
    flex: 2;
    /* Expand on hover */
}

/* Dark Overlay */
.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.4s;
}

.cat-card:hover::before {
    background: rgba(0, 0, 0, 0.2);
    /* Lighten on hover */
}

.cat-info {
    position: absolute;
    bottom: 50px;
    left: 40px;
    z-index: 2;
    transform-origin: left bottom;
    transition: transform 0.4s;
}

.cat-info h3 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

.cat-explore {
    display: inline-block;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s 0.1s;
    /* Delay */
}

.cat-card:hover .cat-explore {
    opacity: 1;
    transform: translateY(0);
    border-color: #fff;
}

/* --- NEWSLETTER (MONOLITH) --- */
.newsletter-section {
    background: #fff;
    /* Stark contrast */
    color: #000;
    padding: 100px 50px;
    border-top: 10px solid #000;
    /* Chunky border */
}

.newsletter-monolith {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mono-title {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 50px;
    line-height: 1;
}

.mono-form {
    display: flex;
    border-bottom: 4px solid #000;
    padding-bottom: 10px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mono-form input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    outline: none;
    text-transform: uppercase;
}

.mono-form input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.mono-form button {
    background: transparent;
    border: none;
    font-size: 40px;
    cursor: pointer;
    color: #000;
    transition: transform 0.3s;
}

.mono-form button:hover {
    transform: translateX(10px);
}

.mono-scroller span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* --- FOOTER (BRUTALIST) --- */
.main-footer {
    background: #000;
    color: #fff;
    padding: 80px 50px;
    border-top: 1px solid #333;
}

.footer-huge-logo {
    font-size: 18vw;
    /* Massive */
    font-weight: 900;
    text-align: center;
    line-height: 0.8;
    letter-spacing: -5px;
    color: #111;
    /* Subtle dark grey */
    margin-bottom: 60px;
    user-select: none;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #555;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #aaa;
    text-decoration: line-through;
    /* Edgy hover */
}

.newsletter-mini p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1024px) {
    .glitch-text {
        font-size: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .categories-container {
        flex-direction: column;
        height: 1200px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text-content {
        padding-right: 0;
        padding-bottom: 50px;
    }

    .mono-title {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .glitch-text {
        font-size: 40px;
    }

    .footer-huge-logo {
        margin-bottom: 30px;
        letter-spacing: -2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mono-form input {
        font-size: 20px;
    }

    .marquee-container-tilted {
        transform: rotate(-2deg) scale(1.02);
    }

    /* Less scale on mobile */
    .about-section {
        padding: 100px 20px;
    }

    .categories-container {
        height: auto;
    }

    .cat-card {
        height: 400px;
    }
}

/* =========================================
   DOUBLE-CROSSED MARQUEE
   ========================================= */

.marquee-chaos-wrapper {
    position: relative;
    height: 300px;
    /* Space for crossing */
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    z-index: 5;
}

.marquee-band {
    position: absolute;
    width: 120%;
    /* Wider to cover rotation edges */
    padding: 15px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    left: -10%;
    /* Center the extra width */
}

/* Band 1: The Heavy Base */
.band-1 {
    background: #fff;
    color: #000;
    transform: rotate(-3deg) translateZ(0);
    z-index: 10;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}

.band-1 .content {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #000;
    -webkit-text-stroke: 0;
}

/* Band 2: The Ghost Overlay */
.band-2 {
    background: #000;
    color: #fff;
    transform: rotate(2deg) translateZ(0);
    z-index: 11;
    /* On top */
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    mix-blend-mode: normal;
    /* Or 'difference' for trippy effect */
}

.band-2 .content {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 4px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

/* Animation directions */
.track {
    white-space: nowrap;
    will-change: transform;
    animation: marquee 20s linear infinite;
    display: flex;
}

.reverse-track {
    animation: marquee-reverse 25s linear infinite;
    display: flex;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .marquee-chaos-wrapper {
        height: 200px;
    }

    .band-1 .content {
        font-size: 24px;
    }

    .band-2 .content {
        font-size: 20px;
    }
}

/* Newsletter Scroller Animation */
.mono-scroller {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid #eee;
    padding-top: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.mono-scroller .track {
    display: inline-block;
    animation: marquee 10s linear infinite;
}

.mono-scroller span {
    display: inline-block;
    padding-right: 50px;
}

/* Footer Logo Scroller */
.footer-huge-logo-scroller {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.footer-huge-logo-scroller .track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.footer-huge-logo-scroller span {
    font-size: 18vw;
    /* Massive */
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -5px;
    color: #111;
    display: inline-block;
    margin-right: 50px;
    /* Space between words */
    user-select: none;
    transition: color 0.3s;
}

.footer-huge-logo-scroller:hover span {
    color: #fff;
    /* Interactive fun */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Highlight for NEW DROP */
.nav-highlight {
    color: #ff0000;
    /* Red alert */
    font-weight: 800;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        text-shadow: 0 0 5px red;
    }

    50% {
        opacity: 0.7;
        text-shadow: 0 0 15px red;
    }

    100% {
        opacity: 1;
        text-shadow: 0 0 5px red;
    }
}

/*SHOP PAGE STYLES */

/* Shop Hero */
.shop-hero {
    padding-top: 250px;
    padding-bottom: 50px;
    background: #000;
    text-align: center;
    border-bottom: 1px solid #333;
}

.shop-glitch-title {
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    position: relative;
    display: inline-block;
    letter-spacing: -2px;
}

/* Shop Layout */
.shop-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    background: #050505;
}

/* Filters */
.shop-filters {
    width: 250px;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-filters h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.shop-filters ul {
    list-style: none;
    padding: 0;
}

.shop-filters li {
    margin-bottom: 15px;
}

.shop-filters a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s;
    text-transform: uppercase;
}

.shop-filters a:hover,
.shop-filters a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Product Grid */
.product-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-left: 40px;
}

.product-card {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #fff;
}

.prod-img {
    height: 400px;
    background: #111;
    background-image: linear-gradient(45deg, #111 25%, #1a1a1a 25%, #1a1a1a 50%, #111 50%, #111 75%, #1a1a1a 75%, #1a1a1a 100%);
    background-size: 20px 20px;
    /* Placeholder pattern */
}

.prod-info {
    padding: 20px;
}

.prod-info h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.prod-info p {
    color: #888;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.add-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
    border: none;
    font-size: 24px;
    font-weight: 900;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.product-card:hover .add-btn {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-container {
        flex-direction: column;
    }

    .shop-filters {
        width: 100%;
        border-right: none;
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    .product-grid {
        padding-left: 0;
        grid-template-columns: 1fr;
    }
}

/* Filter Subtitles */
.filter-subtitle {
    color: #444;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Currency Selector */
.currency-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.currency-links a {
    color: #666;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.currency-links a:hover,
.currency-links a.active {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
