/* General Reset */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Navbar Styling */
.navbar {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    position: relative;
    z-index: 1000;
}

/* Sierra Nature Brand Title */
.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Align navbar items to the right */
.navbar-collapse {
    display: flex;
    justify-content: flex-end;
}

/* Styling for nav links */
.navbar-nav .nav-link {
    padding: 25px 20px;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Hover effect for nav links */
.navbar-nav .nav-link:hover {
    background-color: #28a745; /* Green color */
    color: white;
}

/* Offer Bar Styling */
.offer-bar {
    background-color: #28a745; /* Green color */
    color: #fff; /* White text for better contrast */
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Scroll effect */
.offer-text {
    display: flex;
    justify-content: flex-start;
    animation: scrollText 30s linear infinite;
}

.offer-text p {
    margin: 0;
    white-space: nowrap;
    padding: 0 50px;
}

/* Keyframe animation for scrolling */
@keyframes scrollText {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section */
.hero-section {
    padding: 0 25px; /* Add padding on the left and right sides */
    margin: 0; /* Remove margin */
    box-sizing: border-box; /* Ensures padding is included in the element's total width */
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: left; /* Align the heading to the left */
    margin-top: 20px;
}

.hero-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    text-align: left; /* Align the paragraph text to the left */
    margin-top: 15px;
}

.hero-section .col-md-6 {
    padding: 0;
}

/* Image Styling for Right Side */
.hero-section img {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: cover; /* Ensure the image covers the area without distortion */
}

/* Content Section */
.content-section {
    margin-top: 0;
    padding: 50px 0;
    background-color: #f4f4f4; /* Optional background color for better visibility */
}

.content-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-section .card:hover {
    transform: scale(1.05);
}

.content-section .card img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-section .card-body {
    padding: 20px;
    background-color: white;
}

.content-section .card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.content-section .card-body p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.content-section .card-body .btn-success {
    background-color: #28a745;  /* Green color */
    border-color: #28a745;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
}

.content-section .card-body .btn-success:hover {
    background-color: #218838;  /* Darker green for hover effect */
    border-color: #1e7e34;
    transform: scale(1.05);  /* Slightly enlarge the button on hover */
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
    .content-section .col-md-4 {
        margin-bottom: 30px;
    }
    
    .content-section .card img {
        height: 150px;
    }

    .content-section .card-body {
        padding: 15px;
    }
}

/* Footer Section */
footer {
    background-color: #222;
    color: white;
    padding: 20px 0;
}

footer h5 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .text-center {
    margin-top: 1.5rem;
}
/* Dropdown Hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none; /* Hide by default */
    position: absolute;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
}

.nav-item.dropdown {
    position: relative;
}

.nav-item .dropdown-item {
    padding: 10px 20px;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
}

.nav-item .dropdown-item:hover {
    background-color: #28a745; /* Green color */
    color: white;
}

/* Styling for the table */
.table th, .table td {
    text-align: center;
    padding: 15px;
    font-size: 1rem;
}

.table-primary {
    background-color: #28a745;;
    color: white;
}

/* Button hover effect */
.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    transform: scale(1.05);
}

/* Adjust the size of the date and time inputs */
input[type="date"],
input[type="time"],
input[type="text"] {
    padding: 8px;
    border: 1px solid #007bff;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 45%; /* Reduces width */
}

/* Add margin between the fields */
input[type="date"],
input[type="time"] {
    margin-right: 5%;
}

/* Optional: Adjust the terms checkbox container to center */
#terms-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

/* Dark Checkbox Style */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #333; /* Dark Border */
    border-radius: 4px;
    background-color: #333; /* Dark Background */
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

input[type="checkbox"]:checked {
    background-color: #006400; /* Dark Green when checked */
    border-color: #006400; /* Dark Green border when checked */
}

input[type="checkbox"]:checked::before {
    content: "✓"; /* Checkmark */
    position: absolute;
    top: -2px;
    left: 2px;
    font-size: 16px;
    color: white;
}
/* Sliding bar container */
.sliding-bar {
    background-color: #d4edda;  /* Light green background */
    padding: 40px 0;  /* Increase padding for a thicker bar */
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;  /* Ensure the bar takes up full width */
}

