/*
=================================================================
CSS STYLES
Author: Gemini AI
Description: A clean, modern, single-file CSS implementation.
=================================================================
*/

/* ------------------- */
/* 1. Root & Globals */
/* ------------------- */
:root {
    /* Color Palette */
    --navy-dark: #0a192f;
    --slate: #8892b0;
    --light-slate: #a8b2d1;
    --white: #e6f1ff;
    --cherry-red: #D2042D;
    --cherry-red-hover: #FF0800;

    /* Light Theme Palette */
    --light-bg: #f4f7fd;
    --light-text: #1d2a3b;
    --light-card-bg: #ffffff;
    --light-slate: #546a7b;
    --cherry-red-translucent: rgba(210, 4, 45, 0.15);
    --bg-translucent: rgba(0, 0, 0, 0.85);
    /* Default dark translucent */

    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Transitions & Shadows */
    --transition-speed: 0.3s ease;
    --box-shadow: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

/* Set theme variables based on the class on the <html> element */
.dark-theme {
    --bg-color: #000000;
    /* Pure black background */
    --text-color: #b5b5b5;
    /* Softer light gray text */
    --heading-color: #ffffff;
    /* Pure white headings */
    --card-bg: #0f0f10;
    /* Near-black cards */
    --border-color: #1a1a1a;
    /* Subtle borders */
    --icon-color: var(--cherry-red);
    --partner-invert: 0;
}

.light-theme {
    --bg-color: var(--light-bg);
    --text-color: var(--light-text);
    --heading-color: var(--light-text);
    --card-bg: var(--light-card-bg);
    --border-color: #dbe4f3;
    --icon-color: var(--navy-dark);
    --bg-translucent: rgba(255, 255, 255, 0.9);
    --white: var(--light-text);
    --light-slate: #546a7b;
    --partner-invert: 1;
}

#partner-hero-img {
    filter: invert(var(--partner-invert)) drop-shadow(0 0 30px rgba(210, 4, 45, 0.4)) !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--cherry-red);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--cherry-red-hover);
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 100px 0;
    max-width: 1100px;
    margin: 0 auto;
    width: 90%;
}

/* ----- Parallax Section ----- */
.parallax-section {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    will-change: transform;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.light-theme .parallax-overlay {
    background: rgba(255, 255, 255, 0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
    will-change: transform;
}

/* ------------------- */
/* 2. Utility Classes  */
/* ------------------- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    /* Add padding to prevent touching edges */
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
    border: 1px solid var(--cherry-red);
}

.btn-primary {
    background-color: var(--cherry-red);
    color: var(--navy-dark);
}

.btn-primary:hover {
    background-color: var(--cherry-red-hover);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--cherry-red);
    margin: 10px auto 0;
    border-radius: 2px;
}


/* ------------------- */
/* 3. Header & Nav   */
/* ------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 2rem;
    height: 70px;
    /* Tight navbar height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.85);
    margin: 0;

    transition: top 0.3s;
}

/* Landing Header Transition (Initial state) */
.landing-header {
    background-color: transparent !important;
    box-shadow: none !important;
    transition: background-color 0.5s ease, box-shadow 0.5s ease, padding 0.5s ease !important;
}

/* Landing Header (Scrolled state) */
.landing-header.scrolled {
    background-color: var(--bg-translucent) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2) !important;
}

.dark-theme .landing-header.scrolled {
    background-color: rgba(0, 0, 0, 0.98) !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8) !important;
}

