html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}





html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px !important;
/*    padding-top: 18% !important;*/
    /*position: relative;
    background-color: #f0f0f0;*/ /* Fallback background color */
    /*background-image: url('background-image.jpg');*/ /* Background image */
    /*background-size: cover;
    background-position: center;
    z-index: -1;*/
}

/*body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);*/ /* Semi-transparent dark overlay */
/*backdrop-filter: blur(8px);*/ /* Applying the blur effect */
/*z-index: 0;*/ /* Ensure the blur is above the background but behind the content */
/*}*/


h1, p, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*footer {
    position: relative;
    z-index: 1;*/ /* Ensure the footer is above the blur layer */
/*}*/

.atc-container {
    background: #333333;
    color: white;
}

.atc-header {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}


.atc-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.atc-left {
    text-align: left;
}

    .atc-left h1 {
        font-size: 24px;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .atc-left p {
        margin-top: 10px;
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: lighter;
    }


.highlight {
    color: #ff0000;
}


.atc-right img {
    height: 50px;
    max-width: 100%;
}


@media (max-width: 768px) {
    .atc-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .atc-left h1 {
        font-size: 20px;
    }

    .atc-left p {
        font-size: 12px;
    }

    .atc-right img {
        margin-top: 10px;
        height: 40px;
    }
}

.active {
    background: #e84141;
    color: white !important;
}

.nav-link:hover {
    background-color: #e84141;
    color: white !important;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    background-color: #fff;
    padding: 10px 20px;
}

.fixed-cart-icon {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    width: 60px; /* Adjust size */
    height: 60px; /* Adjust size */
    background-color: #e84141; /* Optional background color */
    border-radius: 50%; /* Circular icon */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure it stays above other elements */
    cursor: pointer;
}

    /* Cart icon image styling */
    .fixed-cart-icon img {
        width: 40px; /* Adjust the icon size */
        height: 40px;
        object-fit: contain;
    }

    /* Cart badge styling */
    .fixed-cart-icon .cart-badge {
        position: absolute;
        top: 5px;
        right: 5px;
        background-color: white;
        color: #e84141;
        border-radius: 50%;
        font-size: 14px;
        font-weight: bold;
        padding: 5px 7px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .fixed-cart-icon {
        width: 50px; /* Smaller button size for tablets and mobile */
        height: 50px;
        bottom: 15px; /* Adjust position */
        right: 15px;
    }

        .fixed-cart-icon img {
            width: 30px; /* Smaller icon size for smaller screens */
            height: 30px;
        }

        .fixed-cart-icon .cart-badge {
            font-size: 12px; /* Smaller badge font size */
            padding: 4px 6px; /* Adjust padding for smaller badge */
        }
}

@media (max-width: 480px) {
    .fixed-cart-icon {
        width: 45px; /* Further reduce button size for small mobile devices */
        height: 45px;
        bottom: 10px; /* Adjust position */
        right: 10px;
    }

        .fixed-cart-icon img {
            width: 25px; /* Smaller icon size */
            height: 25px;
        }

        .fixed-cart-icon .cart-badge {
            font-size: 10px; /* Further reduce badge font size */
            padding: 3px 5px; /* Adjust padding */
        }
}

body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Buttons in your brand color (red) */
.btn-danger {
    background-color: #e10613 !important;
    border-color: #e10613 !important;
}

    .btn-danger:hover {
        background-color: #c10411 !important;
        border-color: #c10411 !important;
    }

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.card {
    border-radius: 8px;
}

.card-body {
    padding: 1.25rem;
}

.btn-danger {
    background-color: #e10613 !important;
    border-color: #e10613 !important;
}

    .btn-danger:hover {
        background-color: #c10411 !important;
    }
.create-order-btn {
    float:right;
    margin-bottom: 5px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.page-container{
    margin-left:2%;
    max-width: 94%;
    margin-bottom: 45px;
}
