.fs-7{
    font-size: .8rem;
}


.fs-8{
    font-size: .75rem !important;
    font-weight: bold !important;
}

@media (max-width: 576px) {
    .fs-sm-6 {
        font-size: 1rem !important;
    }
    .fs-sm-7 {
        font-size: 0.8rem !important;
    }
    .fs-sm-8 {
        font-size: 0.75rem !important;
    }
}

@media (min-width: 990px) {
    .fs-lg-6 {
        font-size: 1rem !important;
    }
    .fs-lg-7 {
        font-size: 0.8rem !important;
    }
    .fs-lg-8 {
        font-size: 0.75rem !important;
    }
}


.link-wrapper {
    position: relative;
    display: inline-block;
}

.link-opacity-25-hover:hover {
    opacity: 0.25;
}

.progress-bar {
    position: absolute;
    bottom: -3px; /* Adjust this value to position the progress bar where you want */
    left: 0;
    width: 100%;
    height: 3px; /* Adjust this value to change the height of the progress bar */
    background-color: #ef0167; /* Change this color to match your design */
    transform: scaleX(0); /* Initially, set the progress bar width to 0 */
    transform-origin: center;
    transition: transform 0.3s ease; /* Add a smooth transition effect */
}

.link-wrapper:hover .progress-bar {
    transform: scaleX(1); /* When hovered, expand the progress bar to full width */
}

.link-wrapper.active .progress-bar {
    transform: scaleX(1);
}

.link-wrapper.active a {
    color: #ef0167 !important; /* Or your preferred active color */
    opacity: 1 !important;
}

.carousel-caption {
    position: relative;
}

.shop-now-button {
    position: absolute;
    bottom:  0;
    right:  0;
    opacity:  0;
    transition: opacity  0.3s ease;
}

.carousel-item:hover .shop-now-button {
    opacity:  1;
}



/*heroSlider list of category*/

#list-item {
    padding: 0; /* Remove default padding */
}
#drop-button {
    width: 100%; /* Fill the entire width of parent */
    text-align: left; /* Align text to the left */
    padding: 8px; /* Add padding to the button for better appearance */
    background-color: transparent; /* Transparent background */
    border: none; /* Remove border */
    outline: none; /* Remove outline */
    cursor: pointer; /* Change cursor to default */
}
#drop-button:focus {
    box-shadow: none; /* Remove focus box shadow */
}
#dropdown-icon {
    float: right;
    margin-top:  5px;
    /*background-images: url('https://cdn-icons-png.flaticon.com/512/32/32213.png'); !* Add a custom background images *!*/
    /*background-size: cover; !* Cover the entire icon *!*/
    /*width:  20px; !* Set the width of the icon *!*/
    /*height:  20px; !* Set the height of the icon *!*/
    /*border-radius:  50%; !* Make the icon circular *!*/
    /*transition: transform  0.3s ease; !* Add a transition for any transformations *!*/
    transition: transform 0.3s ease;
}

#dropdown-icon:hover {
    transform: scale(1.2); /* Enlarge the icon when hovered */
}




.carousel-slide-container {
    position: relative;
}

.carousel-image {
    /*height: 466px; !* Adjust as needed *!*/
    object-fit: cover; /* Ensures the images covers the entire container */
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.25); /* Semi-transparent background */
    padding: 20px; /* Adjust as needed */
    color: #ffffff; /* Text color */

}

.carousel-caption h5 {
    margin-bottom: 10px;
}

.carousel-caption p {
    margin-bottom: 20px;
}

.shop-now-button {
    text-decoration: none;
    color: white;
    background-color: rgba(248, 10, 82, 0.73);
    padding: 10px 20px;
    border-radius: 5px;

}

.shop-now-button:hover {
    background-color: #ef0658;
}
