 :root {
            --primary-green: #43c848ff;
            --dark-green: #2E7D32;
            --light-green: #81C784;
            --orange: #FF9800;
            --light-bg: #f8f9fa;
            --dark-text: #333;
            --primary-color: #11ad4fff;
            --secondary-color: #00CC52;
            --accent-color: #00FF66;
            --dark-bg: #2C3E50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
      body {
            font-family: Meiryo UI;
            background-color: var(--light-bg);
            line-height: 1.6;
        }
        
        /* Header Styles */
        .header {
            background: white;
            padding: 6px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .navbar-brand img {
            height: 70px;
            width: auto;
        }
        
        .delivery-info {
            font-size: 14px;
            color: var(--dark-text);
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .search-container {
            position: relative;
            flex-grow: 1;
            margin: 0 20px;
        }
        
        .search-box {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s;
        }
        
        .search-box:focus {
            border-color: var(--primary-green);
        }
        
        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 18px;
        }
        
        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .login-btn {
            background: none;
            border: none;
            font-size: 16px;
            color: var(--dark-text);
            cursor: pointer;
        }
        
        .cart-btn {
            background: var(--dark-text);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .cart-btn:hover {
            background: var(--primary-green);
        }
        
    /* Main Banner with Background Image */
.main-banner {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    background-image: url('../img/banner1.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 20px 0;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

/* Women Special Banner */
.women-special-banner {
    background: linear-gradient(135deg, #E91E63, #C2185B);
    background-image: url('../img/banner2.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Home Decor Banner */
.home-decor-banner {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    background-image: url('../img/home222.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Wooden Essentials Banner */
.wooden-essentials-banner {
    background: linear-gradient(135deg, #8B5A2B, #654321);
    background-image: url('../img/banner44.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Wooden Essentials Banner */
.wooden-essentials-banner_two {
    background: linear-gradient(135deg, #8B5A2B, #654321);
    background-image: url('../img/women.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Wooden Essentials Banner */
.wooden-essentials-banner_three {
    background: linear-gradient(135deg, #8B5A2B, #654321);
    background-image: url('../img/women.webp');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.shop-now-btn {
    background: white;
    color: var(--primary-green);
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.shop-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.banner-image {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: auto;
}

/* Carousel specific styles */
#mainBannerCarousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

#mainBannerCarousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Carousel controls */
#mainBannerCarousel .carousel-control-prev,
#mainBannerCarousel .carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

#mainBannerCarousel .carousel-control-prev:hover,
#mainBannerCarousel .carousel-control-next:hover {
    opacity: 1;
}

/* Carousel indicators */
#mainBannerCarousel .carousel-indicators {
    bottom: 20px;
}

#mainBannerCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 0.5;
}

#mainBannerCarousel .carousel-indicators button.active {
    opacity: 1;
}


       /* Category Banners */
.category-banners {
    margin: 30px 0;
}

.category-banners .row {
    display: flex;
    flex-wrap: wrap;
}

.category-banners .col-md-3 {
    display: flex;
}

.category-banner {
    border-radius: 15px;
    padding: 30px;
    color: white;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.category-banner:hover {
    transform: translateY(-3px);
}

.kitchen-banner {
    background: linear-gradient(135deg, #26C6DA, #00ACC1);
    background-image: url('../img/kitchen2.png');
}

.living-banner {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    background-image: url('../img/home-decor.png');
}

.pet-banner {
    background: linear-gradient(135deg, #8D6E63, #6D4C41);
    background-image: url('../img/garden2.png');
}

.women-banner {
    
    background-image: url('../img/categoty.jpg');
}

.category-banner h3 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.category-banner .subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-banner p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.order-btn {
    background: rgba(255,255,255,0.9);
    color: var(--dark-text);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.order-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
        
        /* Product Categories Grid */
        .categories-grid {
            margin: 40px 0;
        }
        
        .category-item {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 15px;
            margin-bottom: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            height: 160px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .category-item img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        .category-item h6 {
            font-weight: bold;
            color: var(--dark-text);
            font-size: 14px;
            text-align: center;
            line-height: 1.3;
        }
        
        /* Product Grid Styles */
        .products-section {
            margin: 50px 0;
        }
        
        .section-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .see-all {
            color: var(--primary-green);
            font-size: 16px;
            text-decoration: none;
            font-weight: 500;
        }
        
        .see-all:hover {
            text-decoration: underline;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .product-item {
            background: white;
            border-radius: 15px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            height: 320px;
            display: flex;
            flex-direction: column;
        }
        
        .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .product-item img {
            width: 100%;
            height: 140px;
            object-fit: contain;
            margin-bottom: 15px;
            border-radius: 10px;
            background: #f8f9fa;
            padding: 10px;
        }
        
        .product-title {
            font-size: 14px;
            font-weight: 500;
            color: var(--dark-text);
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .product-size {
            font-size: 12px;
            color: #666;
            margin-bottom: 10px;
        }
        
        .product-price {
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            margin-top: auto;
        }
        
        .btn-add {
            background: white;
            border: 2px solid var(--primary-green);
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 12px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn-add:hover {
            background: var(--primary-green);
            color: white;
        }
        
        /* Footer Styles */
        .footer {
            background: #f8f9fa;
            padding: 50px 0 20px 0;
            margin-top: 60px;
            border-top: 1px solid #e0e0e0;
        }
        
        .footer h6 {
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-green);
        }
        
        .app-download {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .app-download img {
            height: 40px;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        
        .app-download img:hover {
            transform: scale(1.05);
        }
        
        .social-icons {
            display: flex;
            gap: 10px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease;
        }
        
        .social-icons a:hover {
            transform: scale(1.1);
        }
        
        .social-icons .facebook { background: #3b5998; }
        .social-icons .twitter { background: #1da1f2; }
        .social-icons .instagram { background: #e4405f; }
        .social-icons .linkedin { background: #0077b5; }
        .social-icons .threads { background: #333; }
        
        .footer-bottom {
            border-top: 1px solid #e0e0e0;
            padding-top: 20px;
            margin-top: 30px;
            font-size: 13px;
            color: #666;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header .container-fluid {
                flex-wrap: wrap;
                gap: 15px;
            }
            
            .search-container {
                order: 3;
                width: 100%;
                margin: 0;
            }
            
            .banner-content h1 {
                font-size: 32px;
            }
            
            .main-banner {
                padding: 40px 25px;
                text-align: center;
            }
            
            .banner-image {
                display: none;
            }
            
            .category-banner {
                padding: 20px;
            }
            
            .categories-grid .col-6 {
                margin-bottom: 15px;
            }
            
            .section-title {
                font-size: 24px;
            }
        }
        
        @media (max-width: 576px) {
            .main-banner {
                padding: 30px 20px;
                min-height: 250px;
            }
			
            .banner-content h1 {
                font-size: 28px;
            }
            
            .category-banner {
                padding: 20px;
                text-align: center;
            }
            
            .category-item {
                height: 140px;
            }
            
            .product-item {
                height: 280px;
            }
        }
		
		