@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-accent: #A5A5A5; /* Lighter Polished Steel */
    --accent-silver: linear-gradient(135deg, #E0E0E0 0%, #8E8E8E 50%, #424242 100%); /* Chrome shine */
    --brand-green: #2d5a27; /* Forest Brand Green */
    --brand-red: #a82020; /* Power Brand Red */
    --bg-black: #050505; 
    --bg-metallic: #c0c0c0; /* Polished Silver base */
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-card: rgba(10, 10, 10, 0.75); /* Darker cards to pop against silver */
    --text-white: #f5f5f5;
    --text-grey: #888888;
    --text-dark: #121212;
    --border-silver: rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}



h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.text-red {
    color: var(--brand-red);
}

.text-green {
    color: var(--brand-green);
}

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

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

ul {
    list-style: none;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 5%;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 70px; /* Shorter logo when scrolling */
}

nav ul {
    display: flex;
    gap: 30px; /* Reduced from 40px to fit 4 items better */
}

nav ul li a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
}

nav ul li a:hover {
    color: var(--brand-red);
}

.cart-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 8px;
    user-select: none; /* Prevent text selection when clicking fast */
    -webkit-user-select: none;
}

.cart-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-accent);
}

.cart-count {
    background: var(--brand-red); /* Changed to Red for better visibility */
    color: #fff;
    padding: 2px 8px;
    border-radius: 50%;
    font-size: 0.8rem;
    pointer-events: none; /* Let clicks pass through to parent */
}

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

.dow-burger {
    display: none; /* Hidden on desktop */
}



/* Hero Section */
.hero {
    height: 75vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* Mobile adjustments consolidated at the end of file */



.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 default */
    min-height: 100%;
    min-width: 177.77vh; /* (16/9) of 100vh */
    transform: translate(-50%, -50%);
}

/* Mobile iframe adjustments consolidated at bottom */



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

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8), #000);
    z-index: 2;
}

@media (max-width: 768px) {
    .hero::after {
        height: 40px; /* Smaller gradient on mobile to show more video */
    }
}


.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 8px 18px;
    background: var(--accent-silver);
    color: var(--bg-black);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px; /* Subtle rounding for better 'adjustment' */
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255,255,255,0.4);
    transform: rotate(30deg);
    transition: none;
}

.btn-primary:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

.btn-primary:hover {
    background: #000;
    color: #fff;
    border-color: var(--primary-accent);
    transform: translateY(-2px);
}


/* Catalog Title Section */
.catalog-header {
    background: linear-gradient(to bottom, var(--bg-black), #959da1); /* Fade from black to silver */
    color: var(--text-white);
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
}

.catalog-header h2 {
    font-size: 3rem;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    text-transform: uppercase;
}

.catalog-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-silver);
}

/* Product Grid */
.catalog-grid {
    background: var(--bg-metallic);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 5% 100px;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-silver);
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--primary-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.product-img {
    height: 220px; /* Further reduced height for compactness */
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
    text-align: center;
    color: var(--text-white);
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

.product-price {
    color: var(--primary-accent);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    transition: var(--transition);
}

/* Hide when UI panels are open */
#product-modal.open ~ .whatsapp-float,
#cart-drawer.open ~ .whatsapp-float,
body:has(#product-modal.open) .whatsapp-float,
body:has(#cart-drawer.open) .whatsapp-float {
    display: none !important;
}


.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--bg-black);
    color: var(--text-grey);
    padding: 80px 5% 40px;
    text-align: center;
    border-top: 1px solid var(--border-silver);
}

.footer-logo {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--text-grey);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-accent);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #555;
}

.admin-login {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #444; /* Discrete by default */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.admin-login:hover {
    color: var(--primary-accent);
}

.admin-login i {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    nav ul {
        display: none;
    }
}

@media (max-width: 500px) {
    }
}

/* Clothing Carousel */
.clothing-section {
    padding: 20px 5% 50px;
    background-color: var(--bg-black);
    text-align: center;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--primary-accent);
}

.section-header p {
    color: var(--text-grey);
    font-size: 0.8rem;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 500ms ease-in-out;
}

.carousel-slide {
    flex: 0 0 300px; /* Fixed width for consistent marquee calculation */
    width: 300px;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 400px; /* Taller images for better impact */
    object-fit: cover;
    border: 1px solid var(--border-silver);
    transition: var(--transition);
    filter: grayscale(20%); /* Sophisticated look */
}

