/* Main Section */
.main-section {
    height: 75vh;  
    background: url("images/searchbar background.jpg");
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.store-title {
    font-family:  sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.welcome-text {
    font-size: 1.4rem;
    color: #fff;
    margin: 20px 0 30px;
}

/* Search Bar */
.search-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    margin: 20px auto;
}

.search-input {
    width: 100%;
    padding: 10px 20px;
    padding-right: 50px; 
    border: 1px solid #ddd;
    font-size: 1rem;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.2);
}

.search-input:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(0, 128, 0, 0.5);
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Features Section */
.features {
    width: 100%;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1.5rem;
    color: #fff;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .store-title {
        font-size: 2.5rem;
    }

    .welcome-text {
        font-size: 1.2rem;
    }

    .feature-item p {
        font-size: 1.2rem;
    }

    .search-input {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .store-title {
        font-size: 2rem;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .features{
        display: none;
    }

    .feature-item p {
        font-size: 1rem;
    }

    .search-input {
        font-size: 0.85rem;
    }
}
/*  slider section */

.slider-container {
    height: 55vh;
    background-color:whitesmoke;
    overflow: hidden;
    
}

.slider-track {
    display: flex;
    position: relative;
    top:6vh;
    overflow: hidden;

}

.slider-track img {
    height: 40vh;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0 10px;
    border-radius: 25px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
}

.shadow-bottom {
    width: 80%;
    position: relative;
    top: 15%;
    left: 8%;
    border-radius: 10px;
    box-shadow: 0 2px 12px 2px;  
    background-color: white;  
} 

/* Features Section */
.features .feature-item {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 15px;
}

.features .feature-item i {
    margin-right: 10px;
    font-size: 2rem;
    color: #28a745;
}

.features .feature-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

/* Customer Satisfaction Section */
.card img {
    width: 150px;
    height: auto;
}

.card h3 {
    font-size: 2rem;
    font-weight: bold;
}

.card p {
    font-size: 1.1rem;
    color: #666;
}

/*    pads category section */

.pad-categories {
    background-color: whitesmoke;
}

.product-circle {
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    perspective: 1000px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);  
}

.product-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-style: preserve-3d;  
    transition: transform 0.1s ease-out;
    position: relative;
}

.product-card {
    text-align: center;
}

.product-title {
    margin-top: 10px;
    font-weight: bold;
}



/* Scroll-to-Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color:rgb(69, 252, 93); 
    color: white;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 1, 0.5);
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

#scrollToTopBtn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background-color:rgb(149, 250, 157);  
}


/*      product category section */
.product-cat{
    padding-top: .2%;
    background-color: whitesmoke;
}
.product-cat-head:after{
    content: '';
    display: block;
    clear: both;
    width: 20%;
    height: 2px;
    border-top: 2px dashed #e7e7e7;
    margin: 10px auto 0;
}
.product-category {
    text-align: center;
    margin: 20px 0;
}
.product-category img {
    width: 150px;
    height: 150px;
    margin: 10px auto;
    display: block;
    object-fit: cover; 
}
