/* =========================================
   HOMEPAGE CONTENT
========================================= */
/* =========================================
   NATIVE HERO SLIDER (FULL IMAGE SIZE)
========================================= */
.native-hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.slide {
    min-width: 100%;
    position: relative;
    display: block; 
}

.slide a {
    display: block;
    width: 100%;
}

/* Forces the image to its exact proportions */
.slide picture,
.slide img {
    width: 100%;
    height: auto; 
    display: block;
}

/* Arrows */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}
.slider-btn:hover { 
    background: var(--brand-red); 
}
.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}
.dot.active { 
    background: var(--brand-red); 
}

/* =========================================
   GLOBAL BUTTONS
========================================= */
.btn-cta {
    display: inline-block;
    background-color: var(--brand-red);
    color: #fff;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}
.btn-cta:hover {
    background-color: var(--brand-dark-red);
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    background-color: #081221;
    color: #fff;
    padding: 8px 0;
    font-size: 0.8rem;
}
.trust-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.stars {
    color: #FFC107;
    margin: 0 10px;
}

/* Product Category Grid (6 in a row) */

.category-grid-section {

    padding: 80px 0 100px;

}

.section-heading {

    text-align: center;

    font-size: 2rem;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 40px;

    color: var(--brand-navy);

}

.grid-layout {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 20px;

}

.cat-card {

    background: #fff;

    border-radius: 12px;

    padding: 25px 15px;

    text-align: center;

    border: 1px solid #f0f0f0;

    box-shadow: 0 8px 20px rgba(0,0,0,0.03);

    transition: all 0.3s ease;

    position: relative;

    cursor: pointer;

}

.cat-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 12px 25px rgba(0,0,0,0.08);

    border-color: transparent;

}

.cat-image {
    width: 140px; /* Made the container bigger (was 100px) */
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; 
    /* Deleted the circle background, border-radius, and font colors from here */
}

.cat-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.cat-card:hover .cat-image {
    transform: scale(1.05); /* Keeps the cool zoom effect! */
    /* Deleted the red color change since these are real pictures now */
}

.cat-title {

    font-size: 0.95rem;

    font-weight: 700;

    color: var(--text-main);

    text-transform: uppercase;

}



/* Responsive Breakpoints for Grid */

@media (max-width: 1200px) {

    .grid-layout { grid-template-columns: repeat(4, 1fr); }

}

@media (max-width: 900px) {

    .grid-layout { grid-template-columns: repeat(3, 1fr); }

}


/* =========================================
   MOBILE RESPONSIVENESS FIXES
========================================= */
@media (max-width: 768px) {
    /* 1. Stack the Promo Bar */
    .promo-container {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .promo-text {
        font-size: 0.75rem;
    }
    
    /* 2. Restructure the Main Header */
    .header-content {
        flex-wrap: wrap; /* Allows elements to break to a new line */
        gap: 15px;
    }
    
    /* Shrink the logo slightly so it fits */
    .logo-placeholder {
        font-size: 1.8rem;
        flex-grow: 1; /* Pushes the cart/phone icons to the right edge */
    }

    /* 3. Drop Search Bar to its own row at the bottom */
    .search-bar {
        width: 100%;
        order: 3; /* Forces the search bar below the logo and icons */
    }

    /* 4. Clean up Header Actions (Icons Only) */
    .header-actions {
        gap: 20px;
    }
    
    /* Hide the bulky text for the phone number */
    .action-item div {
        display: none !important; 
    }
    
    /* Hide the word "Cart" but keep the icon */
    .action-item {
        font-size: 0 !important; 
    }
    
    /* Ensure the icons stay large and clickable */
    .action-item i {
        font-size: 1.4rem !important;
        color: var(--brand-navy);
    }
}

/* =========================================
   THE PROCESS SECTION
========================================= */
.process-section {
    padding: 80px 0 100px;
    background-color: #fff;
    border-top: 1px solid var(--border-color);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.process-step {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}
.step-icon {
    font-size: 3rem;
    color: var(--brand-red);
    margin-bottom: 20px;
}
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-navy);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid #fff;
}
.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 15px;
}
.process-step p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* =========================================
   THE ADVANTAGE SPLIT SECTION
========================================= */
.advantage-section {
    display: flex;
    min-height: 600px;
    background-color: var(--brand-navy);
    color: #fff;
}
.advantage-image {
    flex: 1;
    /* Placeholder dark background until you upload an athlete photo */
    background: linear-gradient(135deg, #1a2a40 0%, #050e1d 100%); 
    position: relative;
    background-size: cover;
    background-position: center;
}
.image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 14, 29, 0.4);
}
.advantage-content {
    flex: 1;
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.advantage-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}
.advantage-title span {
    color: var(--brand-red);
}
.advantage-desc {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}
.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}
.advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.advantage-list li i {
    font-size: 1.8rem;
    color: var(--brand-red);
    margin-top: 5px;
}
.advantage-list li strong {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}
.advantage-list li span {
    color: #a0aec0;
    font-size: 1rem;
}

