/* Homepage Specific Styles */

/* Page Background */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

main {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Featured Products Section */
.featured-products {
    background: rgba(255, 255, 255, 0.7);
    padding: 60px 0;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    color: #0A4B3E;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #96722E, #D4AF37);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Container modifications for gradient background */
.container {
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.header-container {
    width: 100%;
    max-width: none;
    padding: 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    background: #ffffff;
    min-height: 60px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.03);
}

.search-box {
    flex: 1;
    max-width: 550px;
    margin: 0 30px;
    position: relative;
}

.search-box form {
    display: flex;
    align-items: center;
    background: #F8F9FA;
    border: 1px solid #e8e9ea;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-box form:focus-within {
    border-color: #0A4B3E;
    box-shadow: 0 2px 8px rgba(10, 75, 62, 0.12);
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #8b7355;
    font-size: 15px;
    z-index: 2;
}

.search-box input {
    flex: 1;
    padding: 10px 16px 10px 40px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: #2c2c2c;
    font-weight: 400;
}

.search-box input::placeholder {
    color: #8b7355;
    font-weight: 400;
    font-size: 14px;
}

.search-box button {
    background: #0A4B3E;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 0 24px 24px 0;
}

.search-box button:hover {
    background: #096354;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    color: #343A40;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    transition: all 0.2s ease;
    border-radius: 8px;
    border: 1px solid transparent;
    min-width: auto;
    justify-content: center;
    overflow: hidden;
}

.nav-item:hover {
    color: #0A4B3E;
    background: rgba(10, 75, 62, 0.05);
}

.nav-item i {
    font-size: 20px;
    margin-right: 6px;
    transition: all 0.2s ease;
    color: #6C757D;
    font-weight: 400;
}

.nav-item:hover i {
    color: #0A4B3E;
}   transform: scale(1.1);
}

/* Enhanced header icon animations */
.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    transition: left 0.5s;
}

.nav-item:hover::before {
    left: 100%;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: 2px;
    right: 8px;
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(255, 71, 87, 0.3);
    z-index: 10;
}

.nav-item:hover .cart-count,
.nav-item:hover .wishlist-count {
    transform: scale(1.05);
}

.burger-menu {
    display: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: #F9F4EE;
}

.burger-menu i {
    font-size: 24px;
    color: #2c2c2c;
}

/* Categories Navigation */
.categories-nav {
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    padding: 0 40px;
}

.category-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.category-list li {
    margin: 0;
    position: relative;
}

.category-list li.has-submenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-list a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    text-decoration: none;
    color: #343A40;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
    gap: 6px;
}

.category-list a:hover {
    color: #0A4B3E;
}

.category-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #0A4B3E;
    transition: width 0.3s ease;
}

.category-list a:hover::after {
    width: 70%;
}

.submenu-icon {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.category-list li.has-submenu:hover .submenu-icon {
    transform: rotate(180deg);
}

.all-categories {
    font-weight: 600;
    color: #0A4B3E !important;
    background: rgba(10, 75, 62, 0.06);
    border-radius: 6px;
    margin-right: 10px;
}

.all-categories i {
    margin-right: 6px;
    font-size: 14px;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 700px;
    max-width: 900px;
    border-top: 3px solid #0A4B3E;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.mega-menu-column {
    min-width: 180px;
}

.mega-menu-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #0A4B3E;
    color: #0A4B3E;
}

.mega-menu-title a {
    color: #0A4B3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-title a:hover {
    color: #96722E;
}

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

.mega-menu-list li {
    margin-bottom: 6px;
}

.mega-menu-list a {
    display: block;
    padding: 6px 10px;
    color: #495057;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.mega-menu-list a:hover {
    background: rgba(10, 75, 62, 0.08);
    color: #0A4B3E;
    padding-left: 15px;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 12px;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 500px;
}