/* Sliding text */
.sliding-text {
    font-size: 1rem;  /* Increase font size for better visibility */
    font-weight: bold;
    color: red;
    margin: 0;
    position: absolute;
    animation: slideText 15s linear infinite;
    white-space: nowrap;
    display: inline-block;  /* Ensure the text behaves as an inline element */
}

/* Keyframe animation for sliding text */
@keyframes slideText {
    0% {
        transform: translateX(100%); /* Start off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* End off-screen to the left */
    }
}

/* Sliding Bar Container Styling */
.sliding-bars {
    background-color: red;  /* Red background for the sliding bar */
    color: white;           /* White text color */
    padding: 10px;          /* Padding for the content inside the bar */
    border-radius: 40px;    /* Rounded corners */
    margin-bottom: 20px;    /* Space below the sliding bar */
    position: relative;     /* Set to relative for absolute positioning of the text */
    overflow: hidden;       /* Ensures content outside the container will be hidden */
    width: 100%;            /* Full width of the container */
    display: flex;
    justify-content: center; /* Center the text horizontally */
    align-items: center;    /* Center the text vertically */
    box-sizing: border-box; /* Includes padding in the element's total width and height */
}

/* Sliding Text Animation */
.sliding-texts {
    font-size: 16px;              /* Set font size for text */
    font-weight: bold;            /* Bold text */
    white-space: nowrap;          /* Prevents text from wrapping */
    position: absolute;           /* Position the text absolutely inside the container */
    animation: slide 12s linear infinite; /* Animation to make the text slide continuously */
    text-align: center;           /* Ensure the text is centered inside */
    width: 100%;                  /* Ensure text spans across the full width */
}

/* Popup modal styles */
#packingFeesModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 999;
    padding: 10px;
}

#packingFeesModal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

#packingFeesModal img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

#packingFeesModal p {
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    color: black;
}

/* ------------------------------- thankyou page css code --------------------------------------------------*/

/* Cook Makers Section */
.cook-makers-section {
    background-color: #f4f4f4;
    padding-top: 50px;
    padding-bottom: 50px;
}

.cook-makers-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.cook-makers-section .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cook-makers-section .card:hover {
    transform: scale(1.05);
}

.cook-makers-section .card img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 250px;  /* Adjust height for the cook maker images */
    object-fit: cover;
}

.cook-makers-section .card-body {
    padding: 20px;
    background-color: white;
}

.cook-makers-section .card-body h5 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.cook-makers-section .card-body p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Mobile View Adjustments */
@media (max-width: 767px) {
    .cook-makers-section .col-md-4 {
        margin-bottom: 30px;
    }

    .cook-makers-section .card img {
        height: 180px;
    }

    .cook-makers-section .card-body {
        padding: 15px;
    }

    .cook-makers-section h2 {
        font-size: 1.75rem;
    }
}

/* Tablet View Adjustments (<=1024px) */
@media (max-width: 1024px) {
    .cook-makers-section .col-md-4 {
        margin-bottom: 25px;
    }

    .cook-makers-section .card img {
        height: 220px;
    }

    .cook-makers-section h2 {
        font-size: 2rem;
    }
}

/* Laptop View Adjustments (>=1025px) */
@media (min-width: 1025px) {
    .cook-makers-section .col-md-4 {
        margin-bottom: 20px;
    }

    .cook-makers-section .card img {
        height: 250px;
    }
}

body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

/* Carousel Banner */
.htl-hero-carousel .carousel-item {
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.htl-hero-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.htl-hero-carousel h1 {
    font-size: 3rem;
    font-weight: 700;
}

.htl-hero-carousel p.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Room Cards */
.htl-room-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .htl-room-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .htl-room-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-bottom: 1px solid #e0e0e0;
    }

.htl-room-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.htl-room-name {
    color: #28a745;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.htl-price {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 0.5rem;
}

