
body{
    background:#FFFFFF;
}
   .warrper-container {
            width: 85%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 10px 20px;
            overflow: hidden;
        }
        .slider-container {
            position: relative;
            width: 100%;
            height: 60vh;
            border-radius: 5px;
            overflow: hidden;
        }
        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slide.active {
            opacity: 1;
        }
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
        /* Arrows */
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #333;
            opacity: 0;
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 10;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .slider-arrow:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
        }
        .slider-arrow.prev {
            left: 20px;
        }
        .slider-arrow.next {
            right: 20px;
        }
        .slider-container:hover .slider-arrow {
            opacity: 1;
        }
        
        /* Indicators */
        .slider-indicators {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 10;
        }
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .indicator.active {
            background-color: rgba(255, 255, 255, 1);
        }
        
        @media (max-width: 768px) {
            .slider-container {
                height: 50vh; /
                border-radius: 15px;
            }
            .slider-arrow {
                width: 40px;
                height: 40px;
                font-size: 20px;
                opacity: 0.7; 
            }
            .slider-arrow.prev {
                left: 10px;
            }
            .slider-arrow.next {
                right: 10px;
            }
            .slide img {
                object-fit: cover; 
                border-radius: 10px;
            }
            .slider-indicators {
                bottom: 10px;
            }
            .indicator {
                width: 10px;
                height: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .slider-container {
                height: 20vh;
            }
            .warrper-container {
                width: 95%;
                padding: 5px 10px;
            }
        }
/*categroy section */
.category-section {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.title-line {
    flex: 1;
    height: 1px;
    background-color: #d0d0d0;
    max-width: 430px;
}

.title-text {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    letter-spacing: 2px;
    white-space: nowrap;
    margin: 0;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr); /* 9 items per row for large screens */
    gap: 15px; /* fixed gap */
    /*justify-items: center;*/
    /*padding: 0 10px;*/
}

.category-item {
    text-align: center;
}

.category-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-image {
    /*width: 110px;*/
    /*height: 110px;*/
    margin: 0 ;
    border-radius: 7px;
    overflow: hidden;
    /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-item:hover .category-image {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);*/
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.category-item:hover .category-name {
    color: #007bff;
}

/* responsive Settings */

/* Medium: 6 per row */
@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 15px;
    }

    .category-image {
        /*width: 100px;*/
        /*height: 100px;*/
    }
     .product-info h5 a{
        font-size:14px !important;
    }
}

/* Small: 3 per row */
@media (max-width: 576px) {
    .warrper-container{
        width:98%;
        margin:0 1%;
    }
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .category-image {
        /*width: 90px;*/
        /*height: 90px;*/
        border-radius: 8px;
    }

    .title-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
    .product-info h5 a{
         font-size:11px !important;
    }
}

/*product section start*/
.product-category-img img{
    /*border-radius:7px;*/
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    /*transform: translateY(-5px);*/
    /*box-shadow: 0 6px 18px rgba(0,0,0,0.15);*/
}
.product-img {
    overflow: hidden;
    border-radius:8px;
    position: relative;
}
.product-img img {
    width: 100%;
    height: 265px;
    padding:10px;
    /*object-fit: cover;*/
    /*border-radius: 10px 10px 0 0;*/
    transition: transform 0.4s ease;
}
.product-card:hover img {
    transform: scale(1.1);
}
.discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0b0b0b;
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5; 
    pointer-events: none;  
}
.product-info {
    text-align: center;
    padding: 15px 15px 0 15px;
}
.product-info h5 a {
    color:var(--text-color) !important;
    font-size: 16px;
    font-weight: 600;
    color:inherit;
    margin-top: 10px;
    cursor:pointer;
}
.product-info h5:hover {
    color:#0989ff;
    
}
.product-info .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 6px;
}
.product-info .new-price {
    color:var(--price-color) !important;
    font-weight: bold;
}

.buy-btn {
    display: block;
    width: 100%;
    background:var(--button-color);
    color: #fff;
    font-weight: 600;
    text-align: center;
    border: none;
    padding: 10px;
    border-radius:4px;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #333;
    color: #fff;
}
.footer-area {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}
.list-unstyled{
   padding-left:10px !important; 
}
.footer-links li {
    margin-bottom: 6px;
    display:block;
}
.footer-links li a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}
.footer-links li a:hover {
    color: #ccc;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
    text-decoration:none;
}
.social-link:hover {
    opacity: 0.8;
}
.footer-area h6 {
    font-size: 15px;
}
.accoutn-border{
    width: 75px;
    height: 2px;
    background: white;
}
.info-border{
    width: 106px;
    height: 2px;
    background: white;
}
.talk-border{
    width: 85px;
    height: 2px;
    background: white;
}