/* --- Mobile Breakpoints for New Sections --- */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: 1fr; gap: 60px; }
    .advantage-section { flex-direction: column; }
    .advantage-image { min-height: 300px; }
    .advantage-content { padding: 60px 20px; text-align: center; }
    .advantage-list li { flex-direction: column; align-items: center; text-align: center; }
    .advantage-desc { margin: 0 auto 40px; }
}

/* =========================================
   CUSTOMER FAVORITES (PRODUCTS)
========================================= */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 in a line on desktop */
    gap: 15px; 
}
.product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px 10px; 
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column; /* Keeps content aligned */
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: transparent;
}
.badge-rush {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #FFF0F0;
    color: var(--brand-red);
    font-size: 0.65rem; 
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.product-image {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px; /* Pushes image down so badge doesn't cover it */
}
/* This !important completely stops the image from overlapping the text */
.product-image img {
    width: 100% !important;
    height: auto !important; 
    max-height: 140px !important; 
    object-fit: contain !important;
}
.product-title {
    font-family: var(--font-heading);
    font-size: 1rem; 
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 8px;
    margin-top: auto; /* Pushes text to the bottom evenly */
}
.product-reviews {
    color: #FFC107;
    font-size: 0.75rem;
    margin-bottom: 10px;
}
.product-reviews span {
    color: var(--text-light);
    margin-left: 3px;
}
.product-price {
    font-weight: 700;
    color: var(--brand-red);
    font-size: 1rem;
    margin-bottom: 15px;
}
.btn-outline {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem; 
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s;
}
.product-card:hover .btn-outline {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #fff;
}

/* =========================================
   ELITE TRUST BADGES
========================================= */
.elite-trust-section {
    background-color: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.trust-feature i {
    font-size: 2.5rem;
    color: var(--brand-navy);
    margin-bottom: 15px;
    transition: transform 0.3s;
}
.trust-feature:hover i {
    transform: scale(1.1) translateY(-5px);
    color: var(--brand-red);
}
.trust-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--brand-navy);
}
.trust-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================================
   CUSTOMER REVIEWS (SLIDER)
========================================= */
.reviews-section {
    background-color: var(--bg-light);
    padding: 80px 0 100px;
}
.reviews-section .section-heading {
    color: var(--brand-navy) !important;
    text-align: center;
    margin-bottom: 40px;
}

/* The Horizontal Slider */
.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 25px; /* Creates space for the scrollbar */
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Custom scrollbar colors for Firefox */
    scrollbar-color: #A0AEC0 #E2E8F0;
    scrollbar-width: thin;
}

/* Custom Webkit Scrollbar (Chrome, Safari, Edge) */
.reviews-slider::-webkit-scrollbar {
    height: 10px;
}
.reviews-slider::-webkit-scrollbar-track {
    background: #E2E8F0;
    border-radius: 10px;
}
.reviews-slider::-webkit-scrollbar-thumb {
    background: #A0AEC0;
    border-radius: 10px;
}
.reviews-slider::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* The Dark Grey Review Box */
.review-card {
    background-color: #4A5568; /* Professional dark slate grey */
    flex: 0 0 200px; /* Forces cards to stay fixed width and slide */
    scroll-snap-align: start; /* Snaps cards into place when scrolling */
    border-radius: 8px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers everything */
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Avatar Styling - SCALED DOWN */
.author-avatar {
    width: 30px; /* Smaller circle */
    height: 30px; /* Smaller circle */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
}

/* The Little Orange Star Badge - SCALED DOWN */
.author-avatar::after {
    content: '\f005'; 
    font-family: 'FontAwesome';
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #DD6B20;
    color: #fff;
    font-size: 0.45rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4A5568; 
}

/* Text Styling Inside Box - SCALED DOWN */
.author-info { margin-bottom: 8px; }
.author-info strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.9rem; /* Smaller name */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.author-info span {
    color: #CBD5E0; 
    font-size: 0.5rem; /* Smaller date */
}

.review-stars {
    color: #F6E05E; 
    margin-bottom: 5px;
    font-size: 0.6rem; /* Smaller stars */
}

.review-text {
    color: #F7FAFC; 
    font-size: 0.7rem; /* Smaller paragraph text */
    line-height: 1.5;
    margin-bottom: 6px;
    flex-grow: 1;
}

/* Read More Link */
.read-more {
    color: #F6E05E; 
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}
.read-more:hover {
    opacity: 0.8;
}

/* =========================================
   PREMIUM SOCIAL PROOF SECTION (HOMEPAGE)
========================================= */
.sp-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

/* High-End Section Headers */
.sp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #02060C;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.sp-header::before, .sp-header::after {
    content: "";
    height: 3px;
    width: 40px;
    background-color: #D32F2F;
}

