body {
    position: relative;
}

.navbar-item-custom, .navbar-item-custom a {
    color: #fff;
}

.footer-custom {
    text-align: center;
    position: absolute;
    width: 100%;
    background-color: #dfeaff;
    padding-top: 25px;
    margin-top: 50px;
}

.product-item h5 {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 1px;
}

.product-item {
    margin-top: 50px;
}

.product-item .product-subtitle {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.product-item .product-quantity {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}


.product-item .product-price {
    font-size: 15px;
    font-weight: bold;
}

.product-container {
    margin-bottom: 150px;
}

.product-page-price {
    font-width: bold;
    font-size: 19px;
}

.cart-icon {
    height: 20px;
    padding-left: 20px;
}

.register-block {
    padding: 10px;
    background-color: #fafafa;
}

.block-small {
    max-width: 600px;
    margin: 0 auto;
}

.form-check {
    background-color: #f4f8ff;
    padding: 20px 65px;
    margin-top: 7px;
}

.col-form-label {
    font-weight: bold;
}

.order-summary {
    background-color: #f4f8ff;
    padding: 20px;
    margin-top: 22px;
}

.account-item {
    background-color: #f1f2f6;
    padding: 70px;
}

.account-item a {
    text-transform: uppercase;
    font-size: 13px;
    color: #4b6584;
    font-weight: bold;
}
.account-item a:hover {
    color: #778ca3;
    text-decoration: none;
}


.image-container {
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

.thumbnail {
    /*width: 100%;*/
    /*height: 100%;*/
    cursor: pointer;
    max-width: 200px;
    max-height: 200px;
}

/* Floating image container */
.floating-image {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8); /* Background overlay */
    border-radius: 8px;
    padding: 5px;
    z-index: 1000;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none; /* Prevent interfering with hover events */
    transition: opacity 0.3s ease;
    opacity: 0; /* Initially invisible */
}

.floating-image img {
    max-width: 400px; /* Limit the size of the enlarged image */
    max-height: 100%;
    min-width: 400px; /* Limit the size of the enlarged image */
    min-height: 100%;
    border-width: 1px 1px 1px 1px;
}

.floating-image.hidden {
    display: none; /* Hide when not active */
}
