/* ==========================================
   SPORT LANDING PAGES STYLES
   ========================================== */

/* ==========================================
   1. SPORT CATEGORIES GRID (Homepage)
   ========================================== */

.sport-categories-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.sport-categories-section .title-section {
    margin-bottom: 40px;
}

.sport-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.sport-category-card {
    position: relative;
    height: 320px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sport-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.sport-category-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.sport-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sport-category-card:hover img {
    transform: scale(1.1);
}

.sport-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    color: #fff;
}

.sport-category-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sport-category-card .tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
}

.sport-category-card:hover h3 {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* ==========================================
   2. SPORT DETAIL PAGE - HERO BANNER
   ========================================== */

.sport-hero-banner {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.sport-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sport-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.sport-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sport-hero-content .tagline {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.sport-hero-content .btn-customize {
    display: inline-block;
    padding: 15px 40px;
    background: #000000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.sport-hero-content .btn-customize:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   3. PRODUCT SHOWCASE GRID
   ========================================== */

.sport-product-showcase {
    padding: 80px 0;
    background: #fff;
}

.sport-product-showcase .title-section {
    margin-bottom: 50px;
}

.sport-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.sport-product-card {
    text-align: center;
    position: relative;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sport-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sport-product-card .product-image {
    position: relative;
    height: 280px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.sport-product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sport-product-card h4 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    background: #fff;
}

.sport-product-card .customize-link {
    display: block;
    padding: 15px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.sport-product-card .customize-link:hover {
    background: #1a1a1a;
}

/* ==========================================
   4. USP / BENEFITS SECTION
   ========================================== */

.sport-usp-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sport-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.sport-usp-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sport-usp-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sport-usp-item .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.sport-usp-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.sport-usp-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================
   5. TECHNICAL DETAILS SECTION
   ========================================== */

.sport-technical-section {
    padding: 80px 0;
    background: #fff;
}

.sport-tech-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 30px;
    border-bottom: 2px solid #e0e0e0;
}

.sport-tech-tabs .tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.sport-tech-tabs .tab-btn:hover {
    color: #000000;
}

.sport-tech-tabs .tab-btn.active {
    color: #000000;
}

.sport-tech-tabs .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #000000;
}

.sport-tech-content {
    padding: 40px 0;
}

.sport-tech-panel {
    display: none;
}

.sport-tech-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.sport-tech-panel h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sport-tech-panel ul {
    list-style: none;
    padding: 0;
}

.sport-tech-panel ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
}

.sport-tech-panel ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.size-chart-table th,
.size-chart-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.size-chart-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.size-chart-table tbody tr:hover {
    background: #f8f9fa;
}

/* ==========================================
   6. TESTIMONIALS SECTION
   ========================================== */

.sport-testimonials-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sport-testimonials-slider {
    max-width: 1000px;
    margin: 40px auto 0;
}

.sport-testimonial-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    margin: 0 15px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.testimonial-info h5 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
}

.testimonial-info .team-name {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

/* ==========================================
   7. GALLERY SECTION
   ========================================== */

.sport-gallery-section {
    padding: 80px 0;
    background: #fff;
}

.sport-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.sport-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.sport-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.sport-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.sport-gallery-item:hover::before {
    opacity: 1;
}

/* ==========================================
   8. VIDEO SECTION
   ========================================== */

.sport-video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.sport-video-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.sport-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sport-video-wrapper iframe,
.sport-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .sport-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .sport-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .sport-usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .sport-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sport-category-card {
        height: 250px;
    }
    
    .sport-category-card h3 {
        font-size: 18px;
    }
    
    .sport-category-card .tagline {
        font-size: 12px;
    }
    
    .sport-hero-banner {
        height: 400px;
    }
    
    .sport-hero-content h1 {
        font-size: 32px;
    }
    
    .sport-hero-content .tagline {
        font-size: 16px;
    }
    
    .sport-product-showcase,
    .sport-usp-section,
    .sport-technical-section,
    .sport-testimonials-section,
    .sport-gallery-section,
    .sport-video-section {
        padding: 50px 0;
    }
    
    .sport-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sport-product-card .product-image {
        height: 200px;
    }
    
    .sport-product-card h4 {
        font-size: 16px;
        padding: 15px;
    }
    
    .sport-usp-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .sport-tech-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sport-tech-tabs .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .sport-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .size-chart-table {
        font-size: 12px;
    }
    
    .size-chart-table th,
    .size-chart-table td {
        padding: 8px;
    }
}

/* Small mobile (max 480px) */
@media (max-width: 480px) {
    .sport-category-content {
        padding: 15px;
    }
    
    .sport-hero-content h1 {
        font-size: 28px;
    }
    
    .sport-hero-content .btn-customize {
        padding: 12px 30px;
        font-size: 14px;
    }
}
