@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-SemiBold.eot');
    src: url('/fonts/Oswald-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Oswald-SemiBold.woff2') format('woff2'),
    url('/fonts/Oswald-SemiBold.woff') format('woff'),
    url('/fonts/Oswald-SemiBold.ttf') format('truetype'),
    url('/fonts/Oswald-SemiBold.svg#Oswald-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Oswald';
    src: url('/fonts/Oswald-Bold.eot');
    src: url('/fonts/Oswald-Bold.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Oswald-Bold.woff2') format('woff2'),
    url('/fonts/Oswald-Bold.woff') format('woff'),
    url('/fonts/Oswald-Bold.ttf') format('truetype'),
    url('/fonts/Oswald-Bold.svg#Oswald-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

img, a {
    -webkit-user-drag: none;
}

html, body {
    font: bold 16px 'Roboto', sans-serif;
    line-height: 16px;
    color: #000;
    background: #fff;
    height: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a, a:hover, a:visited {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    line-height: 1;
}

.header {
    width: 100%;
    padding: 0 15%;
    border-bottom: 16px solid #E4002B;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 16px;
}

.logo img {
    max-width: 100px;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.basket {
    background-image: url('/img/basket.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 28px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}

.content {
    width: 100%;
    flex: 1;
}

.slider {
    width: 100%;
}

.slider img {
    width: 100%;
}

.prev {
    background-image: url('/img/prev.png');
    left: 16px;
}

.next {
    background-image: url('/img/next.png');
    right: 16px;
}

.prev, .next {
    height: 38px;
    width: 38px;
    display: block;
    position: absolute;
    z-index: 1;
    margin: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    cursor: pointer;
}

.delivery {
    background: #F2F2F2;
    padding: 24px 15%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.delivery-title {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.delivery-methods {
    display: flex;
    flex-direction: row;
    width: 100%;
    white-space: nowrap;
}

.delivery-method {
    padding: 12px 36px;
    border-radius: 4px;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 1px 4px 14px 0 rgba(0, 33, 71, .07);
    cursor: pointer;
    width: 100%;
}

.delivery-method img {
    max-width: 32px;
    filter: grayscale(100%) contrast(200%);
}

.delivery-method-selected {
    background: #000;
    color: #fff;
}

.delivery-method-selected img {
    filter: grayscale(100%) contrast(200%) invert(100%);
}

.delivery-controls {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

.delivery-option {
    display: block;
    width: 100%;
}

.delivery-option input {
    width: 100%;
    padding: 18px 12px;
    border: 1px solid #DCDFE6;
    outline: 1px solid #DCDFE6;
}

.pickup-option select {
    width: 100%;
    padding: 17px 16px;
    border: 1px solid #DCDFE6;
    outline: 1px solid #DCDFE6;
}

.pickup-option {
    display: none;
    width: 100%;
}

.delivery-button {
    background: #fff;
    width: 54px;
    height: 54px;
    border-radius: 4px;
    box-shadow: 1px 4px 14px 0 rgba(0, 33, 71, .07);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.delivery-button img {
    width: 24px;
    height: 24px;
    filter: grayscale(100%) contrast(200%);
    transition: all 0.15s ease-in-out;
}

.delivery-button:hover img {
    filter: none;
}

.main-container {
    width: 100%;
}

.main-inner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    padding: 24px 15%;
}

.categories {
    width: 100%;
    flex: 1;
}

.category {
    display: block;
    width: 100%;
}

.category-title {
    font: normal 32px 'Oswald', sans-serif;
    line-height: 1;
    margin: 16px 0;
}

.products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product {
    width: 100%;
    display: block;
    background: #F7F7F7;
    position: relative;
    border-radius: 4px;
    cursor: pointer;
}

.product-main {
    position: relative;
    z-index: 1;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.product-hover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(128, 128, 128, 0.5));
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.product-hover-inner {
    width: 100%;
    background: #F7F7F7;
    padding: 24px;
    transform: translateY(20px);
    transition: transform .15s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.product:hover .product-hover {
    opacity: 1;
    visibility: visible;
}

.product:hover .product-hover-inner {
    transform: translateY(0);
}

.product-image {
    display: block;
    padding: 24px;
    z-index: -995;
}

.product-name {
    font-size: 18px;
    line-height: 24px;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
    line-height: 1;
}

.product-price-new {
    color: #E4002B;
    font-size: 24px;
    line-height: 1;
}

.product-add {
    width: 100%;
    color: #fff;
    background: #E4002B;
    padding: 12px;
    text-align: center;
    border-radius: 4px;
    margin-top: auto;
}

.footer {
    background: #141517;
    color: #fff;
    margin-top: 32px;
    position: relative;
    z-index: 2000;
}

.footer-inner {
    width: 100%;
    margin: 0 auto;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: clamp(20px, 15vw, 15%);
    padding-right: clamp(20px, 7vw, 7%);
    box-sizing: border-box;
}

.footer-top {
    margin-bottom: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo img {
    display: block;
    width: 74px;
    height: auto;
}

.footer-brand-text {
    color: #f1f1f1;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 500;
    max-width: 760px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 44px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 24px;
    align-items: start;
}

.footer-col {
    min-width: 0;
}

.footer-col-toggle {
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: default;
    margin-bottom: 18px;
    font-size: 0;
}

.footer-col-toggle span:first-child {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.footer-col-arrow {
    display: none;
}

.footer-col-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-body a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    transition: color .2s ease;
}

.footer-col-body a:hover {
    color: #fff;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    margin-top: 72px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .92;
    transition: opacity .2s ease, transform .2s ease;
}

.footer-socials a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.footer-socials img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (max-width: 1366px) {
    .footer-inner {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: clamp(20px, 10vw, 12%);
        padding-right: clamp(20px, 5vw, 6%);
    }

    .footer-columns {
        column-gap: 48px;
    }

    .footer-brand-text {
        max-width: 620px;
    }
}

@media (max-width: 1024px) {
    .footer-inner {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: clamp(20px, 7vw, 9%);
        padding-right: clamp(20px, 4vw, 5%);
    }

    .footer-brand {
        gap: 22px;
    }

    .footer-logo img {
        width: 68px;
    }

    .footer-brand-text {
        font-size: 18px;
        max-width: 540px;
    }

    .footer-columns {
        column-gap: 32px;
    }

    .footer-socials {
        margin-top: 56px;
    }
}

@media (max-width: 767px) {
    .footer {
        margin-top: 32px;
    }

    .footer-inner {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-left: 5%;
        padding-right: 5%;
    }

    .footer-top {
        margin-bottom: 16px;
    }

    .footer-brand {
        display: block;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo img {
        width: 72px;
    }

    .footer-brand-text {
        display: none;
    }

    .footer-divider {
        margin-bottom: 26px;
    }

    .footer-columns {
        display: block;
    }

    .footer-col {
        margin-bottom: 28px;
    }

    .footer-col:last-child {
        margin-bottom: 0;
    }

    .footer-col-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        cursor: pointer;
        margin-bottom: 0;
    }

    .footer-col-toggle span:first-child {
        font-size: 15px;
        font-weight: 700;
    }

    .footer-col-arrow {
        display: block;
        width: 11px;
        height: 11px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-135deg);
        transition: transform .2s ease;
        flex: 0 0 auto;
        margin-right: 2px;
    }

    .footer-col.open .footer-col-arrow {
        transform: rotate(45deg);
        margin-top: -4px;
    }

    .footer-col-body {
        display: none;
        padding-top: 16px;
        gap: 10px;
    }

    .footer-col.open .footer-col-body {
        display: flex;
    }

    .footer-col-body a {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 44px;
        gap: 20px;
    }

    .footer-socials img {
        width: 30px;
        height: 30px;
    }
}








.catalog {
    position: relative;
}

.catalog-menu {
    display: block;
    position: sticky;
    top: 0;
    background: #fff;
}

.menu-inner {
    position: absolute;
    top: 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 200px;
    width: 100%;
    z-index: 10000 !important;
    background: #fff;
}

.menu-item {
    background: #fff;
    padding: 12px 16px;
    text-transform: uppercase;
    border-left: 32px solid #fff;
    cursor: pointer;
    width: 100%;
    white-space: nowrap;
}

.menu-item:hover {
    background: #E4002B;
    border-left: 32px solid #000;
    color: #fff;
}

.menu-item-selected {
    background: #E4002B;
    border-left: 32px solid #000;
    color: #fff;
}

.menu-item a {
    color: #000;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
}

.menu-item:hover a {
    color: #fff;
}

.menu-item-selected a {
    color: #fff;
}

/* контент на всю ширину */
.catalog-content {
    display: block;
    padding: 24px 15%;
}

.js-sticky-top {
    position: sticky;
    z-index: 1000;
}

.js-sticky-stack {
    position: sticky;
    z-index: 100;
    background: #fff;
    background: gray;
}

.catalog-menu,
.menu-inner {
    z-index: 1000;
}




@media screen and (max-width: 1340px) {
    .delivery {
        padding: 24px 7%;
    }

    .categories {
        padding: 24px 7%;
    }

    .catalog-content {
        padding: 24px 7%;
    }

    .products {
        grid-template-columns: repeat(3, 1fr);
    }

    .catalog {
        display: flex;
        flex-direction: column;
    }

    .menu-inner {
        position: sticky;
        top: 0px;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        max-width: 100%;
    }

    .catalog-menu {
        top: 0;
    }

    .menu-item {
        background: #fff;
        border-left: none;
        border-bottom: 6px solid #fff;
    }

    .menu-item:hover {
        background: #E4002B;
        border-left: none;
        border-bottom: 6px solid #000;
        color: #fff;
    }

    .menu-item-selected {
        background: #E4002B;
        border-left: none;
        border-bottom: 6px solid #000;
        color: #fff;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        padding: 0 5%;
        padding-bottom: 16px;
        border-bottom: 2px solid #E1E3E1;
    }

    .header-left {
        display: none;
    }

    .logo {
        margin-left: 0;
    }

    .logo img {
        max-width: 68px;
    }

    .delivery {
        flex-direction: column;
        padding: 24px 5%;
    }

    .delivery-title {
        display: none;
    }

    .categories {
        padding: 24px 5%;
    }

    .catalog-content {
        padding: 24px 5%;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .products {
        grid-template-columns: repeat(1, 1fr);
    }

    .catalog-content {
        padding: 16px;
    }
}

/* Modal */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.product-modal.product-modal-open {
    display: block;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.product-modal-dialog {
    position: relative;
    z-index: 2;
    width: calc(100% - 40px);
    max-width: 1040px;
    max-height: calc(100vh - 40px);
    margin: 20px auto;
    background: #f3f3f3;
    border-radius: 12px;
    padding: 14px 22px 22px;
    overflow-y: auto;
}

.product-modal-head {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
}

.product-modal-close {
    border: 0;
    background: transparent;
    color: #9a9a9a;
    cursor: pointer;
    font-size: 50px;
    line-height: 1;
    padding: 0;
}

.product-modal-close:hover {
    color: #000;
}

.product-modal-main {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.product-modal-left,
.product-modal-right {
    width: 50%;
}

.product-modal-right {
    padding-top: 12px;
}

.product-modal-image-wrap {
    background: #ececec;
    padding: 18px;
}

.product-modal-image {
    display: block;
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-modal-title {
    margin-bottom: 10px;
    color: #000;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
}

.product-modal-calories,
.product-modal-desc,
.modal-option-item-price {
    color: #9b9b9b;
    font-size: 16px;
    line-height: 1.4;
}

.product-modal-calories {
    margin-bottom: 18px;
    line-height: 1.2;
}

.product-modal-price-top {
    margin-bottom: 18px;
    color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
}

.product-modal-desc {
    margin-bottom: 26px;
}

.product-modal-total {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 74px;
    margin-bottom: 18px;
    padding: 0 22px;
    background: #ececec;
    color: #f4002b;
    font-size: 28px;
    font-weight: 700;
}

.product-modal-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.product-modal-qty,
.modal-counter {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.product-modal-qty button,
.product-modal-qty input,
.modal-counter-btn,
.modal-counter-value {
    width: 48px;
    height: 40px;
    border: 0;
    text-align: center;
}

.product-modal-qty button,
.product-modal-qty input {
    background: #000;
    color: #fff;
}

.product-modal-qty button,
.modal-counter-btn {
    cursor: pointer;
}

.product-modal-qty button {
    font-size: 30px;
    line-height: 1;
}

.product-modal-qty input {
    padding: 0;
    font-size: 22px;
    font-weight: 600;
}

.product-modal-add {
    min-width: 210px;
    height: 48px;
    border: 0;
    border-radius: 4px;
    background: #f4002b;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
}

.product-modal-options,
.product-modal-included {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.modal-option-group {
    padding: 24px 18px;
    background: #ececec;
}

.modal-option-title,
.product-modal-section-title {
    margin-bottom: 16px;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.modal-option-items,
.included-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
}

.modal-option-group--single .modal-option-items {
    grid-template-columns: 1fr;
    gap: 18px;
}

.modal-option-item,
.included-item {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.included-item {
    padding: 18px 20px;
    background: #ececec;
}

.modal-option-item-image,
.included-item img,
.included-item-image-placeholder {
    flex-shrink: 0;
    width: 110px;
    height: 82px;
    object-fit: contain;
}

.modal-option-item-content {
    flex: 1;
    min-width: 0;
}

.modal-option-item-name,
.included-item-name {
    margin-bottom: 10px;
    color: #000;
    font-size: 18px;
    line-height: 1.25;
}

.included-item-name {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.3;
}

.modal-counter-btn,
.modal-counter-value {
    background: #fff;
}

.modal-counter-btn {
    color: #555;
    font-size: 18px;
    line-height: 40px;
}

.modal-counter-value {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
}

.included-item-qty {
    color: #000;
    font-size: 16px;
    line-height: 1.3;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .product-modal-dialog {
        width: calc(100% - 16px);
        max-width: 560px;
        max-height: calc(100vh - 16px);
        margin: 8px auto;
        padding: 12px 14px 18px;
        border-radius: 12px;
    }

    .product-modal-close {
        font-size: 44px;
    }

    .product-modal-main {
        flex-direction: column;
        gap: 14px;
    }

    .product-modal-left,
    .product-modal-right {
        width: 100%;
    }

    .product-modal-right {
        padding-top: 0;
    }

    .product-modal-title {
        font-size: 22px;
    }

    .product-modal-total {
        font-size: 24px;
    }

    .product-modal-actions {
        flex-wrap: wrap;
    }

    .product-modal-add {
        width: 100%;
    }

    .modal-option-items,
    .included-items {
        grid-template-columns: 1fr;
    }
}


.product-price-old:empty {
    display: none;
}

.simple-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
}

.simple-modal.simple-modal-open {
    display: block;
}

.simple-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.simple-modal-dialog {
    position: relative;
    z-index: 2;
    width: calc(100% - 32px);
    max-width: 460px;
    margin: 80px auto;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px 20px;
}

.simple-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.simple-modal-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}

.simple-modal-close {
    border: 0;
    background: transparent;
    color: #9a9a9a;
    font-size: 40px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.simple-modal-body {
    font-size: 16px;
    line-height: 1.45;
    color: #000;
}

.simple-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.simple-modal-ok {
    min-width: 110px;
    height: 42px;
    border: 0;
    border-radius: 6px;
    background: #f4002b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 991px) {
    .simple-modal-dialog {
        width: calc(100% - 20px);
        margin: 20px auto;
        padding: 14px 16px 16px;
        border-radius: 12px;
    }

    .simple-modal-title {
        font-size: 20px;
    }
}

body.modal-open {
    overflow: hidden;
}

.basket-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 7000;
}

.basket-modal.basket-modal-open {
    display: block;
}

.basket-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.basket-modal-dialog {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1240px;
    max-height: 94vh;
    margin: 3vh auto;
    padding: 32px 40px 20px;
    background: #f7f7f7;
    overflow-y: auto;
}

.basket-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    display: none;
}

.basket-modal-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.basket-modal-back {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #ededed;
    font-size: 28px;
    cursor: pointer;
}

.basket-modal-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.basket-modal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.basket-modal-main {
    min-width: 0;
}

.basket-modal-empty {
    padding: 40px 0;
    font-size: 20px;
    font-weight: 500;
}

.basket-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    padding: 24px 0 48px;
    border-bottom: 1px solid #d8d8d8;
}

.basket-item-left {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 22px;
    min-width: 0;
}

.basket-item-thumb-wrap {
    background: #efefef;
    width: 138px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-item-thumb {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.basket-item-content {
    min-width: 0;
}

.basket-item-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.basket-item-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.basket-item-summary-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
}

.basket-item-summary-qty {
    font-weight: 700;
    color: #000;
    min-width: 44px;
}

.basket-item-summary-label {
    color: #9a9a9a;
    font-weight: 600;
    text-transform: uppercase;
}

.basket-item-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    white-space: nowrap;
}

.basket-item-price {
    font-size: 22px;
    font-weight: 800;
    color: #e4002b;
    min-width: 112px;
    text-align: right;
    padding-top: 4px;
}

.basket-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basket-item-qty {
    display: flex;
    align-items: center;
}

.basket-item-minus,
.basket-item-plus {
    width: 38px;
    height: 38px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.basket-item-qty-value {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.basket-item-edit,
.basket-item-remove {
    width: 38px;
    height: 38px;
    border: 0;
    background: #f8eaee;
    color: #9a9a9a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.basket-item-remove {
    color: #e4002b;
}

.basket-modal-sidebar {
    background: #efefef;
    padding: 28px 28px 24px;
    position: sticky;
    top: 16px;
}

.basket-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 18px;
    margin-bottom: 18px;
}

.basket-summary-row strong {
    font-size: 17px;
    font-weight: 800;
}

.basket-summary-divider {
    border-top: 1px solid #d8d8d8;
    margin: 26px 0 26px;
}

.basket-summary-total-row {
    margin-bottom: 26px;
}

.basket-summary-total-row strong {
    color: #e4002b;
    font-size: 24px;
}

.basket-coupon-box {
    display: flex;
    margin-bottom: 26px;
}

.basket-coupon-box input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 1px solid #cfcfcf;
    border-right: 0;
    padding: 0 14px;
    background: #fff;
    font-size: 16px;
}

.basket-coupon-box button {
    width: 102px;
    border: 0;
    background: #a9a9a9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.basket-confirm-btn,
.basket-add-product {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.basket-confirm-btn {
    background: #e4002b;
    color: #fff;
    margin-bottom: 18px;
}

.basket-add-product {
    background: #000;
    color: #fff;
}

@media (max-width: 1100px) {
    .basket-modal-dialog {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        padding: 18px 16px 20px;
    }

    .basket-modal-layout {
        grid-template-columns: 1fr;
    }

    .basket-modal-sidebar {
        position: static;
    }

    .basket-item-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .basket-item-left {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
    }

    .basket-item-thumb-wrap {
        width: 100px;
        height: 100px;
    }

    .basket-item-right {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .basket-modal-top {
        margin-bottom: 18px;
    }

    .basket-item-title {
        font-size: 18px;
    }

    .basket-item-price {
        font-size: 20px;
        min-width: 0;
    }

    .basket-item-controls {
        gap: 8px;
    }

    .basket-item-minus,
    .basket-item-plus,
    .basket-item-qty-value,
    .basket-item-edit,
    .basket-item-remove {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .basket-summary-row {
        font-size: 16px;
    }

    .basket-summary-total-row strong {
        font-size: 22px;
    }
}

body.modal-open {
    overflow: hidden;
}

.basket-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6500;
    cursor: pointer;
}

.basket-floating img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.basket-floating .basket-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e4002b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 7000;
}

.basket-modal.basket-modal-open {
    display: block;
}

.basket-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.basket-modal-dialog {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1240px;
    max-height: 94vh;
    margin: 3vh auto;
    padding: 32px 40px 20px;
    background: #f7f7f7;
    overflow-y: auto;
}

.basket-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    display: none;
}

.basket-modal-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.basket-modal-back {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.basket-modal-back img {
    width: 20px;
    height: 20px;
    display: block;
}

.basket-modal-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.basket-modal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.basket-modal-main {
    min-width: 0;
}

.basket-modal-empty {
    padding: 40px 0;
    font-size: 20px;
    font-weight: 500;
}

.basket-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    padding: 24px 0 48px;
    border-bottom: 1px solid #d8d8d8;
}

.basket-item-left {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 22px;
    min-width: 0;
}

.basket-item-thumb-wrap {
    background: #efefef;
    width: 138px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-item-thumb {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.basket-item-content {
    min-width: 0;
}

.basket-item-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.basket-item-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.basket-item-summary-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
}

.basket-item-summary-qty {
    font-weight: 700;
    color: #000;
    min-width: 44px;
}

.basket-item-summary-label {
    color: #9a9a9a;
    font-weight: 600;
    text-transform: uppercase;
}

.basket-item-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    white-space: nowrap;
}

.basket-item-price {
    font-size: 22px;
    font-weight: 800;
    color: #e4002b;
    min-width: 112px;
    text-align: right;
    padding-top: 4px;
}

.basket-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basket-item-qty {
    display: flex;
    align-items: center;
}

.basket-item-minus,
.basket-item-plus {
    width: 38px;
    height: 38px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.basket-item-qty-value {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.basket-item-edit,
.basket-item-remove {
    width: 38px;
    height: 38px;
    border: 0;
    background: #f8eaee;
    color: #9a9a9a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.basket-item-remove {
    color: #e4002b;
}

.basket-modal-sidebar {
    background: #efefef;
    padding: 28px 28px 24px;
    position: sticky;
    top: 16px;
}

.basket-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 18px;
    margin-bottom: 18px;
}

.basket-summary-row strong {
    font-size: 17px;
    font-weight: 800;
}

.basket-summary-divider {
    border-top: 1px solid #d8d8d8;
    margin: 26px 0 26px;
}

.basket-summary-total-row {
    margin-bottom: 26px;
}

.basket-summary-total-row strong {
    color: #e4002b;
    font-size: 24px;
}

.basket-coupon-box {
    display: flex;
    margin-bottom: 26px;
}

.basket-coupon-box input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 1px solid #cfcfcf;
    border-right: 0;
    padding: 0 14px;
    background: #fff;
    font-size: 16px;
}

.basket-coupon-box button {
    width: 102px;
    border: 0;
    background: #a9a9a9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.basket-confirm-btn,
.basket-add-product {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.basket-confirm-btn {
    background: #e4002b;
    color: #fff;
    margin-bottom: 18px;
}

.basket-add-product {
    background: #000;
    color: #fff;
}

.cart-success {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 7100;
}

.cart-success.cart-success-open {
    display: block;
}

.cart-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cart-success-dialog {
    position: relative;
    width: calc(100% - 24px);
    max-width: 760px;
    margin: 3vh auto;
    background: #fff;
    padding: 30px 18px 34px;
    max-height: 94vh;
    overflow-y: auto;
    text-align: center;
    border-radius: 6px;
}

.cart-success-close {
    position: absolute;
    right: 16px;
    top: 10px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.cart-success-image-wrap {
    width: 150px;
    height: 150px;
    margin: 10px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e4002b;
    border-radius: 50%;
}

.cart-success-image-wrap img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
}

.cart-success-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.cart-success-text {
    font-size: 12px;
    line-height: 1.4;
    color: #3a3a3a;
    margin-bottom: 22px;
}

.cart-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 340px;
    margin: 0 auto;
}

.cart-success-add-product,
.cart-success-complete {
    flex: 1;
    height: 38px;
    border: 0;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}

.cart-success-add-product {
    background: #e4002b;
    color: #fff;
}

.cart-success-complete {
    background: #d7d7d7;
    color: #111;
}

@media (max-width: 1100px) {
    .basket-modal-dialog {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        padding: 18px 16px 20px;
    }

    .basket-modal-layout {
        grid-template-columns: 1fr;
    }

    .basket-modal-sidebar {
        position: static;
    }

    .basket-item-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .basket-item-left {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
    }

    .basket-item-thumb-wrap {
        width: 100px;
        height: 100px;
    }

    .basket-item-right {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .basket-floating {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .basket-floating img {
        width: 28px;
        height: 28px;
    }

    .basket-modal-top {
        margin-bottom: 18px;
    }

    .basket-item-title {
        font-size: 18px;
    }

    .basket-item-price {
        font-size: 20px;
        min-width: 0;
    }

    .basket-item-controls {
        gap: 8px;
    }

    .basket-item-minus,
    .basket-item-plus,
    .basket-item-qty-value,
    .basket-item-edit,
    .basket-item-remove {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .basket-summary-row {
        font-size: 16px;
    }

    .basket-summary-total-row strong {
        font-size: 22px;
    }

    .cart-success-dialog {
        margin: 0;
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        padding: 24px 14px 24px;
        border-radius: 0;
    }

    .cart-success-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .cart-success-text {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .cart-success-actions {
        max-width: 100%;
    }

    .cart-success-add-product,
    .cart-success-complete {
        height: 38px;
        font-size: 12px;
    }
}

body.modal-open {
    overflow: hidden;
}

.basket-floating {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6500;
    cursor: pointer;
}

.basket-floating img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.basket-floating .basket-count {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e4002b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 7000;
}

.basket-modal.basket-modal-open {
    display: block;
}

.basket-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.basket-modal-dialog {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1240px;
    max-height: 94vh;
    margin: 3vh auto;
    padding: 32px 40px 20px;
    background: #f7f7f7;
    overflow-y: auto;
}

.basket-modal-close {
    position: absolute;
    right: 18px;
    top: 12px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 44px;
    line-height: 1;
    cursor: pointer;
    display: none;
}

.basket-modal-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.basket-modal-back {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.basket-modal-back img {
    width: 20px;
    height: 20px;
    display: block;
}

.basket-modal-title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.basket-modal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.basket-modal-main {
    min-width: 0;
}

.basket-modal-empty {
    padding: 40px 0;
    font-size: 20px;
    font-weight: 500;
}

.basket-item-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    padding: 24px 0 48px;
    border-bottom: 1px solid #d8d8d8;
}

.basket-item-left {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 22px;
    min-width: 0;
}

.basket-item-thumb-wrap {
    background: #efefef;
    width: 138px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket-item-thumb {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.basket-item-content {
    min-width: 0;
}

.basket-item-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.basket-item-summary {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.basket-item-summary-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 15px;
}

.basket-item-summary-qty {
    font-weight: 700;
    color: #000;
    min-width: 44px;
}

.basket-item-summary-label {
    color: #9a9a9a;
    font-weight: 600;
    text-transform: uppercase;
}

.basket-item-right {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    white-space: nowrap;
}

.basket-item-price {
    font-size: 22px;
    font-weight: 800;
    color: #e4002b;
    min-width: 112px;
    text-align: right;
    padding-top: 4px;
}

.basket-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.basket-item-qty {
    display: flex;
    align-items: center;
}

.basket-item-minus,
.basket-item-plus {
    width: 38px;
    height: 38px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.basket-item-qty-value {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.basket-item-edit,
.basket-item-remove {
    width: 38px;
    height: 38px;
    border: 0;
    background: #f8eaee;
    color: #9a9a9a;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.basket-item-remove {
    color: #e4002b;
}

.basket-modal-sidebar {
    background: #efefef;
    padding: 28px 28px 24px;
    position: sticky;
    top: 16px;
}

.basket-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 18px;
    margin-bottom: 18px;
}

.basket-summary-row strong {
    font-size: 17px;
    font-weight: 800;
}

.basket-summary-divider {
    border-top: 1px solid #d8d8d8;
    margin: 26px 0 26px;
}

.basket-summary-total-row {
    margin-bottom: 26px;
}

.basket-summary-total-row strong {
    color: #e4002b;
    font-size: 24px;
}

.basket-coupon-box {
    display: flex;
    margin-bottom: 26px;
}

.basket-coupon-box input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: 1px solid #cfcfcf;
    border-right: 0;
    padding: 0 14px;
    background: #fff;
    font-size: 16px;
}

.basket-coupon-box button {
    width: 102px;
    border: 0;
    background: #a9a9a9;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.basket-confirm-btn,
.basket-add-product {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.basket-confirm-btn {
    background: #e4002b;
    color: #fff;
    margin-bottom: 18px;
}

.basket-add-product {
    background: #000;
    color: #fff;
}

.cart-success {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 7100;
}

.cart-success.cart-success-open {
    display: block;
}

.cart-success-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.cart-success-dialog {
    position: relative;
    width: calc(100% - 24px);
    max-width: 520px;
    margin: 12vh auto;
    background: #fff;
    padding: 24px 20px 28px;
    max-height: 88vh;
    overflow-y: auto;
    text-align: center;
    border-radius: 6px;
}

.cart-success-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: transparent;
    color: #999;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cart-success-image-wrap {
    width: 150px;
    height: 150px;
    margin: 6px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-success-image-wrap img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    display: block;
}

.cart-success-title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cart-success-text {
    font-size: 13px;
    line-height: 1.4;
    color: #3a3a3a;
    margin-bottom: 22px;
}

.cart-success-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
}

.cart-success-add-product,
.cart-success-complete {
    flex: 1;
    height: 40px;
    border: 0;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}

.cart-success-add-product {
    background: #e4002b;
    color: #fff;
}

.cart-success-complete {
    background: #d7d7d7;
    color: #111;
}

@media (max-width: 1100px) {
    .basket-modal-dialog {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        padding: 18px 16px 20px;
    }

    .basket-modal-layout {
        grid-template-columns: 1fr;
    }

    .basket-modal-sidebar {
        position: static;
    }

    .basket-item-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .basket-item-left {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
    }

    .basket-item-thumb-wrap {
        width: 100px;
        height: 100px;
    }

    .basket-item-right {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .basket-floating {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .basket-floating img {
        width: 28px;
        height: 28px;
    }

    .basket-modal-top {
        margin-bottom: 18px;
    }

    .basket-item-title {
        font-size: 18px;
    }

    .basket-item-price {
        font-size: 20px;
        min-width: 0;
    }

    .basket-item-controls {
        gap: 8px;
    }

    .basket-item-minus,
    .basket-item-plus,
    .basket-item-qty-value,
    .basket-item-edit,
    .basket-item-remove {
        width: 34px;
        height: 34px;
        font-size: 22px;
    }

    .basket-summary-row {
        font-size: 16px;
    }

    .basket-summary-total-row strong {
        font-size: 22px;
    }

    .cart-success-dialog {
        width: calc(100% - 24px);
        max-width: 420px;
        margin: 10vh auto;
        padding: 20px 14px 22px;
        border-radius: 6px;
    }

    .cart-success-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .cart-success-text {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .cart-success-actions {
        max-width: 100%;
    }

    .cart-success-add-product,
    .cart-success-complete {
        height: 38px;
        font-size: 12px;
    }
}