/* Global Styles */
:root {
    --primary-color: #2196f3;
    --secondary-color: #1976d2;
    --background-color: #f5f5f5;
    --text-color: #333;
    --shadow: 0 2px 5px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: rgb(93, 94, 95);
    
}

/* Header Styles */
header {
    background:#ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: transform 0.3s;
}

header.hide {
    transform: translateY(-100%);
}

.desktop-nav {
    max-width: 1200px;
    margin: 0 auto;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo h1:hover::after {
    transform: scaleX(1);
}

.search-bar {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.8rem 3rem 0.8rem 1.2rem;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #f8f9fa;
}

.search-bar input:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
    outline: none;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.search-bar button:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 25px;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: 0px;
    right: 5px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    min-width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(255, 68, 68, 0.3);
    animation: bounce 0.3s ease-out;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem 0.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.mobile-nav {
    display: none;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    position: relative;
    
    transition: all 0.3s;
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    transition: transform 0.3s;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active i {
    transform: translateY(-2px);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    
    border-radius: 3px;
    transition: width 0.3s;
}

.nav-item.active::after {
    width: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    background: url('') center/cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-btn.primary {
    background: var(--primary-color);
    color: white;
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Categories Section */
.categories {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.categories h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.categories h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.category-grid {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    position: relative;
    scroll-snap-type: x mandatory;
}

.category-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-card {
    flex: 0 0 auto;
    width: 230px;
    scroll-snap-align: start;
    background: white;
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-color);
    padding: 0 1rem;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.category-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Category scroll indicators */
.categories {
    position: relative;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    ;
}

.categories::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
    pointer-events: none;
    z-index: 1;
}

.categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100px;
    background: linear-gradient(to left, transparent, rgba(255,255,255,0.9));
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .category-grid {
        gap: 1rem;
        padding: 0.5rem;
    }

    .category-card {
        width: 200px;
        padding: 1.5rem;
    }

    .category-image {
        width: 60px;
        height: 60px;
    }

    .categories::after,
    .categories::before {
        width: 50px;
    }
}

/* Products Grid */
.products-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s;
}

.products-section.active {
    opacity: 1;
    transform: translateY(0);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-btn {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cart-btn:not(.in-cart) {
    background: var(--primary-color);
    color: white;
}

.cart-btn.in-cart {
    background: #ff4444;
    color: white;
}

.cart-btn:hover {
    transform: translateY(-2px);
}

.cart-btn i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }

    .desktop-nav {
        padding: 0.8rem 1rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .nav-links {
        display: none;
    }

    .search-bar {
        max-width: none;
    }

    .search-bar input {
        padding: 0.6rem 2.5rem 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .search-bar button {
        padding: 0.6rem;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .categories {
        padding: 2rem 0;
    }

    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 0rem;
        gap: 2rem;
        margin: 0 -1rem;
    }

    .category-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        flex: 0 0 auto;
        width: 330px;
        scroll-snap-align: start;
        padding: 1.5rem;
        
        animation: slideInRight 0.5s ease-out forwards;
        opacity: 0;
        transform: translateX(50px);
    }

    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .category-image {
        width: 100px;
        height: 100px;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    .category-card p {
        font-size: 0.85rem;
    }

    .category-arrow {
        font-size: 1.2rem;
        margin-top: 0.5rem;
    }

    /* Scroll Indicators */
    .categories::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.9));
        pointer-events: none;
        border-radius: 20px 0 0 20px;
        opacity: 0.8;
    }

    .categories::before {
        content: '→';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--primary-color);
        font-size: 1.5rem;
        animation: bounceRight 1s infinite;
        pointer-events: none;
        z-index: 1;
    }

    @keyframes bounceRight {
        0%, 100% { transform: translateY(-50%) translateX(0); }
        50% { transform: translateY(-50%) translateX(5px); }
    }

    .footer {
        padding: 2rem 1rem 5rem;
        margin-top: 2rem;
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Mobile App Style Enhancements */
    .auth-container,
    .cart-container,
    .checkout-container {
        padding: 1rem;
        min-height: calc(100vh - 80px);
    }

    .product-card,
    .category-card,
    .cart-item {
        background: white;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .product-card:active,
    .category-card:active {
        transform: scale(0.98);
    }

    /* Pull to refresh animation */
    .content-wrapper {
        position: relative;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pull-to-refresh {
        position: absolute;
        top: -50px;
        left: 0;
        right: 0;
        text-align: center;
        padding: 10px;
    }

    /* Bottom Sheet Style for Modals */
    .mobile-modal {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 1.5rem;
        transform: translateY(100%);
        transition: transform 0.3s;
        z-index: 1000;
    }

    .mobile-modal.active {
        transform: translateY(0);
    }

    /* Mobile Search Bar */
    .search-bar {
        position: relative;
        margin: 0.5rem 1rem;
    }

    .search-bar input {
        width: 700%;
        padding: 0.8rem 1rem;
        border: none;
        border-radius: 25px;
        background: #f5f5f5;
        font-size: 1rem;
    }

    .search-bar button {
        position: absolute;
        right: -248px;
        top: 53%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #666;
        padding: 0.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .add-to-cart-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .products-section {
        padding: 1rem;
        margin: 0;
        transition: all 0.3s ease;
    }

    .products-section.active {
        opacity: 1;
        transform: translateY(0);
    }

    .products-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1rem;
    }

    .product-card {
        margin-bottom: 1rem;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }

    .product-description {
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .see-more-btn {
        width: 100%;
        margin: 1rem auto;
        padding: 0.8rem;
        font-size: 0.95rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .see-more-btn i {
        font-size: 1.1rem;
    }

    .see-more-btn:active {
        transform: scale(0.98);
    }

    .see-more-container {
        padding: 0 1rem;
        margin-top: 1rem;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.featured-products h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.featured-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.featured-title-wrapper {
    flex: 1;
}

.featured-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-align: center;
}

.see-more-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
}

.see-more-btn i {
    transition: transform 0.3s;
}

.see-more-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    color: var (--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.product-price .currency {
    font-size: 0.8rem;
    margin-right: 0.2rem;
}

.add-to-cart-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart-btn i {
    font-size: 1.1rem;
}

.add-to-cart-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design for Featured Products */
@media (max-width: 768px) {
    .featured-products {
        padding: 1rem;
        margin-top: 1rem;
    }

    .featured-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .featured-title-wrapper h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .featured-subtitle {
        font-size: 0.9rem;
        color: #666;
        padding: 0 1rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .product-card {
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-title {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .product-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .product-price {
        font-size: 1.1rem;
        text-align: center;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .see-more-btn {
        width: calc(100% - 2rem);
        margin: 1rem auto;
        padding: 0.8rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .product-badge {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* Category scroll buttons */
.categories-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 0 -16px;
    padding: 0;
}

/* Remove scroll button styles */
.scroll-btn {
    display: none;
}

/* See More button styling */
.see-more-container {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.see-more-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.see-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .scroll-btn {
        width: 35px;
        height: 35px;
        display: none;
    }

    .categories-wrapper {
        padding: 0 2.5rem;
    }

    .see-more-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Category count badge */
.category-count {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    transform: scale(1.1);
    background: var(--secondary-color);
}

/* Filter section */
.filter-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.filter-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sort-controls {
    display: flex;
    justify-content: flex-end;
}

.sort-select {
    padding: 0.8rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--text-color);
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.sort-select:hover {
    border-color: var(--primary-color);
}

/* Price Filter Styles */
.price-filter {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.price-filter h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-input span {
    color: var(--text-color);
    font-weight: 600;
}

.price-input input {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var (--text-color);
}

.price-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.price-slider {
    flex: 1;
    height: 5px;
    position: relative;
    background: #eee;
    border-radius: 5px;
}

.slider-track {
    position: absolute;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    border-radius: 5px;
}

.price-slider input[type="range"] {
    -webkit-appearance: none;
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
}

.price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-slider input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.price-slider input[type="range"]::-moz-range-thumb {
    height: 18px;
    width: 18px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-slider input[type="range"]::-moz-range-thumb:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 768px) {
    .price-inputs {
        flex-direction: column;
        gap: 1rem;
    }

    .price-input {
        width: 100%;
        justify-content: center;
    }

    .price-input input {
        width: 100%;
        max-width: 120px;
    }

    .price-slider {
        margin: 1rem 0;
    }

    .sort-controls {
        justify-content: stretch;
    }

    .sort-select {
        width: 100%;
    }
}

/* Orders Section */
.orders-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

.orders-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.orders-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.orders-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.order-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.order-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-id {
    font-weight: 600;
    color: var(--text-color);
}

.order-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-status.pending {
    background: #fff3cd;
    color: #856404;
}

.order-status.processing {
    background: #cce5ff;
    color: #004085;
}

.order-status.completed {
    background: #d4edda;
    color: #155724;
}

.order-items {
    padding: 1.5rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.order-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.order-footer {
    padding: 1.5rem;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-date {
    color: #666;
    font-size: 0.9rem;
}

.order-total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.no-orders {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.no-orders i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-orders p {
    color: #666;
    margin-bottom: 1.5rem;
}

.start-shopping-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.start-shopping-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Update mobile navigation styles */
@media (max-width: 768px) {
    .orders-section {
        padding: 1rem;
    }

    .orders-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-header {
        padding: 1rem;
    }

    .order-items {
        padding: 1rem;
    }

    .order-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .mobile-nav .nav-item i {
        font-size: 1.5rem;
    }

    .mobile-nav .nav-item span {
        font-size: 0.8rem;
        height: 20px;
        width: 20px;
    }

    .mobile-nav .nav-item.active i {
        color: var(--primary-color);
        transform: translateY(-2px);
    }
}

/* Cart Section */
.cart-section {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.5s ease-out;
}

.cart-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
}

.cart-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.cart-items {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.cart-item {
    display: flex;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    gap: 1.5rem;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cart-item-controls button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-controls button:hover {
    background: var(--primary-color);
    color: white;
}

.cart-item-controls .remove-btn {
    color: #ff4444;
    margin-left: auto;
}

.cart-item-controls .remove-btn:hover {
    background: #ff4444;
    color: white;
}

.cart-summary {
    padding: 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.empty-cart {
    text-align: center;
    padding: 3rem;
}

.empty-cart i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.empty-cart p {
    color: #666;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .cart-section {
        padding: 1rem;
    }

    .cart-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .cart-item-image {
        width: 120px;
        height: 120px;
    }

    .cart-item-controls {
        justify-content: center;
    }

    .cart-item-controls .remove-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .cart-summary {
        padding: 1rem;
    }
}

/* Product Detail Modal */
.product-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-detail-modal.active {
    opacity: 1;
}

.product-detail-content {
    background: white;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 20px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
}

.product-detail-images {
    width: 100%;
    margin: 0;
    position: relative;
    background: #f8f9fa;
    height: 90vh;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-detail-right {
    padding: 2rem;
    overflow-y: auto;
    position: relative;
    height: 90vh;
}

.product-detail-info h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--text-color);
}

.product-price-detail {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price-detail .currency {
    font-size: 1.5rem;
}

.product-actions {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.quantity-selector {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

quantity-selector input {
    width: 60px;
    text-align: center;
    font-size: 1.1rem;
    border: none;
    background: none;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f5f5f5;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.buy-now-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-now-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.add-to-cart-detail {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart-detail:hover {
    background: var(--primary-color);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        height: 100vh;
        border-radius: 0;
    }

    .product-detail-images {
        height: 40vh;
    }

    .product-detail-right {
        height: 60vh;
        padding: 1.5rem;
    }

    .product-detail-info h2 {
        font-size: 1.5rem;
    }

    .product-price-detail {
        font-size: 2rem;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .quantity-selector {
        justify-content: center;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    z-index: 1;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.product-detail-images {
    width: 100%;
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.product-detail-info {
    margin-bottom: 2rem;
}

.product-detail-info h2 {
    font-size: 1.8rem;
    margin: 0.5rem 0;
    color: var(--text-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.stars {
    color: #ffc107;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.product-detail-desc {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 8px;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    background: none;
    font-size: 1rem;
    color: var(--text-color);
}

.qty-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s;
}

.qty-btn:hover {
    color: var(--primary-color);
}

.product-reviews {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-reviews h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.review-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.reviewer {
    font-weight: 600;
    color: var(--text-color);
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-comment {
    color: #666;
    line-height: 1.5;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .product-detail-content {
        padding: 1rem;
        width: 95%;
        border-radius: 15px;
    }

    .main-image {
        height: 250px;
    }

    .product-detail-info h2 {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .quantity-selector {
        width: 100%;
        justify-content: center;
    }

    .add-to-cart-btn {
        width: 100%;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Product Detail Modal Styles */
.product-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.product-detail-modal.active {
    opacity: 1;
}

.product-detail-content {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-detail-modal.active .product-detail-content {
    transform: translateY(0);
}

.product-detail-images {
    position: relative;
    height: 90vh;
    background: #f8f9fa;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.product-detail-right {
    padding: 2rem;
    overflow-y: auto;
    height: 90vh;
}

.product-category {
    text-transform: uppercase;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-detail-info h2 {
    font-size: 2rem;
    margin: 1rem 0;
    color: var(--text-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.stars {
    color: #ffc107;
    display: flex;
    gap: 2px;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.product-price-detail {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price-detail .currency {
    font-size: 1.5rem;
}

.product-detail-desc {
    color: #666;
    line-height: 1.6;
    margin: 1rem 0;
}

.stock-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    color: #666;
}

.stock-info i {
    color: #4CAF50;
}

.stock-info i.fa-times-circle {
    color: #ff4444;
}

.product-actions {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border: 2px solid #eee;
    border-radius: 8px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f5f5f5;
    color: var(--text-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

quantity-selector input {
    width: 50px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    background: none;
}

.buy-now-btn, .add-to-cart-detail {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.buy-now-btn {
    background: var(--primary-color);
    color: white;
}

.add-to-cart-detail {
    background: #f5f5f5;
    color: var(--text-color);
}

.buy-now-btn:hover, .add-to-cart-detail:hover {
    transform: translateY(-2px);
}

.buy-now-btn:hover {
    background: var(--secondary-color);
}

.add-to-cart-detail:hover {
    background: #eee;
}

.add-to-cart-detail.in-cart {
    background: #4CAF50;
    color: white;
}

/* Review Section Styles */
.product-reviews {
    margin-top: 3rem;
    border-top: 2px solid #eee;
    padding-top: 2rem;
}

.product-reviews h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.reviewer {
    font-weight: 600;
    color: var(--text-color);
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-comment {
    color: #666;
    line-height: 1.5;
}

.review-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.review-form h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.rating-input {
    margin-bottom: 1rem;
}

.stars-input {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.stars-input i {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
}

.stars-input i:hover {
    transform: scale(1.2);
}

.stars-input i.active {
    color: #ffc107;
}

.review-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
    margin-bottom: 1rem;
    font-family: inherit;
}

.review-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-review-btn {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-review-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        max-height: 100vh;
        width: 100%;
        border-radius: 0;
    }

    .product-detail-images {
        height: 40vh;
    }

    .main-image {
        height: 100%;
    }

    .product-detail-right {
        height: 60vh;
        padding: 1.5rem;
    }

    .product-detail-info h2 {
        font-size: 1.5rem;
    }

    .product-price-detail {
        font-size: 2rem;
    }

    .product-actions {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quantity-selector {
        justify-content: center;
    }

    .image-thumbnails {
        padding: 0 10px;
    }

    .thumbnail {
        width: 40px;
        height: 40px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-detail-right {
        padding: 1rem;
    }

    .product-price-detail {
        font-size: 1.5rem;
    }

    .stars-input {
        font-size: 1.2rem;
    }
}

/* Cart Count Animation */
@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.bounce {
    animation: bounce 0.3s ease;
}

/* User Profile Navigation Styles */
.user-profile-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.user-profile-nav:hover {
    background: rgba(0,0,0,0.05);
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 180px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.user-profile-nav:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.profile-dropdown a:hover {
    background: rgba(0,0,0,0.05);
}

.profile-dropdown a:not(:last-child) {
    border-bottom: 1px solid #eee;
}

#signOutBtn {
    color: #ff4444;
}

#signOutBtn:hover {
    background: #fff5f5;
}

/* Mobile Profile Styles */
.mobile-nav .nav-item.profile-active {
    color: var(--primary-color);
}

.mobile-nav .nav-item.profile-active i {
    color: var(--primary-color);
}

/* Authentication Required Modal */
.auth-required-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.auth-required-modal i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.auth-required-modal h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.auth-required-modal p {
    color: #666;
    margin-bottom: 1.5rem;
}

.auth-required-modal .modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.auth-required-modal button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.login-btn {
    background: var(--primary-color);
    color: white;
}

.login-btn:hover {
    background: var(--secondary-color);
}

.cancel-btn {
    background: #f5f5f5;
    color: var(--text-color);
}

.cancel-btn:hover {
    background: #eee;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .user-profile-nav {
        padding: 0.3rem;
    }

    .profile-pic {
        width: 28px;
        height: 28px;
    }

    .profile-dropdown {
        position: fixed;
        top: auto;
        bottom: 70px;
        left: 0;
        right: 0;
        margin: 1rem;
        border-radius: 12px;
    }
}

/* Add these styles to your style.css */

/* User Profile Navigation Styles */
.user-profile-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-profile-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.profile-pic {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.profile-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-profile-nav:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.profile-dropdown a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
}

/* Mobile Profile Styles */
.mobile-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.mobile-profile img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-profile span {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .desktop-nav .nav-links {
        display: none;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        border-radius: 0;
        z-index: 1000;
    }

    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        color: #666;
        text-decoration: none;
        font-size: 0.8rem;
    }

    .nav-item i {
        font-size: 1.2rem;
    }

    .nav-item.active {
        color: var(--primary-color);
    }

    .nav-item .cart-count {
        position: absolute;
        top: 0;
        right: -8px;
        background: #ff4444;
        color: white;
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        border-radius: 10px;
    }
    .desktop-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        display: none;
        background: #ffffff;
        
    }
}

/* Desktop Navigation Styles */
.desktop-nav {
    
    justify-content: space-between;
    align-items: center;
    
    background: #ffffff;
    
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #686868;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

/* Rest of your existing styles... */

/* Add Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal-content {
    background: white;
    max-width: 600px;
    width: 90%;
    margin: 2rem auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    color: var(--text-color);
}

.close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 1.5rem;
}

.selection-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.selection-btn {
    flex: 1;
    padding: 1rem;
    border: 2px solid #eee;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.selection-btn i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.selection-btn:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.selection-btn:hover i {
    color: white;
}

.add-form {
    display: none;
}

.add-form h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--secondary-color);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-group .error {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Loading State */
.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .loading-spinner {
    display: inline-block;
}

.submit-btn.loading span {
    display: none;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-message.active {
    display: block;
}

.success-message i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .add-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .add-options {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 0.7rem;
    }
}

/* Profile Navigation Styles */
.user-profile-nav {
    position: relative;
}

.profile-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.profile-trigger:hover {
    background: rgba(0, 0, 0, 0.05);
}

.profile-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    display: none;
    z-index: 1000;
    margin-top: 0.5rem;
}

.profile-dropdown.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-email {
    padding: 0.75rem;
    color: #666;
    font-size: 0.9rem;
    word-break: break-all;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 0.5rem 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

/* Mobile Profile Menu Styles */
.mobile-profile-menu {
    position: relative;
    padding: 0.5rem;
}

.mobile-profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mobile-name {
    font-weight: 500;
}

.mobile-email {
    font-size: 0.8rem;
    color: #666;
}

.mobile-profile-dropdown {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: none;
    z-index: 1000;
}

.mobile-profile-dropdown.show {
    display: block;
    animation: slideUp 0.3s ease;
}

.mobile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .profile-dropdown {
        width: 100%;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 70px;
        top: auto;
        margin: 0;
        border-radius: 15px 15px 0 0;
    }

    .mobile-profile-info {
        margin-bottom: -0.5rem;
    }
}

/* Loader Styles */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
}

.loader i {
    font-size: 2rem;
    color: #333;
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.price {
    color: #e44d26;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #e44d26;
}

.error {
    color: #e44d26;
    text-align: center;
    width: 100%;
}

/* Category Products Section */
.category-products {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.category-products-header h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.no-products {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .category-products {
        padding: 1rem;
    }

    .category-products-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .category-products-header h2 {
        font-size: 1.5rem;
    }
}
/* Professional Company Partners Section */
.company-partners {
    
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(33, 150, 243, 0.3);
}

.banner-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.partner-content {
    padding: 1rem;
    background: #ffffff;
}

.partner-about {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.partner-footer {
    padding: 0.8rem 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fafafa;
}

.partner-logo {
    width: 32px;
    height: 32px;
    padding: 0.2rem;
    background: white;
    border-radius: 6px;
    border: 1px solid #eee;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a202c;
}

/* Add section title styles */
.partners-title {
    text-align: center;
    margin-bottom: 2rem;
}

.partners-title h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.partners-title p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-image {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-card {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .banner-image {
        height: 160px;
    }
}