/* Hide links initially on landing */
.landing-header .nav-links li,
.landing-header .nav-actions {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Reveal on scroll */
.landing-header.scrolled .nav-links li,
.landing-header.scrolled .nav-actions,
.landing-header .nav-actions:has(.mobile-nav-toggle.active) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Ensure toggle is always interactive on mobile if it has active class */
@media (max-width: 745px) {
    .landing-header .nav-actions {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
    }

    .landing-header.scrolled .nav-actions,
    .landing-header .nav-actions:has(.mobile-nav-toggle.active) {
        pointer-events: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .landing-header .nav-links li {
        /* Keep links hidden at top even if nav-actions is shown */
        pointer-events: none;
        opacity: 0;
    }

    .landing-header.scrolled .nav-links li,
    .landing-header .nav-links.active li {
        pointer-events: auto !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Keep ONLY Logo visible at top */
.header.landing-header .logo {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

.light-theme .header {
    background-color: rgba(255, 255, 255, 0.85);
}

.dark-theme .header {
    background-color: rgba(0, 0, 0, 0.85);
}

.logo {
    display: block !important;
    height: 5rem !important;
    max-width: 250px !important;
    width: auto !important;
    color: var(--heading-color);
}

.logo img {
    height: 100% !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .logo {
        height: 3rem !important;
        max-width: 180px !important;
    }
    
    .logo img {
        height: 100% !important;
    }
    
    /* Increase header height on mobile to accommodate larger logo */
    .header,
    .landing-header {
        height: auto;
        min-height: 80px;
        padding: 10px 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 2.5rem !important;
        max-width: 140px !important;
    }
}


.logo-svg {
    height: 100%;
    width: auto;
    max-width: 100%;
    filter: brightness(1);
    transition: filter 0.3s ease;
}

/* Ensure logo is black in light mode */
.light-theme .logo-svg {
    filter: brightness(0);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.light-theme .nav-links a {
    color: var(--light-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--cherry-red);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    z-index: 2000;
    /* Ensure it's above the menu links */
    position: relative;
}

.nav-actions-top-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Dropdown Menu Styles */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-bottom: 2px solid var(--cherry-red);
    border-radius: 6px;
    padding: 8px 0;
    list-style: none;
    min-width: 200px;
    z-index: 1000;
    animation: fadeInDropdown 0.3s ease-in-out;
    box-shadow: var(--box-shadow);
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu li {
    margin: 0;
    width: 100%;
}

.nav-links .dropdown-menu li a {
    color: var(--text-color);
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

/* ------------------- */
/* 4. Gritty product image overlay (store-only) */
/* Applies a modern gritty / hip-hop vibe: duotone color wash + halftone dots + subtle grain + vignette */
/* Targeting only product images within the store grid */
.store-grid .product-images {
    position: relative;
    overflow: hidden;
}

.store-grid .product-images img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
    /* subtle punch to the photo */
    filter: contrast(1.08) saturate(1.05) brightness(0.98);
}

/* Duotone wash layer (color mood) */
.store-grid .product-images::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: multiply; /* preserves highlights while coloring shadows */
    opacity: 0.7;
    background: linear-gradient(135deg, rgba(210,4,45,0.18) 0%, rgba(6,160,200,0.06) 100%);
    transition: opacity 0.45s ease;
}

/* Halftone dots + grain + vignette */
.store-grid .product-images::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.9;
    /* tiny dot pattern + soft overlay to simulate printed halftone + film grain */
    background-image:
        radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(0,0,0,0.0) 20%, rgba(0,0,0,0.14) 100%);
    background-size: 6px 6px, 100% 100%;
    background-position: 0 0, center;
    transition: opacity 0.45s ease;
    box-shadow: inset 0 60px 80px -40px rgba(0,0,0,0.6);
    mix-blend-mode: soft-light;
}

/* Intensify / reduce on hover for a tactile effect */
.product-card:hover .product-images::before { opacity: 0.85; }
.product-card:hover .product-images::after { opacity: 0.95; }

/* Responsive adjustments */
@media (max-width: 576px) {
    .store-grid .product-images img { height: 250px; }
    .store-grid .product-images::after { background-size: 4px 4px, 100% 100%; }
}


.nav-links .dropdown-menu li a:hover {
    background-color: rgba(210, 4, 45, 0.1);
    color: var(--cherry-red);
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Theme Toggle */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 48px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--border-color);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 16px;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--cherry-red);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    cursor: pointer;
    color: var(--white);
}

.light-theme .cart-icon {
    color: var(--light-text);
}

.cart-icon i {
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--cherry-red);
    color: var(--navy-dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    cursor: pointer;
    z-index: 2001;
    /* Above nav-actions */
    position: relative;
    pointer-events: auto !important;
}

.mobile-nav-toggle .fa-bars,
.mobile-nav-toggle .fa-times {
    font-size: 1.8rem;
    color: var(--heading-color);
}

.mobile-nav-toggle .fa-times {
    display: none;
}

/* ------------------- */
/* 4. Hero        */
/* ------------------- */
#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    position: relative;
    background-color: #111;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax: keep background fixed */
    width: 100%;
    max-width: none;
    padding: 0;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-logo {
    width: 60vw;
    max-width: 45rem;
    display: block;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* 2026 Style Hero Overlay - Focused & Static */
.hero-custom-order-link {
    display: inline-block;
    width: 500px;
    height: 250px;
    margin-top: -10px;
    /* Moves it up towards the main logo */
    position: relative;
    z-index: 10;
    transition: transform 0.4s ease;
    cursor: pointer;
    border-radius: 12px;
    overflow: visible;
}

.hero-custom-order-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
    animation: iridescentShift 8s infinite ease-in-out;
}

/* Hover Effect: Simple Subtle Scale */
.hero-custom-order-link:hover {
    transform: scale(1.02);
}

/* Iridescent Shift - Premium Tech Color Cycle */
@keyframes iridescentShift {

    0%,
    100% {
        filter: hue-rotate(0deg) brightness(1) saturate(1) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
        transform: scale(1);
    }

    50% {
        /* Subtle shift to the next 'cool' color in the spectrum */
        filter: hue-rotate(25deg) brightness(1.3) saturate(1.2) drop-shadow(0 0 15px rgba(0, 150, 255, 0.4));
        /* Scale remains 1 to keep it static as requested, but we add a glow */
    }
}


#hero .container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

#hero .pitch {
    color: var(--cherry-red);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

#hero h1 {
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--light-slate);
}

