body {
    font-family: 'Prompt', sans-serif;
    font-weight: 400;
}

.product-card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.product-card img {
    transition: transform 0.3s ease-in-out;
}

.product-card:hover img {
    transform: scale(1.1);
}
.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.nav-link .icon {
    padding-left: 5px;
}
.navbar .nav-link {
    font-size: 14px;
    margin-right: 10px;
}
.dropdown-hover .dropdown-menu .dropdown-item:hover {
    background-color: gray;
    color: white;
}
.flag{
    height: 20px;
}
#floating-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    cursor: pointer;
}
#floating-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#image-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9998;
}
#image-container.show {
    display: block;
}
.image-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50%;
    overflow: hidden;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.label {
    display: inline-block;
    margin-left: 8px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    vertical-align: middle;
  }