@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root {
    --green: #27ae60;
    --black: #192a56;
    --light-color: #666;
    --box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .1);
}

* {
    font-family: 'Nunito' sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    border: none;
    text-transform: capitalize;
    transition: all .2s linear;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 5.5rem;
    scroll-behavior: smooth;
}

body {
    overflow: hidden;
    margin: 0;
    padding: 0 !important;
}

section {
    padding: 7rem 9%;
}

section:nth-child(even) {
    background: #eee;
}

.sub-heading {
    text-align: center;
    color: var(--green);
    font-size: 2rem;
    padding-top: 1rem;
}

.heading {
    text-align: center;
    color: var(--black);
    font-size: 3rem;
    padding-bottom: 4rem;
    text-transform: uppercase;
}

.btn {
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.7rem;
    color: #fff;
    background: var(--black);
    border-radius: .5rem;
    cursor: pointer;
    padding: .8rem 3rem;
}

.btn:hover {
    background: var(--green);
    letter-spacing: .1rem;
}


/* SCROLL TO TOP Section CSS Start */
.scroll-to-top {
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 999;
    background: var(--green);
    color: #fff !important;
    border-radius: 100%;
}

.scroll-to-top i {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-align: center;
    font-size: 22px;
    line-height: 50px;
    display: block;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.08);
}

.scroll-to-top:hover,
.scroll-to-top:focus {
    text-decoration: none;
}

.reveal {
    transition: all 0.3s;
    cursor: pointer;
    opacity: 1;
}
/* SCROLL TO TOP Section CSS End */


/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: var(--green) #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 16px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--green);
    border-radius: 10px;
    border: 3px solid #ffffff;
}


/* loader Section css Start  */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10000;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.loader-container img {
    width: 35rem;
}

.fade-out {
    top: 110%;
    opacity: 0;
}
/* loader Section css End  */


/* Header Section css Start  */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: background-color 0.3s;
    background: transparent;
}

header .toggler i {
    text-align: center;
    color: var(--black);
    font-size: 1.7rem;
}

header #menu-bars {
    display: none;
}

header .logo {
    color: var(--black);
    font-size: 2.5rem;
    font-weight: bolder;
}

header .logo i {
    color: var(--green);
}

header .navbar a {
    font-size: 1.7rem;
    border-radius: .5rem;
    padding: .5rem 1.5rem;
    color: var(--black);
}

header .navbar a.active,
header .navbar a:hover {
    color: white;
    background: var(--green);
}

header .icons i,
header .icons a {
    cursor: pointer;
    margin-left: .5rem;
    height: 4.5rem;
    line-height: 4.5rem;
    width: 4.5rem;
    text-align: center;
    font-size: 1.7rem;
    color: var(--black);
    border-radius: 50%;
    background: #eee;
}

header .icons .count {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    background: var(--green);
    color: white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

header .icons a {
    position: relative;
}
/* Header Section css End  */


/* Home Section CSS Start  */
.home .home-slider .slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 9rem;
}

.home .home-slider .slide .content {
    flex: 1 1 45rem;
}

.home .home-slider .slide .image {
    flex: 1 1 45rem;
}

.home .home-slider .slide .image img {
    width: 100%;
}

.home .home-slider .slide .content span {
    color: var(--green);
    font-size: 2.5rem;
}

.home .home-slider .slide .content h3 {
    color: var(--black);
    font-size: 7rem;
}

.home .home-slider .slide .content p {
    color: var(--light-color);
    font-size: 2.2rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.swiper-pagination-bullet-active {
    background: var(--green);
}
/* Home Section CSS End  */


/* About Section CSS Start */
.about .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.about .row .image {
    flex: 1 1 45rem;
}

.about .row .image img {
    width: 100%;
}

.about .row .content {
    flex: 1 1 45rem;
}

.about .row h3 {
    color: var(--black);
    font-size: 4rem;
    padding: .5rem 0;
}

.about .row p {
    color: var(--light-color);
    font-size: 1.5rem;
    padding: .5rem 0;
    line-height: 2;
}

.about .row .content .icons-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
    margin-top: .5rem;
}

.about .row .content .icons-container .icons {
    background: #eee;
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex: 1 1 17rem;
    padding: 1.5rem 1rem;
}