/* ------------------- */
/* 5. Sections    */
/* ------------------- */
/* Parallax banner between Process and Video */

/* Full-bleed parallax banner */
.parallax-products {
    position: relative;
    display: block;
    box-sizing: border-box;
    width: 100vw;
    /* span full viewport width */
    margin-left: calc(50% - 50vw);
    /* flush left */
    margin-right: calc(50% - 50vw);
    /* flush right */
    max-width: none;
    overflow: hidden;
    min-height: 140vh;
    /* taller to frame head + below elbows */
    background-image: url('art/background images/homepageproductsbackgroundimage.png');
    background-size: cover;
    background-position: center 20%;
    /* shift focus down slightly to include full t-shirt */
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* removed flourish styles */

@media (max-width: 768px) {
    .parallax-products {
        background-attachment: scroll;
        /* mobile fallback */
        min-height: 110vh;
        /* taller on mobile as well */
        background-position: center 22%;
        /* align mobile focus to include shirt */
        padding-top: 90px;
        /* clear fixed header space on mobile */
    }
}

#process .section-heading {
    position: relative;
    z-index: 1;
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    padding: 2.5rem 1.5rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.dark-theme .process-step {
    background: rgba(15, 15, 16, 0.7);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.process-step .icon {
    font-size: 3rem;
    color: var(--cherry-red);
    margin-bottom: 1rem;
}

.process-step-1 {
    transition-delay: 100ms;
}

.process-step-2 {
    transition-delay: 200ms;
}

.process-step-3 {
    transition-delay: 300ms;
}

/* Products Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.product-card .product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.product-card .product-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.product-card .product-image-container .product-image-back {
    opacity: 0;
}

.product-card .product-image-container:hover .product-image-back {
    opacity: 1;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--heading-color);
}

/* Video Section */
#video .container p {
    text-align: center;
    max-width: 800px;
    margin: -40px auto 40px;
    font-size: 1.1rem;
}

/* Legacy video container for services page */
.content-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    border: 2px solid var(--border-color);
}

.content-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* New styles for services page */
#influencer-merch-section .main-service-title {
    color: var(--cherry-red);
    font-size: clamp(2rem, 4vw, 3rem);
    /* A bit smaller than default h1 */
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--white);
    margin: -10px auto 40px;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
}

.value-props {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.value-props h2 {
    text-align: center;
    margin-top: 0;
}

.value-props ul {
    list-style-type: none;
    padding: 0;
    margin-top: 2rem;
}

.value-props li {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.value-props li:last-child {
    border-bottom: none;
}

.value-props li:hover {
    background-color: rgba(210, 4, 45, 0.05);
}

.value-props li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

#influencer-merch-section .contact-form-container {
    padding-top: 1rem;
}



/* ------------------- */
/* 6. Forms       */
/* ------------------- */
.form-wrapper {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--heading-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cherry-red);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ------------------- */
/* 7. Calendly Widget  */
/* ------------------- */
.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    border-radius: 8px;
    overflow: hidden;
}

/* ------------------- */
/* 8. Shopping Cart   */
/* ------------------- */
.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    /* Start off-screen */
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--bg-color);
    z-index: 1002;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
}

.cart-modal.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    margin-bottom: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--heading-color);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-body {
    padding: 1.5rem;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.9rem;
}

.cart-item-remove {
    color: #ff6b6b;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: auto;
}

.cart-empty-message {
    text-align: center;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

#proceed-to-checkout-btn {
    width: 100%;
    text-align: center;
}

