﻿.shopping-cart-section {
    padding: 50px 25px;
}

.shopping-cart-area {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.shopping-cart-title {
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: #000000;
}

.shopping-cart-product-list-area {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
}


.shopping-cart-product-list-title-area {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    background-color: #F9FAFB;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.shopping-cart-product-list-title-left {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #939393;
}

.shopping-cart-product-list-title-center {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #939393;
}

.shopping-cart-product-list .shopping-cart-product {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #E8E8E8;
}

    .shopping-cart-product-list .shopping-cart-product:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

.shopping-cart-product-image-and-text-area {
    display: flex;
    align-items: center;
    column-gap: 24px;
}

.shopping-cart-product-image, .shopping-cart-product-image img {
    width: 148px;
    min-width: 148px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.shopping-cart-product-image {
    background: #F6F6F6;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
}

.shopping-cart-product-text {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.shopping-cart-product-category {
    font-family: 'Baloo Paaji 2';
    font-size: 14px;
    font-weight: 700;
    line-height: 22.04px;
    text-align: left;
    color: #939393;
}

.shopping-cart-product-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #1A1A1A;
}

.shopping-cart-product-count-and-remove-button {
    display: flex;
    align-items: center;
    column-gap: 12px;
}

.shopping-cart-product-qty-input {
    padding: 6px;
    border: 1px solid #E8E8E8;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

    .shopping-cart-product-qty-input input {
        max-width: 45px;
        text-align: center;
        border: none;
        outline: none;
        box-shadow: none;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #444444;
    }

        .shopping-cart-product-qty-input input::-webkit-outer-spin-button,
        .shopping-cart-product-qty-input input::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }

    .shopping-cart-product-qty-input button {
        border: none;
        background: none;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #939393;
    }

.shopping-cart-product-remove-button button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 28px;
    color: #D0121C;
}

.shopping-cart-product-price-title {
    text-align: center;
}

.shopping-cart-product-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 24.99px;
    letter-spacing: 0.2939999997615814px;
    text-align: right;
    color: #151515;
}

.continue-shopping {
    width: max-content;
    max-width: 100%;
    font-size: 14px;
    font-weight: 500;
    line-height: 23.89px;
    color: #444444;
    text-decoration: underline;
    text-underline-offset: 10px;
}

.shopping-cart-summary-area {
    display: flex;
    flex-direction: column;
    row-gap: 53px;
    margin-top: 52px;
}

.shopping-cart-summary-title {
    font-family: 'Inter';
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    color: #000000;
    padding-bottom: 12px;
    border-bottom: 1px solid #E3E3E3;
}

.shopping-cart-summary-box {
    background: #fff;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.shopping-cart-summary-list {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.shopping-cart-summary-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
}

.shopping-cart-summary-list-item-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    color: #626262;
}

.shopping-cart-summary-list-item-value {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #17212D;
    text-align: end;
}

    .shopping-cart-summary-list-item-value .free-cargo {
        font-family: 'Inter';
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        text-align: center;
        color: #212121;
        background: #FFCE13;
        padding: 4px 12px;
        border-radius: 50px;
    }

        .shopping-cart-summary-list-item-value .free-cargo + bdi {
            text-decoration: line-through;
        }

.shopping-cart-summary-total-price-box {
    padding: 24px;
    background: #F6F6F6;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.shopping-cart-summary-total-price-title-and-value {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.shopping-cart-summary-total-price-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #444444;
}

.shopping-cart-summary-total-price-value {
    font-family: 'Inter';
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    text-align: left;
    color: #000000;
}

.shopping-cart-summary-total-price-description svg {
    width: 20px;
    min-width: 20px;
    display: flex;
    margin-top: 2px;
}

    .shopping-cart-summary-total-price-description svg path {
        stroke: #596D79;
    }

.shopping-cart-summary-total-price-description {
    display: flex;
    column-gap: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #596D79;
    align-items: flex-start;
}

.shopping-cart-summary-complete-shopping-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    column-gap: 8px;
    padding: 12px 24px;
    background: #FFCE13;
    border: 1px solid #FFCE13;
    outline: none;
    box-shadow: none;
    font-family: 'Inter';
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #212121;
    border-radius: 6px;
}