.carousel-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-content p {
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-primary {
    background: #0A4B3E;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #096354;
    transform: translateY(-2px);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.carousel-prev, .carousel-next {
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,1);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fff;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #1a1a1a;
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e 0%, #b8941f 100%);
    border-radius: 2px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: rgba(201, 169, 110, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #F9F4EE;
}

.product-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-wishlist,
.btn-quick-view {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-wishlist:hover,
.btn-quick-view:hover {
    background: #fff;
    transform: scale(1.1);
}

.btn-wishlist.active {
    background: #ff4b6e;
    color: white;
}

.btn-wishlist.active:hover {
    background: #ff3459;
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.product-info {
    padding: 24px;
}

.product-name a {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #c9a96e;
}

.product-description {
    color: #8b7355;
    font-size: 14px;
    margin: 12px 0;
    line-height: 1.5;
    font-weight: 400;
}

.product-price {
    margin: 20px 0;
}

.price, .price-sale {
    font-size: 24px;
    font-weight: 700;
    color: #c9a96e;
    font-family: 'Inter', sans-serif;
}

.price-original {
    font-size: 18px;
    color: #b5a089;
    text-decoration: line-through;
    margin-left: 12px;
    font-weight: 500;
}

.btn-add-cart {
    width: 100%;
    background: #c09578;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-add-cart:hover {
    background: #a67d5b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 149, 120, 0.3);
}

/* Categories Showcase */
.categories-showcase {
    padding: 60px 0;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.category-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(10, 75, 62, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(10, 75, 62, 0.15);
}

.category-card a {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    text-decoration: none;
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(
        to top,
        rgba(10, 75, 62, 0.9) 0%,
        rgba(10, 75, 62, 0.7) 60%,
        rgba(10, 75, 62, 0) 100%
    );
    color: #fff;
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(
        to top,
        rgba(150, 114, 46, 0.95) 0%,
        rgba(150, 114, 46, 0.8) 60%,
        rgba(150, 114, 46, 0) 100%
    );
    padding-bottom: 30px;
}

.category-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.category-card:hover .category-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Add decorative elements */
.category-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    width: auto;
    border-radius: 4px;
    background: white;
    padding: 4px;
}

/* Footer Styles */
.main-footer {
    background: #efe8e0;
    margin-top: 80px;
    border-top: 1px solid #e8ddd2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    padding: 60px 0 40px;
}

.footer-section h4 {
    color: #c9a96e;
    margin-bottom: 24px;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #5a4a3a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 15px;
}

.footer-section a:hover {
    color: #c9a96e;
    padding-left: 8px;
}

.contact-info p {
    margin-bottom: 16px;
    color: #5a4a3a;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.contact-info strong {
    color: #c9a96e;
    margin-right: 8px;
    min-width: 60px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(201, 169, 110, 0.2);
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    color: #c9a96e;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.social-link.facebook:hover {
    background: #3b5998;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: #ffffff;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.social-link.pinterest:hover {
    background: #bd081c;
    color: #ffffff;
}

.footer-bottom {
    background: #2c2c2c;
    padding: 20px 0;
    border-top: 1px solid #e8ddd2;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #c9a96e;
}

.payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    width: auto;
    border-radius: 4px;
    background: white;
    padding: 4px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header-top {
        display: flex;
        flex-wrap: wrap;
        padding: 12px 15px;
        align-items: center;
        gap: 0;
    }
    
    .logo {
        flex: 0 0 auto;
    }
    
    .logo img {
        height: 38px;
    }
    
    .header-nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        gap: 4px;
        margin: 0;
        padding: 0;
    }
    
    .burger-menu {
        display: flex;
        flex: 0 0 auto;
        margin: 0 0 0 8px;
    }
    
    .search-box {
        flex: 1 1 100%;
        width: 100%;
        margin: 12px 0 0 0;
        max-width: none;
    }
    
    .search-box form {
        border-radius: 20px;
    }
    
    .search-box input {
        padding: 9px 14px 9px 36px;
        font-size: 13px;
    }
    
    .search-icon {
        left: 14px;
        font-size: 14px;
    }
    
    .search-box button {
        padding: 9px 16px;
        font-size: 13px;
    }
    
    .nav-item {
        flex-direction: row;
        font-size: 0;
        padding: 6px 8px;
        border: none;
        min-width: auto;
        background: none;
    }
    
    .nav-item:hover {
        background: rgba(10, 75, 62, 0.05);
    }
    
    .nav-item span {
        display: none;
    }
    
    .nav-item i {
        font-size: 22px;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .categories-nav {
        display: none;
        padding: 0;
    }
    
    .categories-nav.show {
        display: block;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        position: fixed;
        top: 67px;
        left: 0;
        right: 0;
        z-index: 999;
        max-height: calc(100vh - 67px);
        overflow-y: auto;
    }
    
    .category-list {
        flex-direction: column;
        padding: 10px 0;
    }

    .category-list li.has-submenu .submenu-icon {
        margin-left: auto;
    }

    .mega-menu {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 0;
        min-width: auto;
        border-top: none;
        border-left: 3px solid #96722E;
        margin: 5px 0 5px 20px;
        background: #f8f9fa;
        display: none;
    }

    .category-list li.has-submenu.active .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mega-menu-column {
        padding: 15px;
        border-bottom: 1px solid #dee2e6;
    }

    .mega-menu-column:last-child {
        border-bottom: none;
    }

    .mega-menu-title {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .mega-menu-list a {
        font-size: 0.875rem;
        padding: 5px 10px;
    }
    
    .category-list a {
        padding: 14px 20px;
        border-bottom: 1px solid #f5f5f5;
        margin: 0;
        border-radius: 0;
        font-size: 15px;
    }
    
    .all-categories {
        background: rgba(10, 75, 62, 0.08);
        margin: 0;
        border-radius: 0;
    }
    
    .hero-carousel {
        height: 300px;
        border-radius: 8px;
        margin-bottom: 30px;
    }
    
    .carousel-content {
        left: 5%;
        max-width: 90%;
        padding: 15px;
    }
    
    .carousel-content h2 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .carousel-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .carousel-nav button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image img {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name a {
        font-size: 16px;
    }
    
    .product-description {
        font-size: 13px;
        margin: 8px 0;
    }
    
    .price, .price-sale {
        font-size: 18px;
    }
    
    .price-original {
        font-size: 14px;
    }
    
    .btn-add-cart {
        padding: 12px;
        font-size: 13px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 10px;
    }
    
    .category-overlay h3 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-products,
    .categories-showcase {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 10px 12px;
    }
    
    .logo img {
        height: 32px;
    }
    
    .cart-count, .wishlist-count {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: 0;
        right: 4px;
        border: 1.5px solid #ffffff;
    }
    
    .hero-carousel {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .carousel-content {
        padding: 12px;
    }
    
    .carousel-content h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }
    
    .carousel-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .carousel-nav button {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-image img {
        height: 250px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 8px;
    }
    
    .category-overlay h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .section-title::after {
        width: 60px;
        height: 2.5px;
    }
    
    .featured-products,
    .categories-showcase {
        padding: 30px 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Product Overlay Buttons */
.product-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-wishlist,
.btn-quick-view {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-wishlist:hover,
.btn-quick-view:hover {
    background: #fff;
    transform: scale(1.1);
}

.btn-wishlist.active {
    background: #ff4b6e;
    color: white;
}

.btn-wishlist.active:hover {
    background: #ff3459;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left: 4px solid #4caf50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.info {
    border-left: 4px solid #2196f3;
}

.toast i {
    font-size: 18px;
}

.toast.success i {
    color: #4caf50;
}

.toast.error i {
    color: #f44336;
}

.toast.info i {
    color: #2196f3;
}