/* ------------------- */
/* 9. Footer & Utils */
/* ------------------- */
.footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

/* Footer on the main index page to reveal video */
.index-footer {
    min-height: 20vh;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Keep content at the bottom */
    align-items: center;
    border-top: none;
    padding-bottom: 1rem;
    /* Reduced padding to bring text closer to bottom */
}

.footer-links {
    margin-top: 10px;
    text-align: center;
}

.footer-links a {
    color: var(--cherry-red);
    text-decoration: none;
}

.footer-links span {
    color: var(--cherry-red);
    margin: 0 10px;
}

/* Social Links in Contact Section */
#contact .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    /* Align to the left as per current design */
    gap: 1.5rem;
    /* Space between icons */
    margin-top: 1.5rem;
}

#contact .social-links li a {
    display: inline-block;
    color: var(--slate);
    /* Use a standard text color */
    font-size: 2rem;
    /* Increased icon size */
    padding: 0.5rem;
    /* Increase clickable area */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 50px;
    /* Vertically center the icon */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* Prepare for a border effect */
}

#contact .social-links li a:hover {
    color: var(--cherry-red);
    /* Highlight color on hover */
    background-color: rgba(210, 4, 45, 0.1);
    /* Subtle background glow */
    border-color: var(--cherry-red);
    /* Border effect on hover */
    transform: translateY(-5px) scale(1.1);
    /* Lift and grow effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.light-theme #contact .social-links li a {
    color: var(--light-slate);
}

.light-theme #contact .social-links li a:hover {
    color: var(--navy-dark);
    background-color: rgba(10, 25, 47, 0.1);
    border-color: var(--navy-dark);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    width: 50px;
    height: 50px;
    background-color: var(--cherry-red);
    color: var(--navy-dark);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

/* ------------------- */
/* 10. Main Content Wrapper */
/* ------------------- */
.main-content-wrapper {
    background-color: var(--bg-color);
    position: relative;
    z-index: 2;
    /* Ensure it sits above the fixed video (z-index: -1) and any other low-level elements */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Landing Chatbot Transition */
.landing-chatbot {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.5s ease-out !important;
}

.landing-chatbot.scrolled {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}






.custom-order-background {
    width: 100%;
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('art/background images/custo-order-background.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#custom-orders-cta .btn-futuristic {
    background-color: var(--cherry-red);
    color: var(--navy-dark);
    font-weight: bold;
    border: 1px solid var(--cherry-red);
    box-shadow: 0 4px 15px rgba(210, 4, 45, 0.4);
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

#custom-orders-cta .btn-futuristic:hover {
    transform: translateY(-2px);
    background-color: var(--cherry-red-hover);
}

/* New styles for Partnership page */
.partnership-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* For animations */
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(210, 4, 45, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: 0;
}

.partnership-section.visible::before {
    opacity: 1;
}

.partnership-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.partnership-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--light-slate);
    margin-bottom: 2rem;
    font-weight: 300;
}

.partnership-intro {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate);
}

.neon-text {
    color: var(--cherry-red);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(210, 4, 45, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg,
            rgba(210, 4, 45, 0.05) 0%,
            rgba(210, 4, 45, 0.1) 20%,
            transparent 50%,
            rgba(210, 4, 45, 0.1) 80%,
            rgba(210, 4, 45, 0.05) 100%);
    animation: rotate-gradient 15s linear infinite;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(210, 4, 45, 0.2), 0 0 20px rgba(210, 4, 45, 0.15);
    border-color: var(--cherry-red);
}

.feature-card .feature-icon {
    font-size: 3.5rem;
    color: var(--cherry-red);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--cherry-red-hover);
}

.feature-card h3 {
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--slate);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Dark background section */
.dark-bg-section {
    background-color: #000000;
    /* Use the darkest theme color */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 100px 0;
}

.dark-bg-section .section-heading {
    color: var(--white);
}

.dark-bg-section p {
    color: var(--light-slate);
}

/* Checklist */
.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem auto;
    max-width: 800px;
}

.checklist-item {
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--white);
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 10px rgba(210, 4, 45, 0.03);
}

.checklist-item:hover {
    background-color: rgba(210, 4, 45, 0.05);
    border-color: var(--cherry-red);
    transform: translateY(-3px);
}

.checklist-item i {
    color: var(--cherry-red);
    font-size: 1.2rem;
}

/* Service List */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 0 12px rgba(210, 4, 45, 0.05);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(210, 4, 45, 0.15);
    background-color: rgba(210, 4, 45, 0.03);
}

