/* start global  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
}

a {
    text-decoration: none;
}

:root {
    --main-color: ;
    --bg-color: ;
    --transition: ;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

#summer,
#milkskake,
#hot-drinks,
#cold-drinks,
#juices,
#desert,
#baked-goods,
#breakfast,
#Authority,
#pizza,
#pasta,
#main-dishes,
#soup,
#sandwich,
#soft-drink,
#appetizers {
    scroll-margin-top: 70px;
}

/* End global  */

/* start header  */
header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
}

header .header-icon {
    border-radius: 50%;
    background-color: #171717;
    width: 40px;
    height: 40px;
}

header .header-icon img {
    width: 20px;
    height: 20px;
}

header button {
    border: none;
    background-color: white;
}

.language-select-container {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 1000;
    width: 90px;
    padding: 2px;
    border: 1px solid #00000042;
}

.lang {
    color: #000;
    font-size: 17px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.lang-hover-2 {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.lang:hover {
    cursor: pointer;
    background-color: blue;
    color: #fff;
}

#searchInputContainer {
    padding: 10px;
    background-color: white;
    position: absolute;
    top: 5px;
    right: -10px;
    z-index: 999;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease, width 0.5s ease;
    width: 20%;
}

#searchInputContainer.show {
    transform: translateY(0);
    width: 97%;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

#searchInput {
    width: 100%;
    padding: 5px 30px 5px 35px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #E7E7E7;
}

#searchInput:focus {
    outline: none;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000;
}

.close-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #000;
    cursor: pointer;
    border: 2px solid #000;
    border-radius: 50%;
    padding: 0 3px;
}

#headerContent {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#headerContent button {
    margin: 0 5px;
}

@media(max-width:567px) {
    #searchInputContainer.show {
        width: 90%;
    }

    header .header-icon {
        padding: 10px;
        font-size: 14px;
    }

    header button {
        margin-right: 0px;
    }

    #headerContent button {
        margin: 2px;
    }
}

/* End header  */

/* start banner-section  */
.banner-section {
    position: relative;
    height: 360px;
    border-radius: 10px;
    background-position: center;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.banner-section::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/banner-section.jpg);
    filter: blur(30px);
    z-index: 0;
    background-position: center;
    background-size: cover;
}

.banner-section img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: auto;
    z-index: 1;
}

@media(max-width:567px) {
    .container-fluid {
        width: 100% !important;
    }

    .banner-section {
        height: 225px;
    }

    .banner-section::before {
        filter: blur(0px);
    }

    .banner-section img {
        /* display: none; */
    }
}

/* End banner-section  */

/* start navbar  */
/* start side bar  */
.sidenav {
    height: 110vh;
    width: 0;
    position: fixed;
    top: 0;
    background-color: #fff;
    overflow-x: hidden;
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: width 0.3s ease;
}

.sidenav>div {
    overflow-y: auto;
    max-height: calc(100% - 60px);
}

.sidenav a {
    padding: 8px 8px 8px 35px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a .box img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.sidenav a .box p {
    position: absolute;
    bottom: -9px;
    left: 7px;
    font-size: 13px;
    font-weight: 600;
    color: #000000ab;
    background-color: #fff;
    padding: 3px;
    border-radius: 5px;
    text-transform: lowercase;
}

.sidenav .closebtn {
    position: absolute;
    top: 10px;
    left: 0%;
    z-index: 2;
}

#mainContent {
    margin-top: 70px;
}

#mainContent.blurred {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 253, 253, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 998;
    pointer-events: auto;
}

.fa-bars {
    font-size: 20px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 20px;
}

@media(max-width:567px) {
    .sidenav .closebtn {
        top: 10px;
    }

    .sidenav a {
        padding: 8px 8px 8px 38px;
    }

    .sidebar-container {
        top: 39%;
    }

    .fa-bars {
        padding: 10px;
    }

    .sidenav {
        left: -7%;
    }
}

/* End side bar   */

/* start side bar  */
.navbar-stick {
    position: relative;
    z-index: 990;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
    background-color: #fff;
    width: 100%;
}

.navbar-stick.sticky {
    position: fixed;
    top: 45px;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
}

.sidebar-stick {
    z-index: 999;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
}