.carousel-slide:hover img {
    border-color: var(--primary-accent);
    filter: grayscale(0%);
    transform: scale(1.02);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-accent);
    border: 1px solid var(--primary-accent);
    white-space: nowrap;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.8);
    border: 1px solid var(--primary-accent);
    color: var(--primary-accent);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.carousel-button:hover {
    background: var(--primary-accent);
    color: var(--bg-black);
}

.carousel-button--left {
    left: 0;
}

.carousel-button--right {
    right: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    gap: 12px;
}

.carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.current-slide {
    background: var(--primary-accent);
}

/* Infinite Marquee Mode */
.marquee-mode {
    display: flex;
    animation: marquee 25s linear infinite;
    width: fit-content;
}

.clothing-section:hover .marquee-mode {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 4 - 20px * 4)); /* Move the first 4 items + gaps */
    }
}

/* Hide controls in marquee mode to keep it clean */
/*Controls hidden by default if marquee-mode is on (logic moved to JS or specific class) */
.clothing-section.marquee-active .carousel-button,
.clothing-section.marquee-active .carousel-nav {
    display: none !important;
}

.is-hidden {
    opacity: 0.1;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .carousel-slide {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet */
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 100%; /* 1 item on mobile */
    }
}

/* Cart Drawer Styles */
#cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    display: none;
    backdrop-filter: blur(5px);
}

#cart-drawer {
    position: fixed;
    top: 0;
    bottom: 0; /* Use bottom instead of height for a more solid full-screen effect */
    right: -100%; /* Default fully hidden for mobile safety */
    width: 400px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(25px);
    z-index: 9999; /* Absolute priority over regular content and footer */

    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    border-left: 1px solid var(--border-silver);
}

@media (min-width: 769px) {
    #cart-drawer {
        right: -450px;
    }
}



#cart-drawer.open {
    right: 0;
}

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

.cart-drawer-header h2 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin: 0;
}

#close-cart {
    background: none;
    border: none;
    color: var(--text-grey);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0; /* Hidden by default to avoid ghost icons */
    pointer-events: none;
}

#cart-drawer.open #close-cart {
    opacity: 1;
    pointer-events: auto;
}

#close-cart:hover {
    color: var(--brand-red);
}


#cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid var(--border-silver);
}

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

.cart-item-info h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 0.9rem;
    color: var(--primary-accent);
}

.remove-item {
    background: none;
    border: none;
    color: #444;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--brand-red);
}

.cart-drawer-footer {
    padding: 30px;
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-shrink: 0; /* Important for mobile */
}


.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

#drawer-total-price {
    color: var(--brand-green);
    font-weight: 600;
}

.empty-msg {
    text-align: center;
    color: var(--text-grey);
    margin-top: 50px;
    font-style: italic;
}

@media (max-width: 500px) {
    #cart-drawer {
        width: 100% !important;
        right: -100% !important;
        padding-bottom: env(safe-area-inset-bottom, 80px); /* Massive safety margin for browser bars */
    }
    #cart-drawer.open {
        right: 0 !important;
    }
    .cart-drawer-header {
        padding: 10px 15px !important;
    }
    .cart-drawer-footer {
        padding: 10px 15px 100px !important; /* Extra bottom space */
        background: rgba(10, 10, 10, 0.98);
        flex-shrink: 0;
    }
    .cart-total {
        margin-bottom: 8px !important;
        font-size: 0.95rem;
    }
    #checkout-btn {
        padding: 12px !important;
        font-size: 0.85rem !important;
    }
}

    .cart-total {
        margin-bottom: 12px !important;
        font-size: 1rem;
    }
    #checkout-btn {
        padding: 15px !important;
        font-size: 0.9rem !important;
    }
}



/* Product Modal (Quick View) */
#product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 800px;
    background: #0a0a0a; /* Solid background to prevent see-through leaks */
    backdrop-filter: blur(40px);
    z-index: 9999; /* Max priority */

    display: none; /* Correctly hidden */
    opacity: 0;
    pointer-events: none; /* Ignore clicks when closed */
    transition: all 0.4s ease;
    border: 1px solid var(--border-silver);
    padding: 40px;
    gap: 30px;
}