.about .row .content .icons-container .icons i {
    font-size: 2.5rem;
    color: var(--green);
}

.about .row .content .icons-container .icons span {
    font-size: 1.5rem;
    color: var(--black);
}
/* About Section CSS End */


/* Menu Section CSS Start */
.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    background: #fff;
    border-radius: .5rem;
    border: .1rem solid rgba(0, 0, 0, .2);
    box-shadow: var(--box-shadow);
}

.menu .box-container .box .image {
    height: 25rem;
    width: 100%;
    padding: 1.5rem;
    overflow: hidden;
    position: relative;
}

.menu .box-container .box .image img {
    height: 100%;
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

.menu .box-container .box .image .fa-heart {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    text-align: center;
    font-size: 2rem;
    background: #fff;
    border-radius: 50%;
    color: var(--black);
}

.menu .box-container .box .image .fa-heart:hover {
    background: var(--green);
    color: #fff;
}

.menu .box-container .box .content {
    padding: 2rem;
    padding-top: 0;
}

.menu .box-container .box .content .stars {
    padding-bottom: 1rem;
}

.menu .box-container .box .content .stars i {
    font-size: 1.7rem;
    color: var(--green);
}

.menu .box-container .box .content h3 {
    color: var(--black);
    font-size: 2.5rem;
}

.menu .box-container .box .content p {
    color: var(--light-color);
    font-size: 1.6rem;
    padding: .5rem 0;
    line-height: 1.5;
}

.menu .box-container .box .content .price-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu .box-container .box .content .price-cart .btn {
    margin-left: auto;
}

.menu .box-container .box .content .price {
    color: var(--green);
    margin-left: 1rem;
    font-size: 2.5rem;
}
/* Menu Section CSS End */


/* review Section CSS Start */
.review .slide {
    justify-content: center;
    text-align: center;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, .2);
    border-radius: .5rem;
    position: relative;
}

.review .slide .fa-quote-right {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    color: #ccc;
}

.review .slide .user {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding-bottom: 1.5rem;
}

.review .slide .user img {
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}

.review .slide .user h3 {
    color: var(--black);
    font-size: 2rem;
    padding-bottom: .5rem;
}

.review .slide .user i {
    font-size: 1.3rem;
    color: var(--green);
}

.review .slide p {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--light-color);
}
/* review Section CSS End */


/* Contact Section CSS Start */
.contact form {
    max-width: 90rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: .1rem solid rgba(0, 0, 0, .2);
    background: #fff;
    padding: 1.5rem;
    margin: 0 auto;
}

.contact form .inputBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact form .inputBox .input {
    width: 49%;
}

.contact form .input span {
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color: var(--light-color);
}

.contact form .inputBox .input input {
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    margin-bottom: 1rem;
    width: 100%;
}

.contact form .inputBox .input input:focus {
    border: .3rem solid var(--green);
}

.contact form .input textarea {
    background: #eee;
    border-radius: .5rem;
    padding: 1rem;
    font-size: 1.6rem;
    color: var(--black);
    text-transform: none;
    margin-bottom: 1rem;
    width: 100%;
}

.contact form .input textarea:focus {
    border: .3rem solid var(--green);
}

.contact form .input textarea {
    height: 20rem;
    resize: none;
}

.contact form .btn {
    margin-top: 0;
}
/* Contact Section CSS End */


/* Footer Section CSS Start */
.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 1.5rem;
}

.footer .box-container .box h3 {
    padding: .5rem 0;
    font-size: 2.5rem;

    color: var(--black);
}

.footer .box-container .box a {
    display: block;
    padding: .5rem 0;
    font-size: 1.5rem;
    color: var(--black);
}

.footer .box-container .box a:hover {
    color: var(--green);
    text-decoration: underline;
}