.sidebar-stick.sticky {
    position: fixed;
    top: 60px !important;
    left: 0 !important;
    z-index: 999;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
}

.Navbar {
    padding-left: 10px;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}

.Navbar::-webkit-scrollbar {
    display: none;
    margin-top: 50px !important;
}

.Navbar a {
    background-color: #17171708;
    color: #171717;
    font-weight: 600;
    text-transform: lowercase;
    font-size: 16px;
    padding: 5px 15px;
    border-radius: 8px;
    margin: 0 2px;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;
    font-family: "Roboto";
    text-align: center;
}

.Navbar a.active {
    background-color: #000;
    color: #fff;
}

@media(max-width:567px) {

    .Navbar a {
        font-size: 14px;
    }

}

/* End navbar  */

.main-title {
    font-family: "Roboto", sans-serif;
    color: #171717;
    font-weight: 600;
    margin-bottom: 20px;
}

.card-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 5px 5px 20px 0 #17171733;
}

.card-hover-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
    text-align: center;
}

.card-text {
    text-align: left !important;
}

.card-box:hover .card-hover-box {
    opacity: 1;
}

button {
    /* width: 100%;
    height: 100%;
    padding: 0; */
    border: none;
    /* background: transparent; */
}

.card-body-item {
    padding: 12px;
    margin: 5px;
}

.card-body-item h5 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: #171717;
}

.cursor-pointer {
    cursor: pointer;
}

.rounded {
    border-radius: 10px !important;
}

.rounded-top {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;

}


.card-body-item-p {
    font-family: "Roboto", sans-serif;
    font-size: 13.78px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #171717;
    margin-bottom: 0;
}

.card-body-item-span {
    font-family: "Roboto", sans-serif;
    font-size: 13.56px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #171717CC;
    margin: 5px;
}

.new {
    text-align: left !important;
}

.card-hover-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFFCC;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 10;
    text-align: center;
}

.card:hover .card-hover-box {
    opacity: 1;
}

