body {
    font-family: 'Poppins', sans-serif;
}

.fs-6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px !important;
}

img.social-media-bar {
    width: 25px;
    height: 25px;
    margin-left: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
}

#navbar-section {
    margin-bottom: 100px !important;
}

.nav-item {
    margin-right: 15px;
    /* background-color: blue; */
    padding: 0px 5px 0px 5px;
}

.text-gradient-primary {
    background-image: linear-gradient(to right, #8357fa, #1800f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}

.bg-gradient-primary {
    background-image: linear-gradient(to right, #8357fa, #1800f0);
    /* -webkit-text-fill-color: transparent; */
    -moz-text-fill-color: transparent;
}

.card {
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.card-img-top {
    transition: transform 2s;
}

.card-img-top:hover {
    transform: scale(2.5);
}

.whatsapp-button {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    padding: 12px 17px 12px 17px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(32, 97, 236, 0.3);
    transition: transform 2s ease;
}

.whatsapp-button:hover {
    transform: translateY(-20px);
}

.scrolled {
    z-index: 100;
    box-shadow: -1px 6px 14px -8px rgba(0, 0, 0, 0.68);
    -webkit-box-shadow: -1px 6px 14px -8px rgba(32, 107, 247, 0.68);
    -moz-box-shadow: -1px 6px 14px -8px rgba(27, 31, 236, 0.68);
}


/* Image Review */

.product {
    position: relative;
}

img.image-gallery {
    width: 200px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
}

.image-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-preview:hover {
    display: flex;
}

.image-preview img {
    max-width: 100%;
    max-height: 100%;
}


/* * {
    border: 1px solid blue;
} */