.footer .credit p {
    text-align: center;
    border-radius: .1rem solid rgba(0, 0, 0, .1);
    font-size: 2rem;
    color: var(--black);
    padding: .5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.footer .credit a {
    color: var(--green);
}
/* Footer Section CSS End */

/* media Queries */
@media (max-width:991px) {
    html {
        font-size: 55%;
    }

    header {
        padding: 1rem 2rem;
    }

    Section {
        padding: 2rem;
    }
}

@media (max-width:768px) {
    header #menu-bars {
        display: inline-block;
    }

    header .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: .1rem solid rgba(0, 0, 0, .2);
        border-bottom: .1rem solid rgba(0, 0, 0, .2);
        padding: 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    header .navbar a {
        display: block;
        padding: 1.5rem;
        margin: 1rem;
        font-size: 2rem;
        background: #eee;
    }

    #search-form #search-box {
        width: 90%;
        margin: 0 1rem;
    }

    .home .home-slider .slide .content h3 {
        font-size: 5rem;
    }
}

@media (max-width:450px) {
    html {
        font-size: 50%;
    }

    .dishes .box-container .box img {
        height: auto;
        width: 100%;
    }

    .contact form .inputBox .input {
        width: 100%;
    }
}

@media (max-width:375px) {
    header .icons i,
    header .icons a {
        height: 4rem;
        line-height: 4rem;
        width: 4rem;
        font-size: 1.5rem;
    }

    header .icons .count {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 1rem;
    }
}

@media (max-width:350px) {
    header .icons i,
    header .icons a {
        height: 3.8rem;
        line-height: 3.8rem;
        width: 3.8rem;
        font-size: 1.4rem;
    }
}

@media (max-width:338px) {
    header .icons i,
    header .icons a {
        height: 3.4rem;
        line-height: 3.4rem;
        width: 3.4rem;
        font-size: 1.4rem;
    }
}





/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 80rem;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--box-shadow);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-2rem);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--light-color);
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--black);
}

.modal-body {
    display: flex;
    gap: 3rem;
    padding: 3rem;
}

