/* --- Base Styles (Desktop First) --- */
.header-contact a {
    color: #000000;
    text-decoration: none;
}

.header-red-circle {
    margin: 5px 0; /* Default left-aligned */
    /* ... keep your existing pink border/shadow styles here ... */
}

/* --- Tablet & Mobile Adjustments (Below 768px) --- */
@media screen and (max-width: 767.98px) {
    .custom-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header-red-circle {
        margin: 10px auto !important; /* Forces Logo to Center */
    }

    .header-red-circle img {
        height: 80px; /* Resized for mobile */
        max-height: 40px;
    }
     .nav-item{
        font-size: 15px;
     }

    .header-contact {
        font-size: 15px !important; 
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-top: 5px;
        border-top: 1px solid #eee;
        padding-top: 8px;
    }

    .header-contact span {
        margin-right: 0 !important;
        display: block;
    }

    .auth-links .btn-sm {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .contact-item {
        white-space: nowrap;
    }
}

/* --- Small Mobile (Below 600px) --- */
@media only screen and (max-width: 600px) {
    .carousel {
        margin-top: 150px;
    }

    #my-carousel {
        margin-bottom: 30px;
        height: 370px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        position: absolute;
        top: 40%;
        transform: translateY(-55%);
    }

    .carousel-caption {
        right: 15%;
        top: 13rem;
        left: 15%;
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
        text-align: center;
    }

    .offers {
        padding-top: 2px;
    }
}

/* --- Extra Small Mobile (Below 500px) --- */
@media only screen and (max-width: 500px) {
    html, body {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
}

/* --- Tiny Devices (Below 400px) --- */
@media (max-width: 400px) {
    .header-contact {
        gap: 2px !important;
    }
}