.shopping-cart-title-and-button-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 8px;
}

.mobile-shopping-cart-payment-button {
    display: none;
}

    .mobile-shopping-cart-payment-button button {
        font-size: 14px;
        font-weight: 500;
        line-height: 23.89px;
        text-align: center;
        color: #fff;
        background: #D0121C;
        border: 1px solid #D0121C;
        padding: 8px 32px;
        border-radius: 50px;
        outline: none;
        box-shadow: none;
    }

.mobile-shopping-cart-product-list-area {
    display: none;
}

    .mobile-shopping-cart-product-list-area .mobile-shopping-cart-product {
        display: flex;
        align-items: center;
        column-gap: 24px;
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        border-bottom: 1px solid #E8E8E8;
    }

        .mobile-shopping-cart-product-list-area .mobile-shopping-cart-product:last-child {
            border-bottom: 0;
            padding-bottom: 0;
            margin-bottom: 0;
        }

.mobile-shopping-cart-product-image, .mobile-shopping-cart-product-image img {
    width: 148px;
    min-width: 148px;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 12px;
}

.mobile-shopping-cart-product-image {
    background: #F6F6F6;
    border: 1px solid #E8E8E8;
    position: relative;
}

.mobile-shopping-cart-product-properties {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    width: 100%;
}

.mobile-shopping-cart-product-title-and-remove-button {
    display: flex;
    justify-content: space-between;
    column-gap: 12px;
}

.mobile-shopping-cart-product-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #1A1A1A;
}

.mobile-shopping-cart-product-remove-button button {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #D0121C;
}

.mobile-shopping-cart-product-count-and-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 12px;
}

.mobile-shopping-cart-product-price {
    font-family: 'Baloo Paaji 2';
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.2939999997615814px;
    text-align: end;
    color: #E51D1D;
}

.mobile-shopping-cart-product-qty-input {
    padding: 6px;
    border: 1px solid #E8E8E8;
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    border-radius: 12px;
}

    .mobile-shopping-cart-product-qty-input button {
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        outline: none;
        box-shadow: none;
        color: #939393;
    }

    .mobile-shopping-cart-product-qty-input input {
        max-width: 45px;
        text-align: center;
        border: none;
        outline: none;
        box-shadow: none;
        font-size: 18px;
        font-weight: 400;
        line-height: 28px;
        color: #444444;
    }

.mobile-shopping-cart-product-image .mobile-shopping-cart-product-remove-button {
    display: none;
}




/*Sizin için beğendiklerimiz*/

.our-favorites-for-you-section {
    padding: 112px 0;
    padding-top: 50px;
}

