 /*Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}



.container {
    width: 90%;
    margin: 0 auto;
}

 /*Slider Section */
.slider__container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slide__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.slide__thumb img:hover {
    transform: scale(1.1);
}

.slider__activation__wrap .single__slide {
    position: relative;
}

.single__slide:hover .slide__thumb img {
    transform: scale(1.1);
}

 /*Overlay Text on Slider */
.slider__container .slide__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 2;
}

 /*Category Section */
.htc__category__area {
    padding: 50px 0;
    background-color: #fff;
}

.section__title--2 h2 {
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: bold;
}

.product__list .category {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.product__list .category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ht__cat__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ht__cat__thumb img:hover {
    transform: scale(1.05);
}

 /*Product Name */
.fr__product__inner h4 {
    font-size: 1.1rem;
    color: #333;
    padding: 10px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 10px;
    border-bottom: 2px solid #eee;
    font-weight: 600;
}

.fr__product__inner h4 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fr__product__inner h4 a:hover {
    color: #007bff;
}

 /*Best Seller Section */
.ftr__product__area {
    background-color: #f7f7f7;
    padding: 50px 0;
}

.ftr__product__area .section__title--2 h2 {
    font-size: 2.5rem;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: bold;
}

 /*Footer Section */
footer {
    background-color: #222;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #007bff;
}

 /*Hover Effects */
.category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category img:hover {
    transform: scale(1.1);
}

 /*Quantity Input (hidden) */
#qty {
    display: none;
}

 /*Media Queries */
@media (max-width: 768px) {
     /*Adjusting the product list layout */
    .product__list .col-md-4 {
        flex: 1 1 100%;
        max-width: 100%;
    }

     /*Adjusting the slider container for smaller screens */
    .slider__container {
        height: 300px;
    }

     /*Smaller title for categories and best sellers */
    .section__title--2 h2 {
        font-size: 1.8rem;
    }

     /*Adjusting product names */
    .fr__product__inner h4 {
        font-size: 1rem;
    }
}
