
.banner-image {
    height: 400px !important;
    object-fit: cover;
    object-position: center;
}

.watch-registration-section .overlay {
    background: rgba(0, 0, 0, 0.75); /* semi-transparent black overlay */
}

.watch-registration-section .overlay p {
    font-size: 1.1rem;
}

.watch-registration-section a.btn:hover {
    background: #000;
    color: #fff;
    transition: all 0.3s ease;
}

.customer_h4 {
    font-weight: 400 !important;
}

.h4, h4 {
    font-size: 2.3rem;
}

.h5, h5 {
    font-size: 1.5rem;
}


/* General Row Layout */
.col-mdd-4 {
    flex: 0 0 auto;
    width: 25%;
}

.watch-info-row {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Each image container */
.watch-info-box {
    background: #fff;
    /*border: 1px solid #e0e0e0;*/
    border-radius: 8px;
    padding: 15px 0;
    transition: all 0.3s ease;
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);*/
}

/*.watch-info-box:hover {*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);*/
/*}*/

/* Image Styling */
.watch-info-img {
    width: 60%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Caption under each image (optional if needed later) */
.watch-info-caption {
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
}

.watch-info-box {
    position: relative;
    display: inline-block;
}

.watch-info-img {
    width: 100%;
    max-width: 150px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.watch-info-img:hover {
    transform: scale(1.05);
}

/*-------------------Images hover-------------------*/
.hover-popup {
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 260px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.watch-info-box:hover .hover-popup {
    opacity: 1;
    pointer-events: auto;
}
/*--------------------------------------------------*/


.receipt-box {
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.receipt-box h5 {
    border-bottom: 2px solid #000;
    padding-bottom: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-check-label {
    font-size: 0.95rem;
    color: #333;
}

.form-check-input:checked {
    background-color: #000;
    border-color: #000;
}

.boxed-upload {
    border: 1px solid #000;
    padding: 20px;
    border-radius: 4px;
}

/* Fullscreen overlay */
#loaderOverlay {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* half-black transparent */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loaderOverlay.active {
    display: flex !important;
}

/* Loader container */
.bar-loader {
    /*height: 100%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Individual bars */
.bar {
    width: 12px;
    height: 40px;
    border-radius: 4px;
    animation: bounce 0.8s ease-in-out infinite;
}

/* Bar colors */
.bar1 { background-color: #ffffff; animation-delay: 0s; }     /* red/orange */
.bar2 { background-color: #ffffff; animation-delay: 0.15s; }  /* cyan */
.bar3 { background-color: #ffffff; animation-delay: 0.3s; }   /* green */

/* Animation keyframes */
@keyframes bounce {
    0%, 100% {
        transform: scaleY(0.4);
    }
    50% {
        transform: scaleY(1);
    }
}
/* Loader container */

@media (max-width: 767px) {
    .mobile-top {
        margin-top: 1rem;
    }

    .banner-image {
        height: 350px;
    }
    .watch-registration-section .overlay p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .receipt-box {
        padding: 1.5rem;
    }
}

@media (max-width: 520px) {

    .customer_h4 {
        font-size: 28px;
    }

    .receipt-box .receipt-h5 {
        font-size: 22px;
    }
}

@media (max-width: 400px) {
    .watch-registration-section .overlay p {
        font-size: 0.85rem !important;
    }

    .customer_h4 {
        font-size: 24px;
    }
}

@media (max-width: 350px) {
    .watch-registration-section .overlay p {
        font-size: 0.75rem !important;
    }

    .customer_h4 {
        font-size: 24px;
    }

    .receipt-box .receipt-h5 {
        font-size: 18px;
    }
}