.service-item i {
    font-size: 2.5rem;
    color: var(--cherry-red);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.service-item:hover i {
    color: var(--cherry-red-hover);
}

.service-item span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1rem;
}

/* Call to Action Text */
.partnership-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 3rem;
    color: var(--white);
}

.partnership-final-cta {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 3rem;
    color: var(--cherry-red);
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(210, 4, 45, 0.2);
}

.cta-buttons .btn-primary {
    background-color: var(--cherry-red);
    color: var(--navy-dark);
    border-color: var(--cherry-red);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--cherry-red-hover);
    box-shadow: 0 0 25px rgba(210, 4, 45, 0.4);
    transform: translateY(-5px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--cherry-red);
    border-color: var(--cherry-red);
}

.cta-buttons .btn-secondary:hover {
    background-color: rgba(210, 4, 45, 0.1);
    box-shadow: 0 0 25px rgba(210, 4, 45, 0.2);
    transform: translateY(-5px);
}

/* Keyframe for rotating gradient */
@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Animated Border Box for Hero */
.animated-border-box {
    position: relative;
    padding: 0;
    background-color: var(--card-bg);
    /* Keep the background color */
    border: 2px solid var(--cherry-red);
    /* Use a static neon #D2042D border */
    border-radius: 10px;
    overflow: hidden;
    /* Add a subtle shadow to lift the box off the page */
    box-shadow: 0 0 20px rgba(210, 4, 45, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Add transition for smooth effects */
    cursor: pointer;
    /* Indicate it's interactive */
}

.animated-border-box:hover {
    transform: translateY(-5px);
    /* Lift the box on hover */
    box-shadow: 0 10px 30px rgba(210, 4, 45, 0.25), 0 0 40px rgba(210, 4, 45, 0.2);
    /* Intensify the glow */
}

.animated-border-box:active {
    transform: translateY(0px) scale(0.99);
    /* Press down effect on click */
    box-shadow: 0 0 15px rgba(210, 4, 45, 0.2);
    /* Slightly reduce glow on click */
    transition-duration: 0.1s;
    /* Make the click effect faster */
}

.hero-content-inner {
    padding: 2.5rem;
}

/* Hero Key Points Styling */
.hero-key-points {
    margin-top: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.key-point-highlight {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.key-point-detail {
    font-size: 1rem;
    color: var(--slate);
    margin-bottom: 2rem;
}

.key-point-detail .highlight {
    color: var(--cherry-red);
    font-weight: 600;
}

.key-point-focus {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.key-point-focus .focus-you {
    color: var(--white);
}

.key-point-focus .focus-we {
    color: var(--cherry-red);
}

.key-point-final {
    font-style: italic;
    color: var(--cherry-red);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .partnership-section {
        padding: 60px 0;
    }

    .partnership-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .partnership-subtitle {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .feature-grid,
    .checklist,
    .service-list {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 80%;
        max-width: 300px;
    }
}

/* ------------------- */
/* 10. Responsive Design */
/* ------------------- */
@media (max-width: 992px) {

    #contact .container,
    #checkout .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Mobile fallback: disable fixed attachment due to performance/compatibility */
    #hero {
        background-attachment: scroll;
    }

    main>section,
    main>.hero-products {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        width: 80vw;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(75vw, 400px);
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        /* Start from top for scrolling */
        align-items: center;
        gap: 1.5rem;
        padding-top: 100px;
        background-color: #000000;
        /* Solid black */
        overflow-y: auto;
        /* Allow scrolling if menu is long */
        border-left: 1px solid var(--cherry-red);
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links .dropdown-menu {
        position: static;
        /* Push content down instead of overlapping */
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        width: 100%;
        text-align: center;
        display: none;
        /* Hide by default */
    }

    .nav-links .dropdown.active .dropdown-menu,
    .nav-links .dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-links .dropdown-menu li a {
        padding: 8px 0;
        font-size: 0.85rem;
        opacity: 0.8;
    }

    .light-theme .nav-links {
        background-color: rgba(244, 247, 253, 0.8);
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    .dark-theme .nav-links {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .fa-bars {
        display: none;
    }

    .mobile-nav-toggle.active .fa-times {
        display: block;
    }

    #contact .container {
        padding: 20px;
    }

    #contact .contact-grid {
        flex-direction: column;
        align-items: center;
    }

    #contact .contact-grid-item {
        max-width: 100%;
    }

    #about .about-content {
        grid-template-columns: 1fr;
    }
}

.size-selection {
    margin-bottom: 1.5rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
}

.size-option {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.size-option.selected {
    background-color: var(--cherry-red);
    color: var(--navy-dark);
    border-color: var(--cherry-red);
    box-shadow: 0 0 15px rgba(210, 4, 45, 0.6);
}

/* ------------------- */
/* 11. Checkout & Order Confirmation */
/* ------------------- */
#checkout .checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    #checkout .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-form h3,
.checkout-summary h3 {
    margin-bottom: 1.5rem;
}

#payment-form .form-group {
    margin-bottom: 1rem;
}

#payment-element {
    margin-bottom: 1.5rem;
}

.checkout-summary {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.summary-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.summary-totals {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-line.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--heading-color);
}

#order-confirmation .container {
    text-align: center;
}

#order-summary-container {
    max-width: 600px;
    margin: 2rem auto;
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.cart-summary-items {
    max-height: 300px;
    /* Or any height you prefer */
    overflow-y: auto;
    padding-right: 1rem;
    /* For scrollbar spacing */
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.summary-item-info {
    flex-grow: 1;
}

.summary-item-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.summary-item-info p {
    font-size: 0.9rem;
    color: var(--slate);
}

.summary-item-price {
    font-size: 1rem;
    font-weight: bold;
    color: var(--heading-color);
}



/* ------------------- */
/* 12. Featured Products Section */
/* ------------------- */
.hero-products {
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url('art/background images/homepageproductsbackgroundimage.png');
    background-size: cover;
    background-position: center 20%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.products-button-container {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
}

.products-button {
    font-size: 1.2rem;
    padding: 0.8rem 1.6rem;
    z-index: 1;
    position: relative;
    background-color: rgba(210, 4, 45, 0.85);
    color: var(--navy-dark);
    border: 1px solid var(--cherry-red);
}

.products-button:hover {
    background-color: var(--cherry-red);
}

@media (max-width: 768px) {
    .products-button-container {
        position: absolute;
        top: auto;
        right: auto;
        left: 50%;
        bottom: 1.5rem;
        transform: translateX(-50%);
        z-index: 2;
    }

    .products-button {
        font-size: 1rem;
        padding: 0.9rem 1.4rem;
    }
}

.text-center {
    text-align: center;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.brand-card {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: block;
    text-decoration: none;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.brand-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    filter: none;
    animation: none !important;
}

.brand-name {
    padding: 1.5rem;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    color: var(--heading-color);
}

#about .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

#about .about-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#about .about-text p {
    margin-bottom: 1rem;
}

/* Invert brand logos in light mode for visibility */
.light-theme .brand-card img {
    filter: invert(1);
    animation: none !important;
}

.process-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

#contact {
    padding: 60px 0;
    background-color: var(--bg-color);
}

#contact .container {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact .section-heading {
    text-align: center;
    margin-bottom: 40px;
}

#contact .contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* Reduced gap for better wrapping */
}

