.sw-cart-page {
    background: #0D0D0C;
    min-height: 100vh;
    padding: 60px 0 60px 0;
}
.sw-cart-page__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}
.sw-cart-page__top {
    background: #171717;
    border-radius: 24px;
    border: 0.5px solid #232323;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    margin-bottom: 16px;
}
.sw-cart-page__title {
    font-family: 'Russo One', Arial, sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 120%;
    color: #F9F9F9;
}
.sw-cart-page__summary {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
.sw-cart-page__summary-count {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #D8D8D8;
    opacity: 0.8;
}
.sw-cart-page__summary-total {
    font-family: 'Russo One', Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    color: #F9F9F9;
}
.sw-cart-page__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}
.sw-cart-page__empty {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #F9F9F9;
}
.sw-cart-page__item {
    display: flex;
    gap: 16px;
}
.sw-cart-page__item-img {
    width: 214px;
    height: 214px;
    border-radius: 24px;
    background: #181818;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.sw-cart-page__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    max-width: 100%;
    max-height: 100%;
}
.sw-cart-page__item-info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    background: #181818;
    border-radius: 24px;
    padding: 32px;
}
.sw-cart-page__item-controls {
    position: absolute;
    top: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.sw-cart-page__qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #FCD704;
    border-radius: 32px;
    background: transparent;
}
.sw-cart-page__qty-btn {
    width: 56px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    color: #FCD704;
    border: none;
    font-family: 'Russo One', Arial, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.sw-cart-page__qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.sw-cart-page__qty-btn:hover:not(:disabled) {
    background: #FCD70429;
}
.sw-cart-page__qty-btn svg path {
    stroke: #FCD704;
    transition: stroke 0.2s;
}
.sw-cart-page__qty {
    font-family: 'Russo One', Arial, sans-serif;
    font-size: 20px;
    color: #fff;
    min-width: 24px;
    text-align: center;
}
.sw-cart-page__remove-btn {
    width: 56px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #FCD704;
    color: #FCD704;
    font-family: 'Russo One', Arial, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.sw-cart-page__remove-btn:hover {
    background: #FCD70429;
}
.sw-cart-page__remove-btn svg path {
    stroke: #FCD704;
    transition: stroke 0.2s;
}
.sw-cart-page__item-meta {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sw-cart-page__item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 400;
    color: #F9F9F9;
    font-family: 'Russo One', Arial, sans-serif;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.sw-cart-page__item-category {
    font-size: 28px;
    font-weight: 400;
    color: #F9F9F9;
}
.sw-cart-page__item-name {
    font-size: 28px;
    font-weight: 400;
    color: #F9F9F9;
}
.sw-cart-page__item-price {
    font-family: 'Russo One', Arial, sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #F9F9F9;
    margin-top: 12px;
}
.sw-cart-page__item-stock-row,
.sw-cart-page__item-sku-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-top: 8px;
}
.sw-cart-page__item-label {
    opacity: 0.6;
    color: #F9F9F9;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.sw-cart-page__item-value {
    opacity: 0.8;
    color: #F9F9F9;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
}
.sw-cart-page__checkout-btn {
    background: #FCD704;
    color: #181818;
    border-radius: 32px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
}
.sw-cart-page__checkout-btn:hover {
    background: #E3C103;
}
.sw-cart-page__checkout-btn-wrap {
    display: flex;
    justify-content: center;
}

/* Стили для экранов меньше 1100px */
@media (max-width: 1100px) {
    .sw-cart-page__item-controls {
        position: static;
        order: 3;
        margin-top: 16px;
        justify-content: flex-start;
        gap: 12px;
    }
}

/* Мобильные стили для экранов меньше 768px */
@media (max-width: 768px) {
    .sw-cart-page {
        padding: 40px 0 40px 0;
    }
    
    .sw-cart-page__container {
        padding: 0 16px;
    }
    
    .sw-cart-page__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }
    
    .sw-cart-page__summary {
        align-items: flex-start;
        width: 100%;
    }
    
    .sw-cart-page__list {
        gap: 12px;
    }
    
    .sw-cart-page__item {
        flex-direction: column;
    }
    
    .sw-cart-page__item-img {
        width: 100%;
        height: 200px;
        border-radius: 11.47px;
        order: 1;
        flex-shrink: 0;
        box-sizing: border-box;
        overflow: hidden;
        padding: 3.82px;
    }

    .sw-cart-page__item-img img {
        border-radius: 7.85px;
    }
    
    .sw-cart-page__item-info {
        order: 2;
        padding: 20px;
        border-radius: 16px;
        position: relative;
    }
    
    .sw-cart-page__qty-wrap {
        border-radius: 24px;
    }
    
    .sw-cart-page__qty-btn {
        width: 48px;
        height: 40px;
        border-radius: 50%;
    }
    
    .sw-cart-page__qty {
        font-size: 18px;
        min-width: 20px;
    }
    
    .sw-cart-page__remove-btn {
        width: 48px;
        height: 40px;
        border-radius: 50%;
    }
    
    .sw-cart-page__item-meta {
        gap: 12px;
    }
    
    .sw-cart-page__item-row {
        font-size: 20px;
        line-height: 1.3;
        flex-wrap: wrap;
        gap: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .sw-cart-page__item-category,
    .sw-cart-page__item-name {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .sw-cart-page__item-price {
        font-size: 20px;
        line-height: 1.3;
        margin-top: 8px;
    }
    
    .sw-cart-page__item-stock-row,
    .sw-cart-page__item-sku-row {
        margin-top: 8px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .sw-cart-page__item-label {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .sw-cart-page__checkout-btn {
        width: 100%;
        padding: 16px;
        font-size: 16px;
        border-radius: 24px;
    }
}