.htl-btn-book {
    background-color: #28a745;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

    .htl-btn-book:hover {
        background-color: #218838;
        color: white;
    }

.htl-offer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Footer */
.htl-footer {
    background-color: #1f1f1f;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Typography */
@media (max-width: 767px) {
    .htl-hero-carousel h1 {
        font-size: 2rem;
    }

    .htl-hero-carousel p.lead {
        font-size: 1rem;
    }
}



.footer-dark-green {
    background-color: #1f7a31; /* WhatsApp green */
    border-color: #25D366;
    color: white;
    /*font-weight: bold;*/
}



main.food-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 992px) {
    main.food-container {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 576px) {
    main.food-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.food-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: auto;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

    .food-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(46, 125, 50, 0.3);
    }

.food-img-container {
    height: 140px;
    overflow: hidden;
    position: relative;
}

    .food-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.9);
        transition: filter 0.3s ease;
    }

.food-card:hover .food-img-container img {
    filter: brightness(1);
}

.food-offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #2e7d32;
    color: white;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 5px;
    z-index: 2;
}

.food-info-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2e7d32;
    color: white;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(46, 125, 50, 0.4);
    z-index: 2;
}

    .food-info-button:hover {
        background-color: #1b5e20;
    }

.food-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #2e7d32;
    text-align: center;
    margin-top: 10px;
}

.food-price-tag {
    font-weight: bold;
    color: #2e7d32;
    text-align: center;
}

.food-btn-order {
    background-color: #2e7d32;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px;
    font-weight: bold;
    margin-top: 10px;
}

    .food-btn-order:hover {
        background-color: #1b5e20;
    }

.food-btn-red {
    background-color: #d32f2f;
    color: white;
    border: none;
    font-weight: bold;
}

    .food-btn-red:hover {
        background-color: #b71c1c;
    }

.food-no-spinner::-webkit-inner-spin-button,
.food-no-spinner::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.food-no-spinner {
    -moz-appearance: textfield;
}

.food-floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    background-color: #2e7d32;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.food-hero-section {
    background-color: #e8f5e9;
}

.food-footer {
    background-color: #1b5e20;
    color: white;
}

    .food-footer a {
        color: #c8e6c9;
    }

        .food-footer a:hover {
            text-decoration: underline;
        }



.subscribe-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .subscribe-btn:hover {
        background-color: #218838;
        transform: scale(1.05);
    }

.review-section {
    background-color: #f8f9fa;
    padding: 50px 20px;
    text-align: center;
}

    .review-section h2 {
        font-size: 2.2rem;
        font-weight: bold;
        color: #2e7d32;
        margin-bottom: 30px;
    }

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 20px;
    margin: auto;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-height: 180px;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

    .testimonial-slide.active {
        opacity: 1;
        position: relative;
    }

    .testimonial-slide p {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 15px;
    }

.customer-name {
    font-weight: bold;
    color: #2e7d32;
    font-size: 1rem;
}
/* Body wrapper */
.view-body {
    padding: 40px 15px;
    background-color: #f9f9f9;
}