/* Marquee Containers */
.sp-marquee {
    width: 100vw;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.sp-track {
    display: flex;
    width: max-content;
    gap: 30px;
    padding: 10px 0;
    animation: sp-scroll-left 50s linear infinite;
}

.sp-track.reverse {
    animation: sp-scroll-right 50s linear infinite;
}

.sp-track:hover {
    animation-play-state: paused;
}

/* 1. Small Premium Customer Cards */
.sp-customer-card {
    position: relative;
    width: 200px; /* Small Thumbnail Width */
    height: 130px; /* Small Thumbnail Height */
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: #000;
}

.sp-customer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.sp-customer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.sp-customer-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* 2. Structured Trust Badges */
.sp-badges-wrapper {
    background-color: #F8FAFC;
    padding: 80px 0;
    margin: 80px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.sp-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sp-badge {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.sp-badge-icon {
    background: #fff;
    width: 65px;
    height: 65px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    flex-shrink: 0;
    border: 1px solid #F1F5F9;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.sp-badge:hover .sp-badge-icon {
    transform: translateY(-5px);
    border-color: #D32F2F;
}

.sp-badge-icon i {
    font-size: 1.8rem;
    color: #D32F2F;
}

.sp-badge-text h4 {
    margin: 0 0 8px 0;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #02060C;
    letter-spacing: 0.5px;
}

.sp-badge-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* 3. Clean Brand Marquee */
.sp-brand {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #CBD5E1;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sp-brand:hover {
    color: #02060C;
}

.sp-brand i {
    color: #D32F2F;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.sp-brand:hover i {
    opacity: 1;
    transform: scale(1);
}

/* Animations */
@keyframes sp-scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}
@keyframes sp-scroll-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); } 
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .sp-badges-grid { grid-template-columns: repeat(2, 1fr); }
    /* 3 columns for sports on iPad */
    .category-grid-section .grid-layout { grid-template-columns: repeat(3, 1fr); }
    
}

@media (max-width: 768px) {
    .sp-header { font-size: 1.3rem; }
    .sp-header::before, .sp-header::after { width: 20px; }
    .sp-badges-grid { grid-template-columns: 1fr; gap: 30px; }
    .sp-badge { align-items: center; }
    .sp-customer-card { width: 160px; height: 105px; } /* Small on mobile */
    .sp-brand { font-size: 1.2rem; padding: 0 15px; }
}

/* Mobile Breakpoint - COMPACT */
@media (max-width: 600px) {
    .review-card {
        flex: 0 0 250px; /* Snaps perfectly on phone screens */
        padding: 20px 15px;
    }
    /* 2 columns for sports on phones */
    .category-grid-section .grid-layout { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
    .cat-card { padding: 15px 10px; }
    .cat-image { 
        width: 100px; /* Shrinks the 140px images down for mobile */
        margin: 0 auto 10px; 
    }
} /* <--- THIS BRACKET WAS MISSING! It closes the 600px rule above. */

/* =========================================
   GLOBAL MOBILE RESPONSIVENESS FIXES
========================================= */

/* --- TABLET SCREENS (Under 1024px) --- */
@media (max-width: 1024px) {
    .process-grid { grid-template-columns: 1fr; gap: 40px; }
    .advantage-section { flex-direction: column; }
    .advantage-image { min-height: 350px; }
    .advantage-content { padding: 60px 20px; text-align: center; }
    .advantage-list li { flex-direction: column; align-items: center; text-align: center; }
    .advantage-desc { margin: 0 auto 30px; }
    
    /* 3 columns on iPad */
    .favorites-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .trust-features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- MOBILE PHONES (Under 768px) --- */
@media (max-width: 768px) {
    .slider-btn { display: none; } /* Hides arrows on phone */
    .slide { background-image: var(--bg-mobile); } /* SWAPS TO MOBILE IMAGE */
    .hero-subtitle { font-size: 1.1rem; }
    
    .trust-container { flex-direction: column; gap: 4px; text-align: center; }
    .elite-trust-section { padding: 40px 0; }
    .trust-features-grid { grid-template-columns: 1fr; gap: 35px; }
    .section-heading { font-size: 2.2rem; margin-bottom: 30px; }
    
    /* Forces EXACTLY 2 columns on mobile */
    .favorites-section { padding: 30px 0; }
    .favorites-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px; 
    }
    
    /* Shrinks the card content so 2 columns fit perfectly without overlapping */
    .product-card { padding: 15px 8px; }
    .product-title { font-size: 0.8rem; }
    .product-price { font-size: 0.85rem; }
    .btn-outline { font-size: 0.7rem; padding: 8px 0; }
    .product-image img { max-height: 100px !important; }
    .badge-rush { font-size: 0.55rem; padding: 3px 6px; top: 5px; left: 5px; }
}

/* --- SMALL PHONES (Under 480px) --- */
@media (max-width: 480px) {
    .hero-title { font-size: 2.3rem; }
    .advantage-title { font-size: 2.5rem; }
    
    /* We DO NOT change the grid here. It inherits the 2-columns from the 768px rule above! */
    .product-image img { max-height: 85px !important; } /* Shrinks image a bit more for tiny screens */
}