/* FlagFitApparel - Complete Styles */

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

:root {
    --primary-color: #E31E24;
    --primary-dark: #B71C1C;
    --secondary-color: #0A0A0A;
    --accent-color: #E31E24;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #F8F8F8;
    --white: #ffffff;
    --black: #000000;
    --gold-accent: #D4AF37;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #E31E24;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

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

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.main-nav.scrolled {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.main-nav.scrolled .logo,
.main-nav.scrolled .nav-links a,
.main-nav.scrolled .cart-button {
    color: var(--text-dark);
    text-shadow: none;
    filter: none;
}

/* Design dropdown button always white in all nav states */
.design-nav-dropdown > button {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.main-nav.scrolled .design-nav-dropdown > button {
    color: #ffffff !important;
    text-shadow: none;
    background: rgba(0, 0, 0, 0.75);
    padding: 4px 10px;
    border-radius: 6px;
}

.main-nav.scrolled .logo {
    color: #E31E24;
}

.main-nav.scrolled .nav-links a:hover,
.main-nav.scrolled .nav-links a.active {
    color: #E31E24;
    text-shadow: none;
}

.main-nav.scrolled .cart-button:hover {
    color: #E31E24;
    filter: none;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.logo img {
    width: 54.432px;
    height: 54.432px;
}

.logo-apparel {
    font-size: 0.5em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(255, 69, 0, 0.9);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E31E24;
}

.cart-button {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--white);
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.8));
}

.cart-button:hover {
    color: var(--white);
    filter: drop-shadow(2px 2px 10px rgba(255, 69, 0, 0.9));
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #E31E24;
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

.main-nav.scrolled .mobile-toggle span {
    background: var(--text-dark);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}



/* ===== HERO SECTIONS ===== */
.hero, .shop-hero, .customize-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.15) translateX(-5%);
    }
}

.hero-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105vw;
    height: 105vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: brightness(1.4);
    border: 0;
}

/* Block YouTube branding/UI overlays */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .hero-background iframe {
        height: 59.0625vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-background iframe {
        width: 186.67vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #E31E24 0%, #CC3700 100%);
    color: var(--white);
    border-color: #E31E24;
    box-shadow: 0 4px 16px rgba(255, 69, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #CC3700 0%, #E31E24 100%);
    border-color: #CC3700;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 69, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: #E31E24;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* ===== FEATURED SECTION - LUXURY DESIGN ===== */
.featured-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #F8F8F8 100%);
    overflow: hidden;
}

.featured-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    background-image: url('images/football-brand-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
}

.featured-section h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Playfair Display', Georgia, serif;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

.featured-section .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

/* ===== PRODUCT GRID - LUXURY LAYOUT ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    padding: 0 2rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid #e8e8e8;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: #d4af37;
}

/* ===== MODERN PRODUCT CARDS - LUXURY EDITION ===== */
.modern-card {
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8e8e8;
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(255, 69, 0, 0.15);
    border-color: #E31E24;
}

.modern-card .product-image {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
    background: #f8f8f8;
}

.modern-card .product-image img {
    border-radius: 0;
    filter: grayscale(0%) contrast(1.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .product-image img {
    filter: grayscale(0%) contrast(1.1);
}

/* Product Name Overlay - Luxury Badge */
.product-name-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 400;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 15;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid #E31E24;
}

.modern-card:hover .product-name-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Icon Link - Luxury Style */
.card-icon-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.card-icon-link:hover {
    background: #E31E24;
    color: #ffffff;
    transform: scale(1) rotate(90deg);
    border-color: #E31E24;
}

.modern-card:hover .card-icon-link {
    opacity: 1;
    transform: scale(1);
}

.modern-card .product-badge {
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 0;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-card:hover .product-badge {
    opacity: 0;
    transform: translateY(-8px);
}

.modern-card .product-info {
    padding: 2rem 2rem 2.5rem;
    background: #ffffff;
    border-radius: 0;
    border-top: 1px solid #f0f0f0;
}

.product-image {
    position: relative;
    padding-top: 110%;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #2c3e50;
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.product-info {
    padding: 1.75rem;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.5;
    transition: color 0.4s ease;
    min-height: 3rem;
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: 1px;
}

.product-info h3 a {
    display: block;
}

.product-info h3 a:hover {
    color: #d4af37;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: #E31E24;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.product-price::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #E31E24;
    border-radius: 2px;
}

.product-card .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 400;
    border-radius: 0;
    background: #0A0A0A;
    border: 1px solid #0A0A0A;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-card .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.3), transparent);
    transition: left 0.6s ease;
}

.product-card .btn-primary:hover::before {
    left: 100%;
}

.product-card .btn-primary:hover {
    background: #E31E24;
    border-color: #E31E24;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 69, 0, 0.4);
}

.product-card .btn-primary:active {
    transform: translateY(0);
}

/* Button Icon Animation */
.product-card .btn-primary svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card .btn-primary:hover svg {
    transform: translateX(4px);
}

.out-of-stock-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--text-light);
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Product Card Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.product-card.loading {
    background: linear-gradient(
        90deg,
        #f0f0f0 0px,
        #f8f8f8 40px,
        #f0f0f0 80px
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Product Card Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.5s ease-out forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }

.modern-card:nth-child(1) { animation-delay: 0.1s; }
.modern-card:nth-child(2) { animation-delay: 0.2s; }
.modern-card:nth-child(3) { animation-delay: 0.3s; }
.modern-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== HOW IT WORKS - STEP 1-2-3 ===== */
.how-it-works-steps {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #F8F8F8 100%);
    overflow: hidden;
}

.hiw-top-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
}

.hiw-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 80%;
    background-image: url('images/football-brand-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.hiw-container {
    position: relative;
    z-index: 1;
}

.hiw-header {
    text-align: center;
    margin-bottom: 5rem;
}

.hiw-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E31E24;
    margin-bottom: 1.25rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 50px;
}

.hiw-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: 1.25rem;
}

.hiw-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}

