/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #000;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f0f0f0;
    padding: 8px 16px;
    border-radius: 50px;
    gap: 8px;
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 200px;
    display: block;
}

.search-box i {
    color: #666;
}

.action-icons {
    display: flex;
    gap: 20px;
}

.action-icons a {
    color: #333;
    font-size: 20px;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-menu.active li {
    margin: 10px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.hero-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid #000;
}

.btn-primary:hover {
    background: transparent;
    color: #000;
}

.stats-container {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Brands Section */
.brands-section {
    padding: 40px 0;
    background: #fff;
}

.brand-logos {
    display: flex;
    width: 90vw;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-logos img {
    height: 40px;
}

/* Section Common Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000;
}

.view-all {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.view-all:hover {
    gap: 12px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-to-cart {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .add-to-cart {
    opacity: 1;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff4444;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #FFD700;
}

.rating-value {
    color: #666;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

/* Sports Styles Section */
.sports-styles {
    padding: 80px 0;
    background: #f8f9fa;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.style-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.style-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.style-card:hover img {
    transform: scale(1.1);
}

.style-card h3 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    z-index: 2;
}

.style-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
}

.style-card.table-tennis {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.style-card.cricket {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.style-card.badminton {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.style-card.accessories {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.center {
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.reviewer {
    font-size: 20px;
    font-weight: 600;
    margin: 15px 0;
    color: #000;
}

.emoji {
    font-size: 18px;
}

.review-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #000;
    color: #fff;
    text-align: center;
}

.newsletter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
}

.btn-subscribe {
    background: #fff;
    color: #000;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.footer-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #000;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .styles-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }

    .style-card.table-tennis,
    .style-card.cricket,
    .style-card.badminton,
    .style-card.accessories {
        grid-column: auto;
        grid-row: auto;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero .container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image img {
        height: 400px;
    }

    .stats-container {
        justify-content: center;
    }

    .brand-logos {
        justify-content: center;
        gap: 20px;
    }

    .brand-logos img {
        height: 30px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-form input,
    .btn-subscribe {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .navbar {
        flex-direction: column;
        justify-content: center;
        padding: 5px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    #search-box {
        width: 150px;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-title {
        font-size: 28px;
    }
}

/* Shop Page Specific Styles */

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 10px;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-links a.active {
    color: #000;
    font-weight: 500;
}

.breadcrumb-links i {
    color: #999;
    font-size: 12px;
}

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
}

/* Shop Main Content */
.shop-main {
    flex: 1;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.product-count {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

/* Shop Products Grid */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Ensure shop product cards match main page */
.shop-products-grid .product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.shop-products-grid .product-image {
    height: 250px;
}

.shop-products-grid .add-to-cart {
    width: 80%;
}

/* Social Icons in Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive Design for Shop Page */
@media screen and (max-width: 1024px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .shop-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pagination {
        flex-direction: column;
        gap: 15px;
    }

    .pagination-numbers {
        order: 3;
    }

    .shop-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .shop-sidebar {
        padding: 20px;
    }

    .size-options {
        justify-content: center;
    }

    .color-options {
        justify-content: center;
    }

    .shop-products-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 28px;
    }
}

/* Category Banner */
.category-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 20px 0 40px;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.category-banner h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: inherit;
}

.category-banner p {
    font-size: 18px;
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

/* Loading State */
.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-products i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
}

.loading-products p {
    font-size: 18px;
    font-weight: 500;
}

/* Product Card Enhancements */
.product-card .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.product-card .product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Color option hover effects */
.color-option {
    transition: transform 0.3s, box-shadow 0.3s;
}

.color-option:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.shop-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.shop-sidebar h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

/* Responsive adjustments for category page */
@media screen and (max-width: 768px) {
    .category-banner {
        padding: 40px 0;
    }

    .category-banner h1 {
        font-size: 32px;
    }

    .category-banner p {
        font-size: 16px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 480px) {
    .category-banner h1 {
        font-size: 28px;
    }

    .banner-content {
        padding: 0 15px;
    }
}

/* Cart Styles */

/* Cart Icon with Counter */
.cart-icon-container {
    position: relative;
}

.cart-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff4444;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.active {
    right: 0;
}

/* Cart Header */
.cart-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-title i {
    color: #000;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    color: #000;
    background: #f5f5f5;
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    background: #fafafa;
    transition: transform 0.3s;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.cart-item-image {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
}

.cart-item-color,
.cart-item-size {
    font-size: 14px;
    color: #666;
    margin-bottom: 3px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-top: 10px;
}

/* Ensure price formatting works with INR */
.product-price,
.cart-item-price,
.subtotal-amount,
.current-price,
.original-price {
    font-family: 'Poppins', sans-serif;
}

/* Add this to ensure no currency symbols appear */
.product-price:before,
.cart-item-price:before,
.current-price:before,
.original-price:before,
.subtotal-amount:before {
    content: "" !important;
}

/* Ensure all price elements don't have pseudo-elements */
[class*="price"]:before,
[class*="Price"]:before {
    content: none !important;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0f0f0;
    border-radius: 25px;
    padding: 5px 15px;
}

.quantity-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #000;
    color: #fff;
}

.quantity {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4444;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s;
    margin-left: auto;
}

.remove-item:hover {
    background: #ff4444;
    color: white;
}

/* Cart Footer */
.cart-footer {
    padding: 25px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
}

.subtotal-label {
    color: #666;
}

.subtotal-amount {
    font-weight: 700;
    color: #000;
}

.shipping-info {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-view-cart,
.btn-checkout {
    padding: 15px;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: block;
}

.btn-view-cart {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-view-cart:hover {
    background: #000;
    color: #fff;
}

.btn-checkout {
    background: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-checkout:hover {
    background: #333;
    border-color: #333;
}

/* Empty Cart */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
    text-align: center;
}

.empty-cart-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.btn-start-shopping {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-start-shopping:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Cart Animation */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/* Responsive Cart */
@media screen and (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .cart-header {
        padding: 20px;
    }

    .cart-title {
        font-size: 20px;
    }

    .cart-item {
        padding: 10px;
    }

    .cart-item-image {
        width: 60px;
        height: 80px;
    }

    .cart-footer {
        padding: 20px;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    transform: translateX(0);
}

.cart-notification.error {
    background: #ff4444;
}

.cart-notification.warning {
    background: #ff9800;
}

.cart-notification .close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cart-notification.hiding {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Checkout Page Styles (for future use) */
.checkout-page {
    padding: 60px 0;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-summary {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #000;
    color: #000;
}

/* Checkout Cart Items */
.checkout-cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.checkout-cart-image {
    width: 80px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.checkout-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-cart-details {
    flex: 1;
}

.checkout-cart-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkout-cart-price {
    font-weight: 700;
    color: #000;
}

.checkout-cart-quantity {
    color: #666;
    font-size: 14px;
}

/* Add to existing mobile cart styles */
@media screen and (max-width: 576px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }

    .cart-item-actions {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ==================== */
/* SPORTS CATEGORIES PAGE */
/* ==================== */

/* Sports Categories Header */
.sports-categories-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-bottom: 40px;
}

.sports-categories-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.sports-categories-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Sport Sections */
.sport-section {
    margin-bottom: 60px;
}

.sport-section:last-child {
    margin-bottom: 40px;
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.sport-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.sport-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.view-all-sport {
    margin-left: auto;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 25px;
    transition: all 0.3s;
}

.view-all-sport:hover {
    background: #000;
    color: #fff;
    gap: 12px;
}

.sport-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.sport-banner {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.sport-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    padding: 40px;
}

.sport-banner-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.sport-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 500px;
}

/* Sport-specific colors */
.cricket-section .sport-icon {
    background: #ff6b6b;
}

.cricket-section .view-all-sport {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.cricket-section .view-all-sport:hover {
    background: #ff6b6b;
    color: white;
}

.football-section .sport-icon {
    background: #4CAF50;
}

.football-section .view-all-sport {
    border-color: #4CAF50;
    color: #4CAF50;
}

.football-section .view-all-sport:hover {
    background: #4CAF50;
    color: white;
}

.badminton-section .sport-icon {
    background: #2196F3;
}

.badminton-section .view-all-sport {
    border-color: #2196F3;
    color: #2196F3;
}

.badminton-section .view-all-sport:hover {
    background: #2196F3;
    color: white;
}

.basketball-section .sport-icon {
    background: #FF9800;
}

.basketball-section .view-all-sport {
    border-color: #FF9800;
    color: #FF9800;
}

.basketball-section .view-all-sport:hover {
    background: #FF9800;
    color: white;
}

/* Navigation Tabs */
.sports-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 40px;
    flex-wrap: wrap;
}

.sport-tab {
    padding: 12px 24px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sport-tab.active,
.sport-tab:hover {
    background: #000;
    color: white;
}

.sport-tab i {
    font-size: 18px;
}

/* Responsive Design for Sports Page */
@media screen and (max-width: 768px) {
    .sports-categories-header h1 {
        font-size: 36px;
    }

    .sport-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .view-all-sport {
        margin-left: 0;
        align-self: flex-start;
    }

    .sport-banner {
        height: 150px;
    }

    .sport-banner-overlay {
        padding: 20px;
    }

    .sport-banner-content h2 {
        font-size: 28px;
    }

    .sport-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .sports-nav {
        gap: 5px;
    }

    .sport-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .sports-categories-header h1 {
        font-size: 28px;
    }

    .sport-title {
        font-size: 24px;
    }

    .sport-products-grid {
        grid-template-columns: 1fr;
    }

    .sport-banner {
        height: 120px;
    }
}

/* ==================== */
/* ABOUT PAGE STYLES */
/* ==================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content */
.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid.reverse .about-text {
    order: 2;
}

.about-grid.reverse .about-image {
    order: 1;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mission & Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.value-card p {
    font-size: 14px;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #f8f9fa;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

/* Stats Section */
.stats-section {
    background: #000;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive Design for About Page */
@media screen and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse .about-text,
    .about-grid.reverse .about-image {
        order: 0;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-content {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 36px;
    }
}

/* Loading animation for products */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-products i {
    animation: spin 1s linear infinite;
}

/* Add more specific active state */
.nav-menu a.active {
    color: #000;
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.about-hero p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
}

.about-section {
    margin-bottom: 60px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mission & Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.value-card p {
    font-size: 14px;
    color: #666;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid #f8f9fa;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.team-member p {
    font-size: 14px;
    color: #666;
}

/* Stats Section */
.stats-section {
    background: #000;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media screen and (max-width: 576px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-content {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 36px;
    }
}

/* Sports Categories Specific Styles */
.sports-categories-header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin-bottom: 40px;
}

.sports-categories-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.sports-categories-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.sport-section {
    margin-bottom: 60px;
}

.sport-section:last-child {
    margin-bottom: 40px;
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.sport-icon {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.sport-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.view-all-sport {
    margin-left: auto;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 2px solid #000;
    border-radius: 25px;
    transition: all 0.3s;
}

.view-all-sport:hover {
    background: #000;
    color: #fff;
    gap: 12px;
}

.sport-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.sport-banner {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.sport-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), transparent);
    display: flex;
    align-items: center;
    padding: 40px;
}

.sport-banner-content h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 10px;
}

.sport-banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    max-width: 500px;
}

/* Sport-specific colors */
.cricket-section .sport-icon {
    background: #ff6b6b;
}

.cricket-section .view-all-sport {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.cricket-section .view-all-sport:hover {
    background: #ff6b6b;
    color: white;
}

.football-section .sport-icon {
    background: #4CAF50;
}

.football-section .view-all-sport {
    border-color: #4CAF50;
    color: #4CAF50;
}

.football-section .view-all-sport:hover {
    background: #4CAF50;
    color: white;
}

.badminton-section .sport-icon {
    background: #2196F3;
}

.badminton-section .view-all-sport {
    border-color: #2196F3;
    color: #2196F3;
}

.badminton-section .view-all-sport:hover {
    background: #2196F3;
    color: white;
}

.basketball-section .sport-icon {
    background: #FF9800;
}

.basketball-section .view-all-sport {
    border-color: #FF9800;
    color: #FF9800;
}

.basketball-section .view-all-sport:hover {
    background: #FF9800;
    color: white;
}

/* Navigation Tabs */
.sports-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0 40px;
    flex-wrap: wrap;
}

.sport-tab {
    padding: 12px 24px;
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sport-tab.active,
.sport-tab:hover {
    background: #000;
    color: white;
}

.sport-tab i {
    font-size: 18px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .sports-categories-header h1 {
        font-size: 36px;
    }

    .sport-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .view-all-sport {
        margin-left: 0;
        align-self: flex-start;
    }

    .sport-banner {
        height: 150px;
    }

    .sport-banner-overlay {
        padding: 20px;
    }

    .sport-banner-content h2 {
        font-size: 28px;
    }

    .sport-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .sports-nav {
        gap: 5px;
    }

    .sport-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .sports-categories-header h1 {
        font-size: 28px;
    }

    .sport-title {
        font-size: 24px;
    }

    .sport-products-grid {
        grid-template-columns: 1fr;
    }

    .sport-banner {
        height: 120px;
    }
}

/* Additional styles specific to top-selling page */
.top-selling-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff3e3e;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.sales-count {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.product-card {
    position: relative;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.stars {
    color: #FFD700;
}

.rating-value {
    font-weight: 500;
}

/* Highlight section for top 3 products */
.top-products-highlight {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.highlight-products {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-product {
    background: white;
    border-radius: 10px;
    padding: 15px;
    width: 280px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.highlight-product:hover {
    transform: translateY(-5px);
}

.rank-badge {
    background: #333;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
}

.rank-1 {
    background: #FFD700;
}

.rank-2 {
    background: #C0C0C0;
}

.rank-3 {
    background: #CD7F32;
}

@media screen and (max-width: 768px) {
    .highlight-products {
        flex-direction: column;
        align-items: center;
    }

    .highlight-product {
        width: 100%;
        max-width: 350px;
    }
}

/* Loading States */
.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-products i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
    animation: spin 1s linear infinite;
}

.loading-products p {
    font-size: 18px;
    font-weight: 500;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 18px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Update product grid for dynamic content */
.products-grid, 
.shop-products-grid, 
.sport-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Ensure product cards maintain consistent height */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-price {
    margin-top: auto;
}

/* Image error handling */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5f5f5;
    font-size: 0; /* Hide alt text if image fails */
}

/* Loading states */
.loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.loading-products i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Error state for images */
.product-card img:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #f5f5f5;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAwIiBoZWlnaHQ9IjMwMCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIGZpbGw9IiNGMEYwRjAiLz48cGF0aCBkPSJNMTUwIDgwQzExNi44NjMgODAgOTAgMTA2Ljg2MyA5MCAxNDBTMTE2Ljg2MyAyMDAgMTUwIDIwMFMyMTAgMTczLjEzNyAyMTAgMTQwUzE4My4xMzcgODAgMTUwIDgwek0yNDAgMjIwSDYwVjI0MEgyNDBWMjIwWiIgZmlsbD0iI0NDQyIvPjwvc3ZnPg==');
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
}

/* Make sure images don't break layout */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

/* Show More Button Styles */
.show-more-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin: 30px auto;
    transition: all 0.3s;
}

.show-more-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn i {
    transition: transform 0.3s;
}

.show-more-btn:hover i {
    transform: translateY(2px);
}

.show-more-btn .remaining-count {
    font-size: 14px;
    opacity: 0.8;
    font-weight: normal;
}

.show-more-btn:disabled {
    background: #28a745;
    cursor: default;
    transform: none;
}

.show-more-btn:disabled:hover {
    background: #28a745;
    transform: none;
}

/* Animation for newly added products */
.product-card {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles for Show More button */
@media screen and (max-width: 768px) {
    .show-more-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .show-more-btn .remaining-count {
        font-size: 12px;
    }
}

/* Sports Page Styles */
.sports-nav {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.sport-tab {
    padding: 12px 24px;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sport-tab:hover {
    background: #eee;
    transform: translateY(-2px);
}

.sport-tab.active {
    background: #000;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sport-section {
    margin-bottom: 60px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.sport-banner {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sport-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sport-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    padding: 40px;
}

.sport-banner-content {
    color: white;
    max-width: 500px;
}

.sport-banner-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.sport-banner-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

.sport-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.sport-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000, #333);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.sport-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.sport-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.no-products-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.no-products-message i {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 15px;
}

.no-products-message p {
    color: #666;
    margin-bottom: 5px;
}

.no-products-message .small-text {
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sport-banner {
        height: 200px;
    }
    
    .sport-banner-content h2 {
        font-size: 28px;
    }
    
    .sport-banner-overlay {
        padding: 20px;
    }
    
    .sport-title {
        font-size: 24px;
    }
    
    .sports-nav {
        gap: 8px;
    }
    
    .sport-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .sport-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .sport-products-grid {
        grid-template-columns: 1fr;
    }
    
    .sport-banner-content h2 {
        font-size: 24px;
    }
    
    .sport-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Auth Pages (Login/Signup) Styles */
.auth-page {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.auth-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.text-center { text-align: center; margin-bottom: 30px; color: #666; }

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.auth-form input, .auth-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: 0.3s;
}

.auth-form input:focus { border-color: #000; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-section-title {
    font-size: 16px;
    color: #000;
    margin: 25px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    border: none;
    cursor: pointer;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-footer a { color: #000; font-weight: 600; text-decoration: none; }
.auth-footer a:hover { text-decoration: underline; }

.message-box {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    display: none;
    font-size: 14px;
}
.message-box.success { background-color: #d4edda; color: #155724; display: block; }
.message-box.error { background-color: #f8d7da; color: #721c24; display: block; }

@media (max-width: 576px) {
    .auth-container { padding: 20px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================
   PROFILE DROPDOWN STYLES
========================================= */
.profile-dropdown-container {
    position: relative;
    display: inline-block;
}

.profile-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s;
    position: relative;
}

.profile-dropdown-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.profile-icon {
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s;
}

.logged-out .profile-dropdown-btn:hover .profile-icon {
    color: #000;
}

.logged-in .profile-dropdown-btn:hover .profile-icon {
    color: #28a745;
}

/* Green checkmark for logged in state */
.logged-in .profile-icon::before {
    content: "\f007";
}

/* Tooltip for logout state */
.profile-dropdown-btn[title] {
    position: relative;
}

.profile-dropdown-btn[title]::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1001;
}

.profile-dropdown-btn[title]:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Menu */
.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #eee;
}

.profile-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-welcome {
    padding: 12px 20px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
    margin-bottom: 0;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.profile-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.profile-dropdown li {
    margin: 0;
}

.profile-dropdown a,
.profile-dropdown button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.profile-dropdown a:hover,
.profile-dropdown button:hover {
    background: #f5f5f5;
    color: #000;
}

.dropdown-icon {
    margin-right: 12px;
    width: 16px;
    text-align: center;
    color: #666;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0;
}

/* Hide dropdown when logged out */
.logged-out .profile-dropdown {
    display: none !important;
}

/* Cursor pointer for clickable items */
.profile-dropdown-btn {
    cursor: pointer;
}

/* Make sure the icon inside is clickable */
.profile-dropdown-btn i {
    pointer-events: none;
}

/* Add to existing CSS in dashboard.html */
.btn-save i {
    margin-right: 8px;
}

.btn-save:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Add loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1s linear infinite;
}