#contact .contact-grid-item {
    flex: 1 1 300px;
    /* Grow, shrink, basis */
    max-width: 350px;
    /* Prevent items from getting too wide */
    padding: 1rem;
    text-align: center;
}

@media (min-width: 769px) {
    .nav-links {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background-color: transparent;
        box-shadow: none;
    }

    .mobile-nav-toggle {
        display: none;
    }
}

/* ------------------- */
/* 9. Light-mode fixes for inline dark styles */
/* These override inline styles that assume dark mode so light-theme renders correctly. */
.light-theme [style*="background: rgba(15,15,16"] {
    background: var(--card-bg) !important;
}

.light-theme [style*="background: rgba(0,0,0,0.5)"] {
    background: var(--bg-translucent) !important;
    color: var(--text-color) !important;
}

.light-theme [style*="color: #fff"] {
    color: var(--text-color) !important;
}

.light-theme [style*="box-shadow: 0 10px 30px rgba(0,0,0,0.5)"] {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08) !important;
}

/* Specific: ensure product loading / error messages show readable text in light mode */
.light-theme .loading-products,
.light-theme .loading-products p {
    color: var(--text-color) !important;
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVE DESIGN
   Mobile-First Approach with Multiple Breakpoints
   ================================================================ */

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    body {
        line-height: 1.5;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }

    .container {
        padding: 0 12px;
    }

    /* Header & Navigation */
    .landing-header {
        padding: 0.5rem 1rem;
    }

    .mobile-nav-toggle {
        width: 30px;
        height: 30px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    /* Hero Section */
    .hero {
        padding: 60px 1rem 40px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Cards & Grid */
    .service-card,
    .product-card,
    .process-step {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }

    .grid, .service-grid {
        gap: 1rem;
    }

    /* Forms */
    input, textarea, select {
        padding: 10px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Devices (480px - 768px) */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        line-height: 1.55;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    /* Header & Navigation */
    .landing-header {
        padding: 0.75rem 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 80px 1.5rem 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.4;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
    }

    /* Cards & Grid */
    .service-card,
    .product-card,
    .process-step {
        padding: 1.75rem 1.25rem;
        gap: 1.25rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Text */
    p {
        font-size: 0.95rem;
    }

    /* Forms */
    input, textarea, select {
        padding: 11px;
        font-size: 15px;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    /* Sections */
    section {
        padding: 40px 1.5rem;
    }

    .section-heading {
        margin-bottom: 2rem;
    }
}

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .hero {
        padding: 100px 2rem 60px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    section {
        padding: 50px 2rem;
    }

    .footer {
        padding: 3rem 2rem;
    }
}

/* Large Devices (1024px - 1440px) */
@media (max-width: 1440px) {
    .container {
        max-width: 95%;
    }

    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    section {
        padding: 60px 2.5rem;
    }
}

/* Extra Large Devices (1440px+) - Desktop */
@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }

    html {
        font-size: 16px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .btn {
        padding: 13px 32px;
        font-size: 1rem;
    }

    section {
        padding: 70px 3rem;
    }
}

/* ================================================================
   RESPONSIVE UTILITIES
   ================================================================ */

/* Hide elements on mobile, show on desktop */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }

    .show-desktop {
        display: block !important;
    }
}

/* ================================================================
   UNIVERSAL MOBILE CENTERING OVERRIDES
   Ensures all content is perfectly centered on mobile
   ================================================================ */

@media (max-width: 480px) {
    /* Force all major sections to center */
    section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Hero section centered */
    .hero {
        text-align: center;
        align-items: center;
    }

    .hero-content,
    .hero h1,
    .hero h2,
    .hero p,
    .hero-text {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* All headings centered */
    h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
        width: 100%;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Paragraphs centered */
    p {
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Cards and grid items centered */
    .card,
    .product-card,
    .service-card,
    .process-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        margin: 0 auto;
    }

    .grid,
    .service-grid,
    .product-grid,
    .process-grid {
        display: grid;
        grid-template-columns: 1fr;
        place-items: center;
        gap: 1.5rem;
        width: 100%;
    }

    /* Forms centered */
    form,
    .form-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    input,
    textarea,
    select,
    .form-group,
    .form-control {
        width: 100%;
        max-width: 100%;
        display: block;
        margin: 0 auto 1rem;
    }

    /* Buttons centered */
    .btn,
    .button,
    button {
        display: block;
        margin: 0.5rem auto;
        width: auto;
    }

    .btn-group,
    .button-group,
    .button-container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    /* Images centered */
    img,
    picture,
    video {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    /* Navigation centered */
    nav,
    .nav-links,
    .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Lists centered */
    ul, ol {
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
        padding: 0;
    }

    li {
        text-align: center;
        width: 100%;
    }

    /* Footer centered */
    footer,
    .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Sliders and carousels */
    .swiper,
    .slider-container,
    .carousel {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* Prevent horizontal overflow */
    body,
    html {
        overflow-x: hidden;
    }

    /* Ensure sections don't overflow */
    section,
    .container,
    main {
        max-width: 100vw;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    /* Tablet/Medium mobile centering */
    section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .container {
        max-width: 100%;
        padding: 0 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1, h2, h3 {
        text-align: center !important;
    }

    .grid,
    .service-grid {
        grid-template-columns: 1fr;
        place-items: stretch;
        width: 100%;
    }

    .card,
    .product-card,
    .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    input,
    textarea,
    select {
        width: 100%;
        max-width: 100%;
    }

    .btn-group {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* ================================================================
   CONTENT WRAPPER CENTERING
   ================================================================ */

/* Ensure wrapper elements center their children */
.content-wrapper,
.section-wrapper,
.page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Flex container utilities */
.flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.flex-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Ensure inline elements align properly */
span,
small,
.text-label {
    display: inline;
    text-align: center;
}

/* =================================================================
   UTILITY CLASSES - For Replacing Inline Styles (Zero-Inline Policy)
   ================================================================= */

/* ----- Layout Utilities ----- */
.page-section {
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}

.w-full {
    width: 100%;
    text-align: center;
}

.gap-8 {
    gap: 30px;
}

.relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

.mb-8 {
    margin-bottom: 30px;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.page-section-sm {
    padding-top: 80px;
    padding-bottom: 40px;
}

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.container-wide {
    max-width: 900px;
    margin: 0 auto;
}

.overlay-light {
    opacity: 0.1;
}

.overlay-medium {
    opacity: 0.5;
}

/* ----- Hero Text Utilities ----- */
.hero-title-xl {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 0 10px var(--cherry-red);
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--heading-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-title-lg {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px var(--cherry-red);
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--heading-color);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-subtitle {
    color: var(--cherry-red);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-paragraph {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero-paragraph-sm {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    opacity: 0.9;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* ----- Button Utilities ----- */
.btn-shop-collection {
    display: inline-block;
    color: var(--heading-color);
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    transition: all 0.4s ease;
    position: relative;
}

.btn-shop-collection:hover {
    text-shadow: 0 0 20px rgba(210, 4, 45, 0.8);
    transform: translateY(-2px);
}

/* ----- Form Utilities ----- */
.contact-form-box {
    background: rgba(15,15,16,0.7);
    border: 1px solid rgba(210, 4, 45, 0.3);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: left;
}

.light-theme .contact-form-box {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(210, 4, 45, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group-lg {
    margin-bottom: 2rem;
}

.form-group-xl {
    margin-bottom: 2.5rem;
}

.form-label-cherry {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--cherry-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-input-themed {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(210, 4, 45, 0.2);
    border-radius: 4px;
    outline: none;
    color: var(--text-color);
    transition: border-color 0.3s;
}

.form-input-themed:focus {
    border-color: var(--cherry-red);
}

.light-theme .form-input-themed {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(210, 4, 45, 0.3);
    color: var(--text-color);
}

.light-theme .bg-main-wrapper,
.light-theme .bg-video-section,
.light-theme .hero,
.light-theme .products-section {
    background: transparent !important;
}

.light-theme .hero-paragraph,
.light-theme .hero-paragraph-sm,
.light-theme .hero-title-xl,
.light-theme .hero-title-lg,
.light-theme .btn-shop-collection {
    text-shadow: none !important;
    color: #000000 !important;
}

.form-status-msg {
    margin-top: 25px;
    color: var(--cherry-red);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ----- Social Icon Utilities ----- */
.social-icons-row {
    display: flex;
    gap: 22px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.social-icon {
    font-size: 2.2rem;
    color: var(--heading-color);
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--cherry-red);
}

/* ----- Background Utilities ----- */
.bg-video-section {
    padding: 0;
    background: var(--card-bg);
    margin: 0;
    border: none;
}

.bg-main-wrapper {
    background: var(--card-bg);
    position: relative;
    z-index: 10;
    flex: 1 0 auto;
    width: 100%;
    transition: background-color 0.3s ease;
}

.bg-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.bg-dark-overlay-heavy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.bg-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bg-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    border: none;
    transform: translate(-50%, -50%) scale(1.6);
}

/* ----- About Page Utilities ----- */
.about-main-bg {
    padding-top: 80px;
    min-height: calc(100vh - 200px);
}

.about-hero-bg {
    background-image: url('art/background images/popupshop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 60px 0;
}

.video-section-bg {
    background-image: url('art/background images/apparel-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 30px 0 60px;
}

/* ----- Footer Utilities ----- */
.footer-links-row {
    margin-top: 10px;
    text-align: center;
}

.footer-link-cherry {
    color: var(--cherry-red);
    text-decoration: none;
}

.footer-link-inherit {
    color: inherit;
    text-decoration: underline;
}

/* ----- Swiper/Product Utilities ----- */
.swiper-video-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
}

.video-slide {
    width: 320px;
    height: 580px;
}

.video-thumbnail-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* ----- Product Slide Overlay ----- */
.product-slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 100px;
    opacity: 1;
    visibility: visible;
    z-index: 100;
    pointer-events: none;
}

.btn-shop-view {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 24px;
    background: rgba(210, 4, 45, 0.9);
    border: 2px solid rgba(210, 4, 45, 0.8);
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    pointer-events: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    white-space: nowrap;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
    .bg-video-container iframe {
        transform: translate(-50%, -50%) scale(3.0);
    }
    
    .hero-title-xl {
        font-size: 2.5rem;
    }
    
    .hero-title-lg {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}
