/* ==========================================
   MODERN HEADER STYLES
   ========================================== */

:root {
    --primary-color: #6366f1;
    --primary-hover: #4f46e5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-overlay: rgba(0, 0, 0, 0.5);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Header */
.modern-header {
    position: sticky;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.modern-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.navbar-brand {
    flex-shrink: 0;
}

.logo-link {
    display: inline-block;
    transition: var(--transition);
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Desktop Navigation */
.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.current-menu-item {
    color: var(--primary-color);
}

.nav-links li a:hover::after,
.nav-links li a.current-menu-item::after {
    width: 100%;
}

/* Header Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-toggle-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.search-toggle-btn i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover .hamburger-line {
    background: var(--primary-color);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-overlay);
    z-index: 9999;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 85%;
    max-width: 400px;
    height: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.mobile-menu-content {
    margin-top: 4rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links li a {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.current-menu-item {
    background: #f3f4f6;
    color: var(--primary-color);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 90%;
    max-width: 700px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.search-close-btn:hover {
    background: #f3f4f6;
    color: var(--text-dark);
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-icon {
    color: var(--text-light);
    font-size: 1.25rem;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    color: var(--text-dark);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-light);
}

.search-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .search-toggle-btn .btn-text {
        display: none;
    }

    .search-toggle-btn {
        padding: 0.75rem;
        width: 45px;
        height: 45px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
    }

    .search-modal-content {
        padding: 1.5rem;
    }

    .search-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-submit-btn {
        width: 100%;
    }
}
/* ===== Modern Footer Styles ===== */

.site-footer {
    background: #0f0f11;
    color: #d9d9d9;
    padding-top: 60px;
    font-family: "Inter", sans-serif;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1c1c1e;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.3s ease;
}
.social-link:hover {
    background: #ff3d47;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li a {
    color: #c9c9c9;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    font-size: 15px;
    transition: 0.3s;
}

.footer-menu li a:hover {
    color: #ff3d47;
    padding-left: 5px;
}

/* Newsletter */
.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #3a3a3a;
    background: #1c1c1e;
    color: #fff;
}

.subscribe-form button {
    background: #ff3d47;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: #ff5a5a;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-list {
    display: flex;
    gap: 15px;
}

.payment-item img {
    height: 26px;
    filter: brightness(0.8);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-grid {
        flex-direction: column;
        gap: 15px;
    }
}
/* ===== Modern Homepage Banner (New Style) ===== */

.homepageBannerSec {
    position: relative;
    width: 100%;
}

.bannerSliderContentBox {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s ease;
    overflow: hidden;
}

.bannerSliderContentBox::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(24,24,24,0.3));
    z-index:1;
}

.innerContentCard {
    position: relative;
    background: rgba(255,255,255,0.08);
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: fadeIn 1.2s ease forwards;
}

.innerContentCard h1 {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.innerContentCard p {
    font-size: 20px;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.primarybtn-btn {
    display: inline-block;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    transition: 0.4s;
}

.primarybtn-btn:hover {
    transform: translateY(-4px);
    background: linear-gradient(90deg, #ff4b2b, #ff416c);
}

/* Fade-in animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.fadeInUp {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.fadeInUp.delay-1 { animation-delay: 0.3s; }
.fadeInUp.delay-2 { animation-delay: 0.6s; }

/* Swiper Pagination */
.mySwiperBanner .swiper-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mySwiperBanner .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #ffffff88;
    opacity: 1;
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.mySwiperBanner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 20px;
    background: #ff416c;
}

/* Responsive */
@media(max-width: 992px){
    .innerContentCard h1 { font-size: 45px; }
    .innerContentCard p { font-size: 18px; }
    .primarybtn-btn { padding: 15px 40px; font-size: 16px; }
}

@media(max-width: 600px){
    .innerContentCard h1 { font-size: 32px; }
    .innerContentCard p { font-size: 16px; }
    .primarybtn-btn { padding: 12px 28px; font-size: 14px; }
}
/* Football Products Section */
.footballProductsec {
    padding: 30px 0;
    background-color: #f9f9f9;
}

/* Section Heading */
.footballProductsec .headContent h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #222;
}

/* Horizontal Scrolling Container */
.footballProductsec .row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

/* Hide scrollbar for Webkit browsers */
.footballProductsec .row::-webkit-scrollbar {
    display: none;
}

/* Individual Product Card */
.footballProductsCard {
    flex: 0 0 auto; /* Keep cards inline and not shrink */
    width: 250px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover Effect */
.footballProductsCard:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Box */
.footballProductsCard .imgBox img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Title */
.footballProductsCard .title {
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Optional: continuous marquee effect */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footballProductsec .row.marquee {
    display: flex;
    gap: 20px;
    animation: scrollLeft 20s linear infinite;
}