.modal-image {
    flex: 1;
    max-width: 35rem;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.modal-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.modal-details h2 {
    font-size: 3rem;
    color: var(--black);
    margin: 0;
}

.modal-stars {
    display: flex;
    gap: 0.5rem;
}

.modal-stars i {
    color: #ffa500;
    font-size: 1.8rem;
}

.modal-description {
    font-size: 1.6rem;
    color: var(--light-color);
    line-height: 1.8;
    margin: 0;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--green);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-add-to-cart {
    align-self: flex-start;
    font-size: 1.8rem;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-add-to-cart:hover {
    background: var(--green);
    transform: translateY(-0.2rem);
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-track img {
    width: 100%;
    flex-shrink: 0;
    border-radius: 1rem;
}

/* Navigation buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-btn.prev {
    left: 1rem;
}

.carousel-btn.next {
    right: 1rem;
}

/* Mobile responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 2rem;
    }

    .modal-body {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .modal-details h2 {
        font-size: 2.5rem;
    }

    .close-modal {
        top: 1rem;
        right: 1.5rem;
        font-size: 2.5rem;
    }
}

/* Eye Button Positioning for Menu Items */
.menu .box .image .fa-eye {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    border-radius: 50%;
    background: #fff;
    color: var(--black);
    text-align: center;
    transition: all 0.3s ease;
}

.menu .box .image .fa-eye:hover {
    background: var(--green);
    color: #fff;
}

/* Heart Button Active State */
.menu .box .image .fa-heart.active,
.dishes .box .fa-heart.active {
    color: #e74c3c !important;
    background: rgba(231, 76, 60, 0.1);
}

.menu .box .image .fa-heart:hover,
.dishes .box .fa-heart:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Dishes Section Eye Button (already positioned correctly) */
.dishes .box .fa-eye {
    position: absolute;
    top: 1rem;
    left: 1rem;
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    font-size: 2rem;
    border-radius: 50%;
    background: #fff;
    color: var(--black);
    text-align: center;
    transition: all 0.3s ease;
}

.dishes .box .fa-eye:hover {
    background: var(--green);
    color: #fff;
}

/* Wishlist Modal Styles */
.wishlist-content {
    max-width: 90rem;
    max-height: 90vh;
}

.wishlist-header {
    padding: 2rem 3rem 1rem;
    border-bottom: 1px solid #eee;
}

.wishlist-header h2 {
    color: var(--black);
    font-size: 2.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wishlist-header i {
    color: var(--green);
}

.wishlist-body {
    padding: 2rem 3rem;
    max-height: 60vh;
    overflow-y: auto;
}

.empty-wishlist {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-color);
}

.empty-wishlist i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 2rem;
}

.empty-wishlist h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.wishlist-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background: #fff;
    box-shadow: var(--box-shadow);
}

.wishlist-item-image {
    width: 14rem;
    height: 9rem;
    border-radius: 1rem;
    overflow: hidden;
    flex-shrink: 0;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-details h4 {
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.wishlist-item-details .price {
    font-size: 1.6rem;
    color: var(--green);
    font-weight: bold;
}

.wishlist-item-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.wishlist-item-actions .btn {
    padding: 0.8rem 2rem;
    font-size: 1.4rem;
    margin: 0;
}

.remove-btn {
    background: none;
    font-size: 3rem;
    color: #e74c3c;
}

/* Cart Modal Styles */
.cart-content {
    max-width: 70rem;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-header {
    background: var(--green);
    color: white;
    padding: 2rem;
    text-align: center;
}

.cart-header h2 {
    margin: 0;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cart-header i {
    font-size: 2.5rem;
}

.cart-body {
    padding: 2rem;
    max-height: 50vh;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    color: var(--light-color);
}

.empty-cart i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--green);
}

.empty-cart h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    margin-bottom: 2rem;
    position: relative;
    background: white;
    box-shadow: var(--box-shadow);
}

.cart-item-image {
    flex-shrink: 0;
    width: 14rem;
    height: 8rem;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-details h4 {
    color: var(--black);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.cart-item-details .price {
    color: var(--green);
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    background: var(--green);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--black);
}

.quantity {
    font-size: 1.6rem;
    font-weight: bold;
    min-width: 2rem;
    text-align: center;
}

.cart-item-total {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--black);
}

.cart-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total h3 {
    color: var(--black);
    font-size: 2.2rem;
    margin: 0;
}

.checkout-btn {
    font-size: 1.6rem;
    padding: 1.2rem 3rem;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkout-btn:hover {
    background: var(--black);
}

/* Mobile responsive wishlist */
@media (max-width: 768px) {
    .wishlist-item, .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .wishlist-item-actions {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .wishlist-item-actions .btn {
        flex: 1;
    }

    .wishlist-header, .cart-header,
    .wishlist-body, .cart-body {
        padding: 1.5rem 2rem;
    }

    .cart-footer {
        flex-direction: column;
        gap: 2rem;
    }

    .cart-content {
        max-width: 95%;
    }
}

/* Checkout Modal Styles */
.checkout-content {
    max-width: 80rem;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-header {
    background: var(--green);
    color: white;
    padding: 2rem;
    text-align: center;
}

.checkout-header h2 {
    margin: 0;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.checkout-body {
    padding: 2rem 3rem;
}

.checkout-section {
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 1rem;
    background: #fff;
}

.checkout-section h3 {
    color: var(--black);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkout-section h3 i {
    color: var(--green);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background: #fff;
    color: var(--black);
    font-family: 'Nunito', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.order-item-qty {
    font-size: 1.4rem;
    color: var(--light-color);
}

.order-item-price {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green);
}

.total-amount {
    background: var(--green);
    color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.total-amount h3 {
    margin: 0;
    font-size: 2.2rem;
}

.payment-options {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    flex: 1;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #ddd;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-option label i {
    font-size: 2rem;
    color: var(--light-color);
}

.payment-option label span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--black);
}

.payment-option input[type="radio"]:checked + label {
    border-color: var(--green);
    background: rgba(39, 174, 96, 0.1);
}

.payment-option input[type="radio"]:checked + label i {
    color: var(--green);
}

.payment-details {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
}

.checkout-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn-secondary {
    background: var(--light-color);
    color: white;
}

.btn-secondary:hover {
    background: var(--black);
}

.btn-primary {
    background: var(--green);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
}

.btn-primary:hover {
    background: var(--black);
}

/* Responsive Design for Checkout */
@media (max-width: 768px) {
    .checkout-content {
        max-width: 95%;
        max-height: 95vh;
    }
    
    .checkout-body {
        padding: 1.5rem 2rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout-actions button {
        width: 100%;
    }
}