.our-favorites-for-you-area {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

.our-favorites-for-you-text-area {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.our-favorites-for-you-title {
    font-family: 'Baloo Paaji 2';
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    text-align: left;
    color: #D0121C;
}

.our-favorites-for-you-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #626262;
}



/*Ürün Kartları*/


.our-favorites-product-card {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.our-favorites-product-card-image-area {
    background: #F6F6F6;
    padding: 50px 0;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.our-favorites-product-search {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #f8f9ff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .4s;
}

.our-favorites-product-card:hover .our-favorites-product-search {
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.our-favorites-product-card-text-area {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
}

.our-favorites-product-category {
    font-family: 'Baloo Paaji 2';
    font-size: 11.5px;
    font-weight: 700;
    line-height: 17.85px;
    letter-spacing: 1.0499999523162842px;
    text-align: center;
    color: #767676;
}

.our-favorites-product-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 23.63px;
    text-align: center;
    color: #1A1A1A;
}

.our-favorites-product-card-text-and-price-area {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.our-favorites-product-price-area {
    position: relative;
}

.our-favorites-product-add-basket-button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    background: #D0121C;
    border: 1px solid #D0121C;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 23.89px;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    width: max-content;
    text-decoration: none;
}

.our-favorites-product-card:hover .our-favorites-product-add-basket-button {
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.our-favorites-product-price {
    font-family: 'Baloo Paaji 2';
    font-size: 18px;
    font-weight: 700;
    line-height: 24.99px;
    letter-spacing: 0.2939999997615814px;
    text-align: center;
    color: #E51D1D;
    visibility: visible;
    opacity: 1;
    transition: .4s;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-favorites-product-card:hover .our-favorites-product-price {
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

.our-favorites-for-you-carousel .owl-dots {
    margin-top: 42px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

    .our-favorites-for-you-carousel .owl-dots button span {
        margin: 0 !important;
        width: 12px !important;
        height: 12px !important;
        background: #D9D9D9 !important;
        transition: .4s;
    }

    .our-favorites-for-you-carousel .owl-dots button.active span {
        margin: 0 !important;
        width: 60px !important;
        background: #D0121C !important;
        transition: .4s;
    }

.our-favorites-for-you-carousel .owl-nav {
    position: absolute;
    top: calc(50% - 54px);
    left: -18px;
    transform: translate(0, calc(-50% - 54px));
    width: calc(100% + 36px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

    .our-favorites-for-you-carousel .owl-nav .owl-prev {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff !important;
        border: 1px solid #E8E8E8 !important;
        border-radius: 50px;
        pointer-events: auto;
        position: relative;
    }

    .our-favorites-for-you-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff !important;
        border: 1px solid #E8E8E8 !important;
        border-radius: 50px;
        pointer-events: auto;
        position: relative;
    }

    .our-favorites-for-you-carousel .owl-nav .owl-prev span {
        display: none;
    }

    .our-favorites-for-you-carousel .owl-nav .owl-next span {
        display: none;
    }


    .our-favorites-for-you-carousel .owl-nav .owl-prev::after {
        content: "\f053";
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D0121C;
    }

    .our-favorites-for-you-carousel .owl-nav .owl-next::after {
        content: "\f054";
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D0121C;
    }


@media only screen and (max-width: 1199px) {
    .shopping-cart-product-image, .shopping-cart-product-image img {
        width: 110px;
        min-width: 110px;
        aspect-ratio: 1/1;
        object-fit: contain;
    }
}

@media only screen and (max-width: 991px) {
    .desktop-shopping-cart-list-area {
        display: none;
    }

    .mobile-shopping-cart-payment-button {
        display: block;
    }

    .shopping-cart-title {
        font-size: 26px;
        line-height: 36px;
    }

    .shopping-cart-summary-title {
        font-size: 26px;
        line-height: 36px;
    }

    .mobile-shopping-cart-product-list-area {
        display: block;
    }

    .our-favorites-for-you-title {
        font-size: 26px;
        line-height: 36px;
    }

    .our-favorites-for-you-description {
        font-size: 14px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile-shopping-cart-product-image, .mobile-shopping-cart-product-image img {
        width: 110px;
        min-width: 110px;
        aspect-ratio: 1/1;
        object-fit: contain;
    }

    .mobile-shopping-cart-product-title {
        font-size: 15px;
        line-height: 23px;
    }
}

@media only screen and (max-width: 475px) {
    .mobile-shopping-cart-product-image, .mobile-shopping-cart-product-image img {
        width: 90px;
        min-width: 90px;
        aspect-ratio: 1/1;
        object-fit: contain;
    }

        .mobile-shopping-cart-product-image .mobile-shopping-cart-product-remove-button {
            display: flex;
            position: absolute;
            top: -5px;
            right: -5px;
        }

            .mobile-shopping-cart-product-image .mobile-shopping-cart-product-remove-button button {
                background: #D0121C;
                color: #fff;
                border-radius: 50px;
                font-size: 15px;
            }

    .mobile-shopping-cart-product-title-and-remove-button .mobile-shopping-cart-product-remove-button {
        display: none;
    }

    .mobile-shopping-cart-product-qty-input {
        padding: 0;
        border: none;
    }

    .mobile-shopping-cart-product-title {
        font-size: 14px;
        line-height: 22px;
    }

    .mobile-shopping-cart-product-qty-input input {
        max-width: 35px;
        font-size: 16px;
        line-height: 26px;
    }

    .shopping-cart-title {
        font-size: 24px;
        line-height: 34px;
    }

    .shopping-cart-summary-title {
        font-size: 24px;
        line-height: 34px;
    }

    .our-favorites-for-you-title {
        font-size: 24px;
        line-height: 34px;
    }

    .our-favorites-for-you-description {
        font-size: 14px;
        line-height: 24px;
    }
}

.basket-product-line-item {
    border: 1px solid #E8E8E8;
}

.product-image-title-area {
    display: flex;
    gap: 12px;
}

.basket-product-remove button {
    width: auto;
    background: none;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 20px;
    color: #8C8C8C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter';
    line-height: 20px;
    text-wrap-mode: nowrap;
}

    .basket-product-remove button i {
        margin-left: 10px;
    }

.shopping-cart-product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.basket-product-line {
    display: grid;
    grid-template-columns: 165px auto 115px 300px;
    justify-items: start;
    align-items: center;
}

    .basket-product-line > * {
        height: 165px;
        width: 100%;
        border: 0.5px solid #E3E3E3;
        border-right: none;
        box-sizing: border-box;
        font-family: 'Inter';
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: #212121;
    }

        .basket-product-line > * span {
            font-family: 'Inter';
            font-size: 14px;
            line-height: 24px;
            font-weight: 500;
            color: #727272;
        }

.basket-product-image-area {
    background: #F9FAFB;
    border: 1px solid #E3E3E3;
    border-right: none;
    min-width: 165px;
    max-width: 165px;
    min-height: 165px;
}

    .basket-product-image-area img {
        max-width: 165px;
        object-fit: cover;
        aspect-ratio: 1/1;
        padding-bottom: 2px;
    }

.basket-product-text-section {
    padding: 12px 12px;
}

.basket-product-tax-section {
    padding: 12px 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.basket-product-price-section {
    padding: 12px 12px;
    border-right: 1px solid #E3E3E3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 3px;
}

.basket-product-text-area {
    display: flex;
    flex-direction: column;
    row-gap: 2px;
    padding-right: 12px;
}

.basket-product-total-price {
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: #000000;
}

.basket-product-unit-section {
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: #000000;
}

.basket-product-count-and-remove {
    align-items: center;
    justify-content: flex-start;
    display: flex;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: #000000;
    flex-wrap: nowrap;
    flex-direction: row;
}

.basket-product-price {
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: right;
    color: #000000;
}

.basket-product-price-section > * {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.basket-product-qty-input {
    padding: 2px;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .basket-product-qty-input button {
        width: 40px;
        height: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        box-shadow: none;
        outline: none;
        color: #939393;
    }

        .basket-product-qty-input button img {
        }

.product-qty {
    text-align: center;
    width: 15px;
    margin: auto;
}

.basket-product-title {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: #212121;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    row-gap: 20px;
    height: 100%;
    padding: 96px 80px;
}

.cart-empty-text {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    max-width: 400px;
}

.cart-empty-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    column-gap: 8px;
    padding: 12px 24px;
    background: #FFCE13;
    border: 1px solid #FFCE13;
    outline: none;
    box-shadow: none;
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    color: #212121;
    border-radius: 6px;
}

.basket-price-remove-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.basket-product-qty-input input {
    width: auto;
    max-width: 75px;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #444444;
    padding: 0 !important;
}

.basket-product-qty-input button:hover {
    color: var(--bs-btn-hover-color);
    background-color: transparent !important;
    border-color: var(--bs-btn-hover-border-color);
}

.shopping-cart-summary-request-quote-button .btn-info {
    background-color: #0dcaf0;
    border-color: #0dcaf0;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

    .shopping-cart-summary-request-quote-button .btn-info:hover,
    .shopping-cart-summary-request-quote-button .btn-info:not(.disabled):hover {
        background-color: #0aa8c7;
        border-color: #0aa8c7;
        color: #fff;
    }

    .shopping-cart-summary-request-quote-button .btn-info.disabled {
        background-color: #6c757d;
        border-color: #6c757d;
    }

.b2c-cart-header {
    display: flex;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    background-color: #F9FAFB;
}

    .b2c-cart-header .header-item,
    .b2c-cart-item > div {
        text-align: left;
    }

    .b2c-cart-header .product, .b2c-cart-item .b2c-item-product {
        flex: 4;
    }

    .b2c-cart-header .header-item:not(.product), .b2c-cart-item > div:not(.b2c-item-product) {
        flex: 1;
        text-align: center;
    }

    .b2c-cart-header .action, .b2c-cart-item .b2c-item-delete {
        flex: 0.5;
    }

.item-details .item-category {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 500;
}

.item-details .item-attributes {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.b2c-item-price.discounted {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

    .b2c-item-price.discounted del {
        color: #9ca3af;
        font-size: 0.85em;
    }

    .b2c-item-price.discounted span {
        color: #ef4444;
        font-weight: 600;
    }

div.b2c-cart-header {
    padding: 12px 16px;
}

.shopping-cart-product-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}


.b2c-cart-item {
    display: flex;
    align-items: center;
    padding: 16px;
}

.b2c-item-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .b2c-item-product .item-image {
        width: 80px;
        height: 80px;
        object-fit: contain;
        border: 1px solid #f3f4f6;
        border-radius: 8px;
    }

    .b2c-item-product .item-title {
        font-weight: 600;
        color: #111827;
        text-decoration: none;
    }

    .b2c-item-product .item-sku,
    .b2c-item-product .item-weight {
        font-size: 12px;
        color: #6b7280;
    }

.b2c-item-quantity .basket-product-qty-input {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 4px;
}

.b2c-item-quantity .add-to-cart-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: none;
    background: none !important;
}

.b2c-item-quantity .qty-count {
    background: none;
    border: none;
    font-size: 18px;
    font-weight: bold;
    color: #374151;
    cursor: pointer;
    width: 25px;
}

.b2c-item-total-price {
    font-weight: 600;
}

.b2c-item-delete button {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 18px;
}

    .b2c-item-delete button:hover {
        color: #ef4444;
    }

.shopping-cart-summary-area {
    margin-top: 0;
}

.shopping-cart-summary-box {
    row-gap: 16px;
}

.shopping-cart-summary-list-item-value .free-cargo {
    color: #16a34a;
    font-weight: 600;
}

.mobile-cart-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

    .mobile-cart-footer .total-price-area {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .mobile-cart-footer .total-price-area .price-label {
            font-size: 0.8rem;
            color: #6b7280;
        }

        .mobile-cart-footer .total-price-area .price-value {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
        }

    .mobile-cart-footer .checkout-button {
        flex-grow: 1;
        text-align: center;
        padding: 0.75rem;
        background-color: #FFCE13;
        color: #212121;
        border-radius: 6px;
        font-weight: 600;
        text-decoration: none;
    }


@media (max-width: 991px) {
    .b2c-item-product {
        display: flex;
        height: 120px;
        gap: 0px !important;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: unset;
        justify-content: space-between;
    }

    .b2c-cart-header,
    .desktop-cart-items {
        display: none;
    }

    .item-footer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .item-footer button {
            border: none;
        }

    .shopping-cart-product-list-area {
        border: none;
    }

    .shopping-cart-area {
        background-color: transparent;
        padding: 0;
        border: none;
    }

    .shopping-cart-product-list {
        margin-top: 0;
        gap: 12px;
    }

    #cart-summary-column {
        display: none !important;
    }

    .mobile-cart-footer {
        display: flex;
    }

    .b2c-cart-item {
        flex-direction: column;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 1rem;
        position: relative;
    }

    .mobile-item-top-row {
        display: flex;
        width: 100%;
        height: 120px;
        gap: 1rem;
        align-items: flex-start;
    }

    .b2c-cart-item .b2c-item-product {
        flex: 1;
        gap: 1rem;
    }

    .b2c-cart-item .item-details {
        display: flex;
        flex-direction: column;
    }

    .b2c-cart-item .b2c-item-delete {
        flex-basis: auto;
    }

    .mobile-item-bottom-row {
        display: flex;
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f3f4f6;
    }

        .mobile-item-bottom-row .price-info {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

            .mobile-item-bottom-row .price-info .label {
                font-size: 0.8rem;
                color: #6b7280;
            }

            .mobile-item-bottom-row .price-info .value {
                font-weight: 600;
            }

    .b2c-cart-item .b2c-item-quantity {
        flex-basis: auto;
    }

    .b2c-cart-item .b2c-item-unit,
    .b2c-cart-item .b2c-item-total-price {
        display: none;
    }

    .basket-product-remove {
        display: unset !important;
    }

    .b2c-item-product-image img {
        max-width: 80px;
    }
}