/* Steps row */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: start;
}

/* Individual step card */
.hiw-step {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 3rem 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.hiw-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hiw-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(255, 69, 0, 0.12);
    border-color: rgba(227, 30, 36, 0.3);
}

.hiw-step:hover::before {
    opacity: 1;
}

/* Highlighted step (Step 3) */
.hiw-step--highlight {
    background: linear-gradient(160deg, #0A0A0A 0%, #1a1a1a 100%);
    border-color: rgba(227, 30, 36, 0.4);
}

.hiw-step--highlight::before {
    opacity: 1;
}

.hiw-step--highlight:hover {
    box-shadow: 0 16px 48px rgba(255, 69, 0, 0.25);
    border-color: rgba(227, 30, 36, 0.7);
}

.hiw-step--highlight .hiw-step-number {
    color: rgba(255, 255, 255, 0.12);
}

.hiw-step--highlight .hiw-step-icon {
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.25) 0%, rgba(227, 30, 36, 0.1) 100%);
    border-color: rgba(227, 30, 36, 0.5);
    color: #E31E24;
}

.hiw-step--highlight .hiw-step-body h3 {
    color: #ffffff;
}

.hiw-step--highlight .hiw-step-body p {
    color: rgba(255, 255, 255, 0.65);
}

/* Step number (large background numeral) */
.hiw-step-number {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(227, 30, 36, 0.08);
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -2px;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    pointer-events: none;
    user-select: none;
    transition: color 0.4s ease;
}

.hiw-step:hover .hiw-step-number {
    color: rgba(227, 30, 36, 0.12);
}

/* Connector line between steps (hidden on last step) */
.hiw-step-connector {
    display: none; /* handled by grid gap; kept for potential future use */
}

/* Icon circle */
.hiw-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1.5px solid rgba(227, 30, 36, 0.25);
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.07) 0%, rgba(227, 30, 36, 0.03) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E31E24;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiw-step:hover .hiw-step-icon {
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    border-color: #E31E24;
    color: #ffffff;
    transform: rotate(8deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(227, 30, 36, 0.35);
}

/* Step body text */
.hiw-step-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hiw-step-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-family: 'Playfair Display', Georgia, serif;
}

.hiw-step-body p {
    font-size: 0.98rem;
    color: #666;
    line-height: 1.75;
    font-weight: 300;
}

/* CTA link inside step */
.hiw-step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E31E24;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hiw-step-link svg {
    transition: transform 0.3s ease;
}

.hiw-step-link:hover {
    gap: 0.9rem;
    color: #CC3700;
}

.hiw-step-link:hover svg {
    transform: translateX(4px);
}

/* CTA variant for Step 3 */
.hiw-step-link--cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #E31E24 0%, #CC3700 100%);
    color: #ffffff;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0.25rem;
    position: relative;
    overflow: hidden;
}

.hiw-step-link--cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.hiw-step-link--cta:hover::before {
    left: 100%;
}

.hiw-step-link--cta:hover {
    background: linear-gradient(135deg, #CC3700 0%, #E31E24 100%);
    box-shadow: 0 6px 24px rgba(227, 30, 36, 0.55);
    transform: translateY(-2px);
    color: #ffffff;
    gap: 1rem;
}

.hiw-step-link--cta svg {
    transition: transform 0.3s ease;
}

.hiw-step-link--cta:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 900px) {
    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hiw-step {
        padding: 2.5rem 2rem;
    }

    .hiw-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .how-it-works-steps {
        padding: 5rem 0;
    }

    .hiw-header {
        margin-bottom: 3rem;
    }

    .hiw-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hiw-step {
        padding: 2rem 1.5rem;
    }

    .hiw-step-number {
        font-size: 4rem;
    }

    .hiw-step-icon {
        width: 60px;
        height: 60px;
    }

    .hiw-step-body h3 {
        font-size: 1.2rem;
    }
}

/* ===== FLAG PANTS SHOWCASE - REDESIGNED ===== */
.flag-pants-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.flag-pants-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.flag-pants-showcase::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.flag-pants-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.flag-pants-header h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.flag-pants-content {
    position: relative;
    z-index: 2;
}