.card-hover-box p {
    font-family: "Roboto";
    font-size: 15.88px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.card-hover-box img {
    width: 40px;
    height: 40px;
}


.hot-drinks-price {
    bottom: 5px;
    color: #171717CC;
}

.footer h6 {
    font-family: "Roboto";
    font-size: 13.67px;
    font-weight: 400;
    color: #171717;
}

.footer p {
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 400;
    color: #171717;
}

.footer p a {
    font-family: "Roboto";
    font-size: 14px;
    font-weight: 600;
    color: #171717;
}

/* start exceptioncafe  */
.exceptioncafe .logo {
    height: 192px;
}

.exceptioncafe h2 {
    font-family: "Roboto";
    font-size: 20px;
    font-weight: 700;
    color: #171717;
}

.exceptioncafe .btns a button {
    width: 528px;
    height: 48px;
    border-radius: 100px;
    background-color: #171717;
    font-family: "Roboto";
    font-size: 15.88px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin: 5px;
    transition: all .5s ease;
}

.exceptioncafe .btns a button:hover {
    opacity: .9;
}

.exceptioncafe .leave-feed {
    margin-top: 40px;
}

.exceptioncafe .leave-feed a {
    text-decoration: none;
    transition: all .5s ease;
}

.exceptioncafe .leave-feed img {
    margin-right: 10px;
    display: inline-block;
}

.exceptioncafe .leave-feed button {
    background-color: #fff;
    border: 2px solid #171717;
    height: 52px;
    width: 528px;
    border-radius: 100px;
    font-family: "Roboto";
    font-size: 15.88px;
    font-weight: 600;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

.exceptioncafe .leave-feed button:hover {
    background-color: #171717;
    color: #fff;
}

svg path {
    transition: all .5s ease;
}

.exceptioncafe .leave-feed button:hover svg path {
    stroke: #fff;
}

@media (max-width:567px) {

    .exceptioncafe .btns a button,
    .exceptioncafe .leave-feed button {
        max-width: 290px;
    }
}

/* End exceptioncafe  */

/* start feedback  */
.feed .header span {
    font-family: "Roboto";
    font-size: 18px;
    font-weight: 600;
}

.form-feed textarea {
    height: 97px;
    border-radius: 8px;
    border: 1px solid #17171780;
}

.form-feed label {
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 400;
    color: #171717;
}

.form-feed .submit input {
    width: 99.82px;
    height: 48px;
    border-radius: 50px;
    border: none;
    background-color: #17171780;
    color: #fff;
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.required {
    font-family: "Roboto";
    font-size: 11.81px;
    font-weight: 400;
}

/* start rating */
#full-stars-example-two {

    .rating-group {
        display: inline-flex;
    }

    .rating__icon {
        pointer-events: none;
    }

    .rating__input {
        position: absolute !important;
        opacity: 0;
    }

    .rating__input--none {
        display: none
    }

    .rating__label {
        cursor: pointer;
        padding: 0 0.1em;
        font-size: 24px;
    }

    .rating__icon--star {
        color: #171717;
    }

    .rating__input:checked~.rating__label .rating__icon--star {
        color: #ddd;
    }

    .rating-group:hover .rating__label .rating__icon--star {
        color: #000;
    }

    .rating__input:hover~.rating__label .rating__icon--star {
        color: #ddd;
    }
}

/* end feedback  */

/* start modal  */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 253, 253, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-body img {
    width: 100%;
}

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

.hidden-important {
    display: none !important;
}

.modal-content {
    background-color: #fff;
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: 80%;
    border-radius: 8px;
    overflow-y: auto;
    padding: 0px;
    text-align: left;
    margin: auto;
}

.modal-body {
    padding: 0;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 999;
}

.modal-box {
    padding: 10px 20px;
}

.modal-content::-webkit-scrollbar {
    width: 5px;
}

.modal-content::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background-color: #888;
}

.modal-box h5 {
    font-family: "Roboto";
    font-size: 20px;
    font-weight: 600;
    color: #171717;
}

.modal-box h6 {
    font-family: "Roboto";
    font-size: 16px;
    font-weight: 600;
    color: #171717CC;
}

.modal-box p {
    font-family: "Roboto";
    font-size: 15px;
    font-weight: 400;
    color: #171717CC;
}


.modal-submit-btn button {
    font-family: "Nunito";
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    background-color: #171717;
    border-radius: 50px;
    padding: 10px 20px;
    /* تعديل الحواف */
    width: 100%;
    /* ليأخذ كامل العرض على الشاشات الصغيرة */
}

@media (max-width: 576px) {
    .modal-submit-btn button {
        font-size: 12px;
        /* تغيير حجم الخط للشاشات الصغيرة */
        padding: 8px 16px;
        /* تقليل المسافة حول النص */
    }
}


.variation-container {
    width: 100%;
}

.variation-container .variation,
.price-selection-title {
    font-family: "Roboto";
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.variation-container label,
.variation-container .price {
    font-family: "Roboto";
    font-size: 1.2rem;
    font-weight: 400;
    color: #000000;
    font-weight: bold;
}

.radio-box {
    width: 100% !important;
}




/* تنسيق قسم الأدوات الإضافية */
.add-ons-container {
    padding: 15px 0;
}

.add-ons-container p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.add-ons-container label {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    display: flex;
    align-items: center;
}

.add-ons-container input[type="checkbox"] {
    margin-right: 10px;
}

/* تنسيق الأزرار الخاصة بالأدوات الإضافية */
.add-ons-container .btn-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.add-ons-container .btn-group button {
    padding: 5px 10px;
    font-size: 18px;
    border-radius: 5px;
}

.add-ons-container .btn-group .btn-sm {
    font-size: 18px;
    width: 40px;
}

/* تنسيق الـ input الخاص بالكمية للأدوات الإضافية */
.add-ons-container input[type="number"] {
    width: 60px;
    text-align: center;
}

.price-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* مسافة بين الخيارات */
}


.price-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}


label {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.retail-price,
.wholesale-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.retail-price small,
.wholesale-price small {
    font-size: 0.9rem;
    color: #666;
}



/* تنسيق الكمية الرئيسية */
.w-100.d-flex.justify-content-center.my-4 {
    margin-top: 20px;
}

.w-100 .btn-group {
    display: flex;
    align-items: center;
    gap: 5px;
}

.w-100 .btn-group button {
    padding: 5px 15px;
    font-size: 18px;
    border-radius: 5px;
}

.w-100 .btn-group .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.w-100 .btn-group .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.w-100 .btn-group input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    height: 35px;
}