#modal-add-btn, .modal-info button.btn-primary {
    display: none !important;
}


#product-modal.open {
    display: flex; /* Only visible when open */
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-grey);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-img {
    flex: 1;
}

.modal-img img {
    width: 100%;
    height: auto;
    border: 1px solid var(--border-silver);
}

.modal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-info .price {
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 20px;
}

.modal-info p {
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    #product-modal {
        flex-direction: column;
        width: 95%;
        padding: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
}

/* Modal Overlay Base */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Reduced opacity */
    backdrop-filter: blur(8px); /* Reduced blur */
    z-index: 5000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.modal-overlay.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}

.modal-content.glass-form {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid var(--border-silver);
    padding: 50px;
    width: 90%;
    max-width: 500px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.modal-header {
    margin-bottom: 30px;
    text-align: center;
}

.modal-header h3 {
    font-size: 1.8rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-grey);
    font-size: 0.85rem;
}

#contact-form-internal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: var(--text-white);
    border-radius: 2px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    background: rgba(255, 255, 255, 0.05);
}

#btn-send-internal {
    width: 100%;
    margin-top: 10px;
    letter-spacing: 3px;
}
/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100vw;
        position: relative;
    }

    section {
        padding: 60px 20px; /* Reduced padding for mobile */
    }

    /* Mobile Header & Nav */
    header {
        padding: 10px 20px;
        height: 70px;
    }

    header.scrolled {
        height: 60px;
    }

    .logo img {
        height: 75px; /* Slightly smaller for better mobile header ratio */
        width: auto;
    }

    header.scrolled .logo img {
        height: 45px;
    }


    nav ul {
        display: none; /* Hide desktop nav */
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease;
        z-index: 1000;
        border-left: 1px solid var(--border-silver);
    }

    #main-nav.active {
        right: 0;
    }

    #main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    #main-nav ul li a {
        font-size: 1.2rem;
    }

    .dow-burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
        width: 30px;
        margin-left: 5px;
        position: relative;
        background: transparent;
        overflow: hidden; /* Clip everything behind it */
        border: none;
        outline: none;
    }
    
    .dow-burger::before, .dow-burger::after {
        content: none !important; /* Definitively kill ghost icons */
    }




    .dow-burger span {
        width: 100%;
        height: 2px;
        background: var(--text-white);
        transition: 0.3s;
    }

    .dow-burger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--brand-red);
    }

    .dow-burger.active span:nth-child(2) {
        opacity: 0;
    }

    .dow-burger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--brand-red);
    }


    .hero {
        height: 50vh; /* Balanced height for mobile impact */
        padding: 0 !important;
        overflow: hidden;
        background: #000;
        margin-top: 0;
    }

    .video-background iframe {
        width: 100vw;
        height: 56.25vw; /* 16:9 */
        min-width: 100%;
        min-height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(2.2); /* Increased scale to fill vertical gaps on phones */
        border: none;
    }



    /* Fix Hero Overlay on Mobile */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2), rgba(0,0,0,0.8));
        z-index: 1;
    }



    /* Product Grid */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 15px; /* Smaller gap */
    }

    .product-card {
        padding: 12px; /* Denser cards */
    }

    .product-card h3 {
        font-size: 0.8rem; /* Smaller titles to fit */
        margin-bottom: 5px;
    }

    .product-card .product-price {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .product-card .btn-primary {
        padding: 8px 10px;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Apparel Section */
    .carousel-container {
        padding: 0 10px;
    }

    .carousel-track {
        gap: 10px;
    }

    .carousel-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        background: rgba(0,0,0,0.9); /* More solid background */
        border: 2px solid #fff; /* White border for extreme contrast */
        color: #fff;
    }

    .carousel-button--left {
        left: 10px; /* Move inward */
    }

    .carousel-button--right {
        right: 10px; /* Move inward */
    }

    .carousel-slide {
        flex: 0 0 100% !important;
        width: 100% !important;
    }



    /* Footer */
    .footer-content {
        padding: 40px 20px;
    }

    .footer-bottom {
        padding: 20px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .modal-content.glass-form {
        padding: 30px 20px;
    }

    .modal-header h3 {
        font-size: 1.5rem;
    }

    #cart-drawer {
        width: 100%; /* Full screen cart on very small phones */
    }
}