.pants-image-hero {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.image-wrapper:hover::before {
    opacity: 1;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pants-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

/* Continuous Rotating Carousel for Pants Features */
.pants-features-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.pants-features-carousel {
    display: flex;
    gap: 2.5rem;
    animation: scrollCarousel 30s linear infinite;
    width: max-content;
}

.pants-features-carousel:hover {
    animation-play-state: paused;
}

.pants-features-carousel .feature-card {
    flex: 0 0 350px;
    width: 350px;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 4 - 2.5rem * 4));
    }
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.15);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.pants-cta {
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pants-cta .btn-large {
    margin-bottom: 3rem;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.3);
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.pants-cta .btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.pants-cta .btn-large:hover::before {
    left: 100%;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== THREE CARD GRID ===== */
.three-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card-large {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.15);
}

.feature-card-large .card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.feature-card-large .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-large:hover .card-image img {
    transform: scale(1.1);
}

.feature-card-large .image-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.feature-card-large .card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.feature-card-large .card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card-large .card-content > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-features {
    margin-bottom: 2rem;
    flex: 1;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.card-features li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.feature-card-large .btn-block {
    margin-top: auto;
}

/* ===== PERFORMANCE JERSEYS SHOWCASE - REDESIGNED ===== */
.performance-jerseys-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.jerseys-header {
    text-align: center;
    margin-bottom: 5rem;
}

.jerseys-header h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.jerseys-content {
    max-width: 1400px;
    margin: 0 auto;
}

.jerseys-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.jerseys-image-side {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.jersey-image-main {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jersey-image-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.jersey-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.jersey-image-main:hover img {
    transform: scale(1.05);
}

.image-badge-jersey {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--white);
    color: var(--accent-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.jersey-image-secondary {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.jersey-image-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.jersey-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.jersey-image-secondary:hover img {
    transform: scale(1.05);
}

.jerseys-features-side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.jersey-feature-highlight {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
}

.jersey-feature-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
    border-left-color: var(--accent-color);
}

.feature-highlight-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.jersey-feature-highlight:hover .feature-highlight-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.feature-highlight-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.feature-highlight-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.jersey-customization-note {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.05) 0%, rgba(52, 152, 219, 0.05) 100%);
    border-radius: 16px;
    border: 2px dashed rgba(231, 76, 60, 0.3);
}

.jersey-customization-note svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.jersey-customization-note strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.jersey-customization-note p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== UNIFORM SETS SHOWCASE - REDESIGNED ===== */
.uniform-sets-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
}

.sets-header {
    text-align: center;
    margin-bottom: 5rem;
}

.sets-header h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sets-content {
    max-width: 1400px;
    margin: 0 auto;
}

.sets-hero-image {
    position: relative;
    margin-bottom: 5rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    max-height: 500px;
}

.sets-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sets-badge-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 4rem;
    border-radius: 50px;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sets-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.package-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.package-card.featured {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.03) 0%, rgba(52, 152, 219, 0.03) 100%);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.package-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.price-amount {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-per {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-includes h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.package-includes ul {
    margin-bottom: 2rem;
}

.package-includes li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.package-includes li svg {
    flex-shrink: 0;
    color: var(--success);
    margin-top: 2px;
}

.package-savings {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
    color: var(--success);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.package-card .btn-block {
    margin-top: 1.5rem;
}

.sets-benefits {
    background: var(--white);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 4rem;
}

.sets-benefits h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid-sets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-item-set {
    text-align: center;
}

.benefit-icon-set {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.benefit-item-set:hover .benefit-icon-set {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.benefit-item-set h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-item-set p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.sets-cta-banner {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a252f 100%);
    border-radius: 24px;
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sets-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sets-cta-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
}

.cta-banner-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-content .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-banner-content .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.4);
}

/* ===== SHOWCASE SECTIONS ===== */
.showcase-section {
    padding: 5rem 0;
}

.showcase-section.reverse {
    background: var(--bg-light);
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-section.reverse .showcase-content {
    direction: rtl;
}

.showcase-section.reverse .showcase-text {
    direction: ltr;
}

.showcase-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.showcase-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 1.2rem;
}

.showcase-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.showcase-image img {
    width: 100%;
    height: auto;
}

/* ===== PRODUCT GALLERY ===== */
.product-gallery {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 5rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step p {
    color: rgba(255,255,255,0.8);
}

/* ===== TESTIMONIALS - HIGH-END LUXURY EDITION ===== */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
    opacity: 0.5;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
    opacity: 0.5;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, #ffffff 0%, #E31E24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial:hover::before {
    opacity: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(255, 69, 0, 0.3);
    border-color: rgba(255, 69, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.testimonial img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial:hover img {
    filter: grayscale(0%) contrast(1.15);
    transform: scale(1.05);
}

.testimonial-content {
    padding: 2.5rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    padding-left: 2rem;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: #E31E24;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.testimonial-author::before {
    content: '';
    width: 4px;
    height: 40px;
    background: linear-gradient(180deg, #E31E24 0%, #FF6B35 100%);
    border-radius: 2px;
}

.testimonial-author strong {
    display: block;
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== NEWSLETTER - LUXURY EDITION ===== */
.newsletter {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
}

.newsletter .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.newsletter h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, #ffffff 0%, #E31E24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    position: relative;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    border: 1px solid rgba(255, 69, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.newsletter-form input {
    flex: 1;
    padding: 1.5rem 2rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-weight: 300;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form input::placeholder {
    color: rgba(26, 26, 26, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
}

.newsletter-form input:focus {
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 69, 0, 0.5);
}

.newsletter-form button {
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    border: none;
    color: #ffffff;
    padding: 1.5rem 3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(255, 69, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #CC3700 100%);
    box-shadow: 0 6px 24px rgba(255, 69, 0, 0.6);
    transform: translateY(-2px);
}

/* ===== SHOP PAGE ===== */
.shop-hero {
    height: 60vh;
    min-height: 400px;
}

.shop-content {
    padding: 3rem 0;
    background: var(--bg-light);
}

.shop-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    background: var(--bg-light);
    padding: 3rem 0;
    padding-top: 100px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ===== MODERN COLLECTION HERO ===== */
.collection-hero {
    position: relative;
    background: linear-gradient(135deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    padding: 8rem 0 6rem;
    margin-top: 70px;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.15) 0%, transparent 50%, rgba(227, 30, 36, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(255, 255, 255, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 40px, rgba(255, 255, 255, 0.03) 41px);
    pointer-events: none;
    z-index: 0;
}

.collection-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.collection-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(227, 30, 36, 0.1) 100%);
    border: 1px solid rgba(227, 30, 36, 0.4);
    border-radius: 50px;
    color: #E31E24;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.collection-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.collection-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.collection-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(227, 30, 36, 0.4);
    transform: translateY(-5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    border-radius: 12px;
    color: #ffffff;
    flex-shrink: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-text strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-sidebar {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-sidebar {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

/* ===== MODERN FILTERS SIDEBAR ===== */
.modern-filters {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.modern-filters:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filters-header h3 {
    font-size: 1.25rem;
}

.filters-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filters-title svg {
    color: #E31E24;
}

.filters-title h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.btn-text-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: #E31E24;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-text-modern:hover {
    background: rgba(227, 30, 36, 0.1);
}

.btn-text-modern svg {
    width: 16px;
    height: 16px;
}

.filter-group {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-dark);
}

.modern-filter-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.modern-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.filter-group-title svg {
    color: #E31E24;
    flex-shrink: 0;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-input {
    width: 80px;
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.price-range-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-input-modern {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.price-input-modern:focus {
    outline: none;
    border-color: #E31E24;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.price-separator {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.btn-apply-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(227, 30, 36, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-apply-modern:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #CC3700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.btn-apply-modern:active {
    transform: translateY(0);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    cursor: pointer;
}

.checkbox-label-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-label-modern:hover {
    background: #ffffff;
    border-color: rgba(227, 30, 36, 0.2);
}

.checkbox-label-modern input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #ffffff;
}

.checkbox-label-modern input[type="checkbox"]:checked ~ .checkbox-custom {
    background: linear-gradient(135deg, #E31E24 0%, #FF6B35 100%);
    border-color: #E31E24;
}

.checkbox-label-modern input[type="checkbox"]:checked ~ .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
    margin-top: -2px;
}

.checkbox-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-info-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(227, 30, 36, 0.02) 100%);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 16px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #E31E24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.info-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.shop-main {
    flex: 1;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    cursor: pointer;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-count {
    font-weight: 600;
    color: var(--text-dark);
}

.sort-select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    background: var(--white);
}

.pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.pagination-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-controls button {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-controls button:hover:not(.active) {
    background: var(--bg-light);
}

.pagination-controls button.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pagination-controls span {
    padding: 0.75rem;
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    padding: 3rem 0;
    margin-top: 70px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-gallery .main-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-gallery .main-image img {
    width: 100%;
    height: auto;
}

.product-info-detail h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-price-detail {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.variant-selector {
    margin-bottom: 2rem;
}

.variant-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.variant-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.product-actions {
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-selector input {
    width: 80px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 1rem;
}

.product-features {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.product-features h3 {
    margin-bottom: 1rem;
}

.product-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.related-products {
    padding: 5rem 0;
    background: var(--bg-light);
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* ===== CUSTOMIZE PAGE ===== */
.customize-hero {
    height: 50vh;
    min-height: 350px;
}

/* ===== HOW IT WORKS — 3-step cards ===== */
.process-section-v2 {
    padding: 6rem 0;
    background: #ffffff;
}
.psv2-header {
    text-align: center;
    margin-bottom: 4rem;
}
.psv2-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #E31E24;
    margin-bottom: 0.75rem;
}
.psv2-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.psv2-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}
.psv2-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.psv2-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.psv2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border-color: rgba(227,30,36,0.2);
}
.psv2-step-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #E31E24;
    background: rgba(227,30,36,0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.psv2-step-badge--cta {
    background: #E31E24;
    color: #ffffff;
}
.psv2-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(227,30,36,0.06);
    border-radius: 16px;
    color: #E31E24;
}
.psv2-icon-wrap--cta {
    background: #E31E24;
    color: #ffffff;
}
.psv2-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0,0,0,0.04);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.psv2-num--cta {
    color: rgba(227,30,36,0.08);
}
.psv2-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.psv2-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.psv2-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #E31E24;
    text-decoration: none;
    transition: gap 0.2s ease;
}
.psv2-link:hover {
    gap: 0.75rem;
    color: #cc1a1f;
}
.psv2-link--cta {
    background: #E31E24;
    color: #ffffff;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
}
.psv2-link--cta:hover {
    background: #cc1a1f;
    color: #ffffff;
}
.psv2-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
    color: #E31E24;
    opacity: 0.3;
}
@media (max-width: 768px) {
    .psv2-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    .psv2-connector {
        transform: rotate(90deg);
        width: auto;
        height: 30px;
    }
    .psv2-title {
        font-size: 2rem;
    }
    .process-section-v2 {
        padding: 4rem 0;
    }
}

.customizer-section {
    padding: 5rem 0;
    background: url('images/football-field-yard-lines.jpg') center center / cover no-repeat;
    position: relative;
}

.customizer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.customizer-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.customizer-intro h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customizer-intro p {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
}

.uniform-designer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 20px;
    position: relative;
}

.uniform-designer::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Unified Mannequin Container */
.uniform-mannequin-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.mannequin-display {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem 2rem;
    border: 2px solid #e8e8e8;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mannequin-display:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(227, 30, 36, 0.4);
}

/* Shadow behind uniform */
.uniform-shadow {
    position: absolute;
    width: 280px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.02) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(15px);
}

/* Jersey Container */
.jersey-container {
    position: relative;
    z-index: 3;
    width: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px;
}

.jersey-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: opacity 0.3s ease, transform 0.4s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Pants Container */
.pants-container {
    position: relative;
    z-index: 2;
    width: 260px;
    height: 280px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.pants-container img {
    width: 260px;
    height: 280px;
    object-fit: contain;
    object-position: top center;
    transition: opacity 0.3s ease, transform 0.4s ease;
    filter: brightness(0.97) contrast(0.95) saturate(0.93) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

/* Flag Preview Container */
.flag-preview-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-top: -10px;
    padding: 0.75rem 0;
}

.flag-preview-img {
    width: 202px;
    height: auto;
    border-radius: 6px;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

/* Upload Logos Section */
.upload-logos-section {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-upload-group {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.uniform-controls-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.color-selector {
    text-align: center;
}

.color-selector h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Control Sections — compact + transparent */
.control-section {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.control-section:hover {
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.25);
    background: rgba(255, 255, 255, 0.7);
}

.control-header {
    padding: 0.75rem 1.25rem;
    background: rgba(248, 249, 250, 0.5);
    border-bottom: 1px solid rgba(232, 232, 232, 0.5);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.control-header:hover {
    background: rgba(255, 255, 255, 0.6);
}

.control-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: 0.5px;
}

.toggle-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.toggle-icon.rotated {
    transform: rotate(180deg);
}

.control-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.25rem;
}

.control-content.active {
    max-height: 600px;
    padding: 1rem 1.25rem;
}

.control-group {
    margin-bottom: 0;
}

.control-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.color-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.color-btn.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.2);
    transform: scale(1.15);
}

.color-btn.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-weight: 900;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.selected-color {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    display: inline-block;
}

.selected-color span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Color Dropdown Styling */
.color-dropdown-wrapper {
    margin-bottom: 1.5rem;
}

.color-dropdown {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E31E24' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.color-dropdown:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.15);
}

.color-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(227, 30, 36, 0.1);
}

.color-dropdown option {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.customizer-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05) 0%, rgba(227, 30, 36, 0.02) 100%);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    border: 2px dashed rgba(227, 30, 36, 0.2);
    position: relative;
    z-index: 1;
}

.customizer-note {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.customizer-cta .btn-large {
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.3);
}

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

.customizer-placeholder {
    background: var(--bg-light);
    border: 2px dashed #ddd;
    border-radius: var(--border-radius);
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-state {
    text-align: center;
    max-width: 500px;
}

.loading-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.loading-state p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.bulk-order-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-column h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-column p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.contact-form-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.team-quote-form input,
.team-quote-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
}

.team-quote-form textarea {
    resize: vertical;
}

.sizing-guide {
    padding: 5rem 0;
    background: var(--bg-light);
}

.sizing-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.sizing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sizing-table {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.sizing-table h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.sizing-table table {
    width: 100%;
    border-collapse: collapse;
}

.sizing-table th,
.sizing-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.sizing-table th {
    background: var(--bg-light);
    font-weight: 600;
}

.inspiration-gallery {
    padding: 5rem 0;
}

.inspiration-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.inspiration-gallery > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
}

.gallery-caption h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.gallery-caption .btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.gallery-caption .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.gallery-caption .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

/* ===== SEARCH PAGE ===== */
.search-section {
    padding: 3rem 0;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

.search-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 20px;
}

.search-header h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.search-placeholder {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}

.search-placeholder svg {
    margin: 0 auto 1.5rem;
    opacity: 0.3;
}

.results-header h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.no-results {
    text-align: center;
    padding: 5rem 2rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-results a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ===== CART DRAWER ===== */
#cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    transition: right 0.3s ease;
    z-index: 2000;
}

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

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

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

.cart-drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

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

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

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.empty-cart {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.empty-cart p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.cart-item-details .variant-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item-details .price {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover {
    background: var(--bg-light);
}

.quantity-controls input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

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

.cart-footer {
    border-top: 1px solid #ddd;
    padding: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cart-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: bottom 0.3s ease;
    z-index: 3000;
}

.cart-notification.show {
    bottom: 2rem;
}

/* ===== PHOTO BANNER ===== */
.photo-banner {
    width: 100%;
    line-height: 0;
}
.photo-banner img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #0A0A0A;
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 69, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: #E31E24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* ===== PRODUCTS PAGE ===== */
.products-hero {
    height: 60vh;
    min-height: 400px;
}

.products-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.product-category {
    margin-bottom: 5rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.product-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.product-item .product-image {
    width: 100%;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--bg-light);
}

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

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

.product-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-item > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.product-price-range {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-benefits {
    padding: 5rem 0;
    background: var(--white);
}

.product-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.products-cta {
    padding: 5rem 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.products-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== APPAREL PRODUCTS SECTION ===== */
.apparel-products-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.apparel-hero {
    height: 60vh;
    min-height: 400px;
}

.product-category {
    margin-bottom: 6rem;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(231, 76, 60, 0.2);
}

.category-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== UNIFIED APPAREL SECTION ===== */
.apparel-unified-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.apparel-unified-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    padding: 3rem 2rem;
    background-image: url('images/flagfit-apparel-logo.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-blend-mode: overlay;
    opacity: 0.95;
}

.apparel-unified-section .section-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.apparel-unified-section .section-intro h2,
.apparel-unified-section .section-intro p {
    position: relative;
    z-index: 2;
}

.apparel-unified-section .section-intro h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apparel-unified-section .section-intro p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.apparel-unified-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== INNOVATIONS BEFORE/AFTER SECTION - LUXURY EDITION ===== */
.innovations-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0A0A0A 0%, #1a1a1a 50%, #0A0A0A 100%);
    position: relative;
    overflow: hidden;
}

.innovations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
}

.innovations-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E31E24 50%, transparent 100%);
}

.innovations-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.innovations-header h2 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Playfair Display', Georgia, serif;
    background: linear-gradient(135deg, #ffffff 0%, #E31E24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.innovations-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.innovation-comparison {
    margin-bottom: 8rem;
    position: relative;
    z-index: 2;
}

.innovation-comparison:last-child {
    margin-bottom: 0;
}

.innovation-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.innovation-number {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.2) 0%, rgba(227, 30, 36, 0.1) 100%);
    border: 2px solid rgba(227, 30, 36, 0.4);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 800;
    color: #E31E24;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.innovation-title h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.innovation-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.before-card {
    border-color: rgba(231, 76, 60, 0.3);
}

.before-card::before {
    background: linear-gradient(90deg, transparent 0%, #c0392b 50%, transparent 100%);
}

.before-card:hover {
    border-color: rgba(231, 76, 60, 0.6);
    background: rgba(192, 57, 43, 0.05);
    transform: translateY(-5px);
}

.before-card:hover::before {
    opacity: 1;
}

.after-card {
    border-color: rgba(39, 174, 96, 0.3);
}

.after-card::before {
    background: linear-gradient(90deg, transparent 0%, #27ae60 50%, transparent 100%);
}

.after-card:hover {
    border-color: rgba(39, 174, 96, 0.6);
    background: rgba(39, 174, 96, 0.05);
    transform: translateY(-5px);
}

.after-card:hover::before {
    opacity: 1;
}

.comparison-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.before-card .comparison-badge {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #ffffff;
}

.after-card .comparison-badge {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #ffffff;
}

.comparison-content {
    position: relative;
    z-index: 2;
}

.comparison-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-icon {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.2) 0%, rgba(192, 57, 43, 0.1) 100%);
    color: #e74c3c;
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.before-card:hover .problem-icon {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.3) 0%, rgba(192, 57, 43, 0.2) 100%);
    transform: rotate(-5deg) scale(1.05);
    border-color: rgba(231, 76, 60, 0.5);
}

.solution-icon {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.2) 0%, rgba(39, 174, 96, 0.1) 100%);
    color: #27ae60;
    border: 2px solid rgba(39, 174, 96, 0.3);
}

.after-card:hover .solution-icon {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.3) 0%, rgba(39, 174, 96, 0.2) 100%);
    transform: rotate(5deg) scale(1.05);
    border-color: rgba(39, 174, 96, 0.5);
}