.variation-container {}

.variation-container .variation {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

.variation-container label,
.variation-container .price {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
}

.radio-box {
    width: 217px;
}

.radio-box .form-check {
    margin-bottom: 10px;
}


/* End modal  */

.item-box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 267px;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
    text-align: left;
}

.hot-drinks,
.items-card-h {
    height: auto;
    min-height: 100px;
}

.card-img-top {
    width: 100%;
    height: auto;
}

.card-body-item {
    padding-left: 10px;
    padding-right: 10px;
}

.card-hover-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 567px) {
    .item-box {
        width: 50%;
    }

    .card-text-width {
        /* width:100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis; */
    }

    .card-img-top {
        height: auto !important;
    }

    .hot-drinks,
    .items-card-h {
        height: auto;
    }

    .card-body-item {
        padding: 5px;
    }
}

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #171717;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 8px 15px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
    z-index: 999;
}

#scrollToTopBtn:hover {
    background-color: #000;
}

.cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 12px;

}

.cart-container {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99999;
    height: 100%;
    background-color: #ffffff;
    width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease, opacity 0.3s ease;
    overflow-y: auto;
    display: none;
    padding-bottom: 80px;
    /* زيادة المساحة للفوتر */
}

.cart-container .cart-header {
    width: 100%;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-container .cart-header i {
    font-size: 1.8rem;
    color: #333333;
}

.cart-container .cart-header .btn-close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333333;
    cursor: pointer;
}

.cart-container .cart-header span {
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 10px;
}

.cart-container .cart-footer {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #f9f9f9;
}

#btnClearCart {
    background-color: #dc3545;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 1rem;
}

.cart-container .cart-body {
    flex: 1;
    width: 100%;
}

.cart-item {
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.cart-item .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cart-item .text-muted {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: #28a745;
}

.addon-item,
.variation-item {
    margin-top: 5px;
    font-size: 0.9rem;
}

.quantity-decrease,
.quantity-increase {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    border: 1px solid #cccccc;
    background-color: #ffffff;
    cursor: pointer;
}

.quantity {
    font-size: 1rem;
    margin: 0 5px;
}

.remove-item {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    color: #dc3545;
}

/* استجابة للأجهزة الصغيرة */
@media (max-width: 768px) {
    .cart-container {
        width: 90%;
    }

    .cart-container .cart-header span {
        font-size: 1.2rem;
    }

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

    .cart-container .cart-header .btn-close-cart {
        font-size: 1.3rem;
    }
}

/* استجابة للأجهزة المتوسطة */
@media (max-width: 1024px) {
    .cart-container {
        width: 100%;
    }
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    margin-left: 15px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-variant {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

/* تحسين مظهر الإضافات */
.cart-item-addons {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.addon-badge {
    display: inline-block;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    color: #495057;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    margin: 2px 4px 2px 0;
    border: 1px solid #dee2e6;
    font-weight: 500;
}



.cart-item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item-subtotal {
    font-weight: bold;
    color: #28a745;
    font-size: 16px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 5px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.quantity-btn.plus {
    background: #28a745;
    color: white;
}

.quantity-btn.plus:hover {
    background: #218838;
}


.quantity-btn.delete-mode {
    background: #dc3545;
    color: white;
}

.quantity-btn.delete-mode:hover {
    background: #c82333;
}

.cart-item-quantity span {
    min-width: 20px;
    text-align: center;
    font-weight: bold;
}










.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-cart i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #dee2e6;
}

.empty-cart h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.empty-cart p {
    font-size: 14px;
}

/* تحسين الأنيميشن */
.cart-item {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* تحسين الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .cart-item {
        padding: 10px;
    }

    .cart-item-image {
        width: 50px;
        height: 50px;
        margin-left: 10px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-subtotal {
        font-size: 14px;
    }

    .addon-badge {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* إضافة تأثيرات hover للعناصر */
.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* تحسين مظهر badge العدد في أيقونة السلة */
.cart-count {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