/* Box wrapper */
.view-info-box {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Section headers */
.view-section-title {
    color: #198754;
    border-left: 5px solid #198754;
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Gallery styles */
#view-gallery-track {
    display: flex;
    gap: 12px;
    transition: transform 0.6s ease;
    width: max-content;
}

.view-gallery-img {
    border-radius: 8px;
    object-fit: cover;
    height: 200px;
    flex-shrink: 0;
    width: 300px;
}

@media (max-width: 768px) {
    .view-gallery-img {
        width: 240px;
        height: 180px;
    }

    .view-header h1 {
        flex-grow: 1; /* so title takes available space */
        min-width: 0; /* allow text truncation if needed */
    }

    @media (max-width: 576px) {
        .view-header h1 {
            font-size: 1.5rem;
        }
    }


        .view-header a {
            align-self: flex-end;
        }

    .view-info-box {
        padding: 15px;
    }
}

/* Social Icons */
.view-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

    .view-social-icons a {
        font-size: 1.6rem;
        color: #555;
        transition: color .3s;
    }

        .view-social-icons a:hover {
            color: #198754;
        }

/* Offer Badge */
.view-offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Slide transition override */
.transition-ease {
    transition: transform 0.5s ease-in-out;
}

@keyframes addToCartBounce {
    0% {
        transform: scale(1);
        box-shadow: none;
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 10px #2e7d32;
    }

    100% {
        transform: scale(1);
        box-shadow: none;
    }
}

.add-to-cart-animate {
    animation: addToCartBounce 0.5s ease forwards;
}



.orderdetails-body {
    background-color: #f5fdf9;
    font-family: 'Segoe UI', sans-serif;
    color: #2c3e50;
}

.orderdetails-title {
    font-weight: 700;
    color: #157347;
}

.table th {
    background-color: #198754;
    color: white;
}

.orderdetails-pickup-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.orderdetails-pickup-card {
    flex: 1 1 45%;
    background: #e6fff0;
    border: 2px solid #a6d8a8;
    border-radius: 12px;
    padding: 18px 25px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

    .orderdetails-pickup-card:hover {
        border-color: #28a745;
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.3);
    }

    .orderdetails-pickup-card input[type='radio'] {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .orderdetails-pickup-card label {
        flex: 1;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
    }

    .orderdetails-pickup-card a {
        color: #198754;
        margin-left: 8px;
        font-weight: 500;
        text-decoration: none;
    }

        .orderdetails-pickup-card a:hover {
            text-decoration: underline;
        }

.orderdetails-pickup-price {
    font-weight: 700;
    margin-left: 10px;
    white-space: nowrap;
}

.orderdetails-pickup-card input[type='radio']:checked + label {
    background: #d0f0d9;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(25, 135, 84, 0.4);
    padding: 16px 25px;
    color: #157347;
}

.orderdetails-full-width {
    flex-basis: 100%;
}

/* Payment */
.orderdetails-payment-section {
    margin-top: 40px;
    margin-bottom: 30px;
    text-align: center;
}

.orderdetails-payment-title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1e7e34;
    margin-bottom: 20px;
}

.orderdetails-payment-toggle {
    display: inline-flex;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #198754;
    background: #e6fff0;
}

    .orderdetails-payment-toggle input[type='radio'] {
        display: none;
    }

    .orderdetails-payment-toggle label {
        padding: 12px 35px;
        cursor: pointer;
        font-weight: 600;
        color: #198754;
        transition: background-color 0.3s ease;
    }

        .orderdetails-payment-toggle label:hover {
            background-color: #c8f0cc;
        }

    .orderdetails-payment-toggle input[type='radio']:checked + label {
        background-color: #198754;
        color: white;
    }

#orderdetails-partialAmountContainer {
    margin-top: 25px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: none;
    text-align: left;
}

    #orderdetails-partialAmountContainer label {
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
    }

#partialAmount {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid #a6d8a8;
    outline-color: #28a745;
    transition: border-color 0.3s ease;
}

    #partialAmount:focus {
        border-color: #198754;
    }

/* Summary */
.orderdetails-final-summary {
    background-color: #e6fff0;
    border-left: 5px solid #28a745;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Note */
.orderdetails-note-box {
    background-color: #fff2f2;
    border-left: 5px solid #dc3545;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 30px;
}

/* Confirm button */
.orderdetails-btn-confirm {
    display: block;
    margin: 40px auto 0 auto;
    background-color: #198754;
    border: none;
    color: white;
    font-weight: 700;
    padding: 15px 55px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(25, 135, 84, 0.5);
    transition: background-color 0.3s ease;
}

    .orderdetails-btn-confirm:hover {
        background-color: #146c43;
    }


@media (max-width: 600px) {
    .orderdetails-pickup-group {
        flex-direction: column;
    }

    .orderdetails-pickup-card {
        flex-basis: 100%;
    }
}

.orderdetails-online-options {
    margin-top: 20px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

 .orderdetails-online-options {
  margin-top: 20px;
}

.orderdetails-warning-message {
    font-size: 0.95rem;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff3f3;
    border: 2px dashed #dc3545;
    color: #842029;
}


