.eighty-height {
    height: 80vh;
    background-size: cover !important
}

.seventy-height {
    height: 70vh;
    background-size: cover !important
}

/* Override btn-primary background and text color */
.btn-primary {
    background-color: #044175 !important;
    border-color: #044175 !important;
}

/* Override btn-primary hover effect */
.btn-primary:hover {
    background-color: #397BA7 !important;
    /* Slightly darker shade for hover */
    border-color: #397BA7 !important;
}
h1.underline{display:inline-block;position:relative;margin-bottom:-20px!important;z-index:0}
h1.underline::after{content:'';display:inline-block;width:100%;height:2px;transform:translateY(-1200%);margin-bottom:-10px;z-index:-1}
h2.underline{display:inline-block;position:relative;margin-bottom:-20px!important;z-index:0}
h2.underline::after{content:'';display:inline-block;width:100%;height:2px;transform:translateY(-1200%);margin-bottom:-10px;z-index:-1}

h1.underline::after {
    /* background-color: #F37E11 !important; */
}

h2.underline::after {
    background-color: #525593 !important;
}
.cart{
    width: 20px;
    height: auto;
}

.custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000; /* Higher than Bootstrap modal */
}

.custom-alert-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.custom-alert-box h5 {
    margin-top: 0;
    color: #28a745;
}

.custom-alert-box p {
    margin: 10px 0;
}

.custom-alert-box button {
    padding: 5px 10px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.custom-alert-box button:hover {
    background: #218838;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cart-images {
  max-width: 60px; /* Limit the width */
  height: auto;    /* Maintain the aspect ratio */
  object-fit: cover; /* Ensures the image fits nicely */
}
/* .full-height{
height:70vh !important;
} */

.main-image {
    position: relative;
    overflow: hidden; /* Ensures the image stays within the bounds */
}

.main-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.3s ease, transform-origin 0.3s ease;
}


.main-image img:hover {
    transform: scale(1.1);
}

.thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s ease;
}

.thumbnails img:hover,
.thumbnails img.active {
    border: 2px solid #007bff;
}