.comparison-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    color: rgba(255, 255, 255, 1);
    padding-left: 0.5rem;
}

.comparison-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.before-card .comparison-list li svg {
    color: #e74c3c;
}

.after-card .comparison-list li svg {
    color: #27ae60;
}

/* ===== NAVBAR (Collection Pages) ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar .logo {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: none;
}

.navbar .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar .nav-links a,
.navbar .nav-links li > a {
    color: var(--text-dark);
    font-weight: 500;
    text-shadow: none;
}

.navbar .nav-links a:hover {
    color: var(--primary-color);
}

.navbar .mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.navbar .mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
    display: block;
}

.navbar .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .navbar .mobile-toggle {
        display: flex;
    }

    .navbar .nav-links {
        position: fixed;
        top: 64px;
        right: -320px;
        width: 320px;
        max-height: calc(100vh - 64px);
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 99;
        border-radius: 0 0 0 8px;
    }

    .navbar .nav-links.active {
        right: 0;
    }

    .navbar .nav-links > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar .nav-links > li > a,
    .navbar .nav-links > li > button {
        padding: 1.2rem 1.5rem;
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        text-shadow: none;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    /* Uniform Sets Tablet */
    .sets-packages {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .benefits-grid-sets {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -320px;
        width: 320px;
        max-height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 99;
        border-radius: 0 0 0 8px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links > li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links > li > a,
    .nav-links > li > button {
        padding: 1.2rem 1.5rem;
        display: block;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-dark);
        text-shadow: none;
    }

    .nav-links .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f9f9f9;
        margin: 0;
        padding: 0;
        visibility: visible;
        opacity: 1;
        display: none;
    }

    .nav-links .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-links .collection-list a {
        padding: 0.9rem 1.5rem 0.9rem 2.5rem;
        font-size: 0.95rem;
        font-weight: 400;
        color: #666;
    }

    .nav-links .collection-list a:hover {
        background: #f0f0f0;
        color: var(--text-dark);
        padding-left: 2.7rem;
    }

    /* Mobile overlay backdrop */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 98;
        animation: fadeIn 0.3s ease;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 0.5rem 0;
    }

    /* Hide Home link on mobile */
    .nav-links a[href="index.html"],
    .nav-links a[href="../index.html"] {
        display: none;
    }

    /* Collection Hero Mobile */
    .collection-hero {
        padding: 5rem 0 4rem;
    }

    .collection-title {
        font-size: 2.8rem;
    }

    .collection-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .collection-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1rem 1.5rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
    }

    .stat-text strong {
        font-size: 1.2rem;
    }

    .stat-text span {
        font-size: 0.75rem;
    }

    /* Modern Filters Mobile */
    .modern-filters {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .filters-title h3 {
        font-size: 1.2rem;
    }

    .filter-group-title {
        font-size: 1rem;
    }

    .price-inputs-modern {
        flex-direction: column;
        gap: 0.75rem;
    }

    .price-separator {
        display: none;
    }

    .btn-apply-modern {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .filter-info-card {
        padding: 1.25rem;
    }

    .info-icon {
        width: 36px;
        height: 36px;
    }

    /* Customize Page Mobile */
    .color-dropdown {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        padding-right: 2.75rem;
        background-size: 18px;
    }

    .customizer-intro h2 {
        font-size: 2.2rem;
    }

    .customizer-intro p {
        font-size: 1.1rem;
    }

    .uniform-designer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .uniform-mannequin-container {
        gap: 1.5rem;
    }

    .mannequin-display {
        min-height: 600px;
        padding: 2rem 1.5rem;
    }

    .pants-container {
        width: 218px;
        height: 235px;
    }

    .pants-container img {
        width: 218px;
        height: 235px;
    }

    .flag-preview-img {
        width: 169px;
    }

    .jersey-container {
        width: 210px;
        margin-bottom: -42px;
    }

    .upload-logos-section {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-upload-group {
        min-width: 100%;
    }

    .uniform-controls-right {
        gap: 1.5rem;
    }

    .control-header {
        padding: 1.25rem 1.5rem;
    }

    .control-header h3 {
        font-size: 1.1rem;
    }

    .control-content.active {
        padding: 1.5rem;
    }

    .uniform-preview {
        height: 300px;
    }

    .color-options {
        gap: 0.75rem;
    }

    .color-btn {
        width: 45px;
        height: 45px;
    }

    .customizer-cta {
        padding: 2rem 1.5rem;
    }

    .customizer-note {
        font-size: 1.1rem;
    }

    /* Performance Jerseys Showcase Mobile */
    .performance-jerseys-showcase {
        padding: 5rem 0;
    }
    
    .jerseys-header h2 {
        font-size: 2.5rem;
    }
    
    .jerseys-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .jerseys-image-side {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .jersey-image-secondary {
        display: none;
    }
    
    .jersey-feature-highlight {
        padding: 1.5rem;
    }
    
    .feature-highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-highlight-content h3 {
        font-size: 1.1rem;
    }
    
    .jersey-customization-note {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    /* Uniform Sets Showcase Mobile */
    .uniform-sets-showcase {
        padding: 5rem 0;
    }
    
    .sets-header h2 {
        font-size: 2.5rem;
    }
    
    .sets-hero-image {
        margin-bottom: 3rem;
        max-height: 300px;
    }
    
    .sets-badge-overlay {
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }
    
    .sets-packages {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .package-card h3 {
        font-size: 1.7rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .sets-benefits {
        padding: 2rem;
    }
    
    .sets-benefits h3 {
        font-size: 2rem;
    }
    
    .benefits-grid-sets {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sets-cta-banner {
        padding: 3rem 2rem;
    }
    
    .cta-banner-content h3 {
        font-size: 2rem;
    }
    
    .cta-banner-content p {
        font-size: 1.1rem;
    }
    
    /* Three Card Grid Tablet */
    .three-card-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Innovations Section Mobile */
    .innovations-section {
        padding: 5rem 0;
    }

    .innovations-header h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .innovations-header .section-subtitle {
        font-size: 1.1rem;
    }

    .innovation-comparison {
        margin-bottom: 5rem;
    }

    .innovation-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .innovation-title h3 {
        font-size: 2rem;
    }

    .innovation-title p {
        font-size: 1.1rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-card {
        padding: 2rem;
    }

    .comparison-badge {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .comparison-icon {
        width: 80px;
        height: 80px;
    }

    .comparison-content h4 {
        font-size: 1.3rem;
    }

    .comparison-list li {
        font-size: 0.95rem;
    }

    /* Flag Pants Showcase Mobile */
    .flag-pants-showcase {
        padding: 5rem 0;
    }
    
    .flag-pants-header h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .pants-image-hero {
        margin-bottom: 3rem;
    }
    
    .image-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pants-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .pants-features-carousel .feature-card {
        flex: 0 0 280px;
        width: 280px;
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 4 - 2.5rem * 4));
        }
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .pants-cta {
        padding: 2rem 1.5rem;
    }
    
    .pants-cta .btn-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .trust-label {
        font-size: 0.85rem;
    }
    
    /* Product Gallery Mobile */
    .product-gallery {
        padding: 4rem 0;
    }
    
    .gallery-header h2 {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 5rem 0;
    }

    .testimonials h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .testimonials > .container > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial img {
        height: 220px;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .testimonial-content p {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonial-content p::before {
        font-size: 3rem;
        top: -5px;
    }



    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-section.reverse .showcase-content {
        direction: ltr;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

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

    .content-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 0.4rem;
    }

    .newsletter h2 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .newsletter p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .newsletter-form input {
        padding: 1.25rem 1.5rem;
    }

    .newsletter-form button {
        padding: 1.25rem 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
        padding: 0;
    }

    /* Modern Cards Mobile */
    .modern-card .product-name-overlay {
        font-size: 0.85rem;
        padding: 8px 16px;
        bottom: 12px;
        left: 12px;
    }

    .card-icon-link {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .card-icon-link svg {
        width: 18px;
        height: 18px;
    }

    .modern-card .product-badge {
        top: 12px;
        right: 12px;
        font-size: 0.65rem;
        padding: 5px 12px;
    }

    .featured-section h2 {
        font-size: 2.2rem;
    }

    .featured-section .container > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-price {
        font-size: 1.7rem;
    }

    #cart-drawer {
        max-width: 100%;
    }

    .hero, .shop-hero, .customize-hero {
        height: 70vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    /* Collection Hero Small Mobile */
    .collection-hero {
        padding: 4rem 0 3rem;
    }

    .collection-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .collection-title {
        font-size: 2.2rem;
    }

    .collection-subtitle {
        font-size: 1rem;
    }

    .collection-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        padding: 1rem;
    }

    /* Modern Filters Small Mobile */
    .modern-filters {
        padding: 1.25rem;
    }

    .filters-title h3 {
        font-size: 1.1rem;
    }

    .filter-group-title {
        font-size: 0.95rem;
    }

    .filter-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    /* Customize Page Small Mobile */
    .customizer-section {
        padding: 3rem 0;
    }

    .customizer-intro h2 {
        font-size: 1.8rem;
    }

    .customizer-intro p {
        font-size: 1rem;
    }

    .uniform-designer {
        gap: 1.5rem;
    }

    .mannequin-display {
        min-height: 500px;
        padding: 1.5rem 1rem;
    }

    .pants-container {
        width: 180px;
        height: 195px;
    }

    .pants-container img {
        width: 180px;
        height: 195px;
    }

    .flag-preview-img {
        width: 140px;
    }

    .jersey-container {
        width: 175px;
        margin-bottom: -36px;
    }

    .uniform-shadow {
        width: 220px;
        height: 500px;
    }

    .control-header {
        padding: 1rem 1.25rem;
    }

    .control-header h3 {
        font-size: 1rem;
    }

    .control-content.active {
        padding: 1.25rem;
    }

    .control-group {
        margin-bottom: 1.5rem;
    }

    .color-selector h3 {
        font-size: 1.1rem;
    }

    .color-btn {
        width: 40px;
        height: 40px;
    }

    .color-btn.active::after {
        font-size: 1rem;
    }

    .selected-color {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .customizer-note {
        font-size: 1rem;
    }

    /* Performance Jerseys Showcase Small Mobile */
    .jerseys-header h2 {
        font-size: 2rem;
    }
    
    .image-badge-jersey {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .jersey-feature-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-highlight-icon {
        margin: 0 auto;
    }
    
    /* Uniform Sets Showcase Small Mobile */
    .sets-header h2 {
        font-size: 2rem;
    }
    
    .sets-badge-overlay {
        padding: 0.75rem 1.5rem;
        font-size: 1.2rem;
    }
    
    .package-card {
        padding: 2rem 1.5rem;
    }
    
    .package-card h3 {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .sets-benefits h3 {
        font-size: 1.7rem;
    }
    
    .benefit-icon-set {
        width: 70px;
        height: 70px;
    }
    
    .benefit-item-set h4 {
        font-size: 1.1rem;
    }
    
    .sets-cta-banner {
        padding: 2rem 1.5rem;
    }
    
    .cta-banner-content h3 {
        font-size: 1.7rem;
    }
    
    .cta-banner-content p {
        font-size: 1rem;
    }
    
    /* Innovations Section Small Mobile */
    .innovations-section {
        padding: 4rem 0;
    }

    .innovations-header h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .innovations-header .section-subtitle {
        font-size: 1rem;
    }

    .innovation-comparison {
        margin-bottom: 4rem;
    }

    .innovation-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .innovation-title h3 {
        font-size: 1.7rem;
    }

    .innovation-title p {
        font-size: 1rem;
    }

    .comparison-card {
        padding: 1.5rem;
    }

    .comparison-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .comparison-icon {
        width: 70px;
        height: 70px;
    }

    .comparison-icon svg {
        width: 50px;
        height: 50px;
    }

    .comparison-content h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .comparison-list li {
        font-size: 0.9rem;
        padding: 0.75rem 0;
    }

    /* Flag Pants Showcase Small Mobile */
    .flag-pants-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-number {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

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

    .newsletter {
        padding: 5rem 0;
    }

    .newsletter h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .newsletter p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Testimonials Small Mobile */
    .testimonials h2 {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .testimonials > .container > p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .testimonial img {
        height: 200px;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-content p {
        font-size: 0.95rem;
        padding-left: 1.2rem;
    }

    .testimonial-content p::before {
        font-size: 2.5rem;
    }

    .testimonial-author strong {
        font-size: 1.1rem;
    }

    .testimonial-author span {
        font-size: 0.9rem;
    }

    .newsletter-form {
        padding: 0.3rem;
    }

    .newsletter-form input {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .newsletter-form button {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Modern Cards Small Mobile */
    .modern-card {
        padding: 6px;
    }

    .modern-card .product-name-overlay {
        font-size: 0.8rem;
        padding: 7px 14px;
        bottom: 10px;
        left: 10px;
    }

    .card-icon-link {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
    }

    .card-icon-link svg {
        width: 16px;
        height: 16px;
    }

    .modern-card .product-badge {
        top: 10px;
        right: 10px;
        font-size: 0.6rem;
        padding: 4px 10px;
    }

    .featured-section {
        padding: 4rem 0;
    }

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

    .featured-section .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .product-info h3 {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .product-card .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UPLOAD LOGO SECTION ===== */
.upload-logo-section {
    margin-top: auto;
    text-align: center;
    padding-top: 1.5rem;
}

.upload-logo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #CC3700 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
    letter-spacing: 0.5px;
}

.upload-logo-btn:hover {
    background: linear-gradient(135deg, #CC3700 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.4);
}

.upload-logo-btn:active {
    transform: translateY(0);
}

.upload-logo-btn svg {
    flex-shrink: 0;
}

.logo-preview {
    margin-top: 1.5rem;
    position: relative;
    display: inline-block;
    max-width: 200px;
}

.logo-preview img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid #e8e8e8;
}

.remove-logo-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: var(--danger);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
    padding: 0;
}

.remove-logo-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.remove-logo-btn:active {
    transform: scale(0.95);
}

/* Mobile adjustments for upload logo */
@media (max-width: 768px) {
    .upload-logo-btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .upload-logo-btn svg {
        width: 18px;
        height: 18px;
    }

    .logo-preview {
        max-width: 150px;
    }

    .remove-logo-btn {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .upload-logo-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .logo-preview {
        max-width: 120px;
    }

    .remove-logo-btn {
        width: 26px;
        height: 26px;
        font-size: 1.2rem;
        top: -8px;
        right: -8px;
    }
}
