.cart-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 16px 140px;
}

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.cart-header h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
    color: #241915;
}

.cart-header p {
    margin: 6px 0 0;
    color: #7b6d64;
    font-size: 15px;
    font-weight: 700;
}

.cart-back {
    color: #7a1f17;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    background: #fff;
    border: 1px solid #e4dace;
    border-radius: 999px;
    padding: 10px 14px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 16px;
    background: #fff;
    border: 1px solid #e4dace;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 10px 26px rgba(55, 33, 25, .07);
}

.cart-photo {
    width: 138px;
    height: 118px;
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 25%, rgba(217,164,65,.95), transparent 28%),
        linear-gradient(135deg, #8c2c22, #3b1712);
}

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

.cart-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 26px;
}

.cart-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.cart-name {
    color: #241915;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.25;
}

.cart-weight {
    margin-top: 4px;
    color: #7b6d64;
    font-size: 13px;
    font-weight: 800;
}

.cart-line-price {
    white-space: nowrap;
    color: #7a1f17;
    font-size: 20px;
    font-weight: 900;
}

.cart-actions {
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.qty-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f5ef;
    border: 1px solid #ebe4d8;
    border-radius: 16px;
    padding: 6px;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 12px;
    background: #fff;
    color: #241915;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
}

.qty {
    width: 54px;
    border: none;
    background: transparent;
    text-align: center;
    color: #241915;
    font-size: 16px;
    font-weight: 900;
    outline: none;
}

.cart-remove {
    color: #b42318;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.stock-hint {
    margin-top: 12px;
    color: #166534;
    background: #dcfce7;
    border-radius: 14px;
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 900;
}

.stock-hint-warning {
    color: #92400e;
    background: #fffbeb;
}

.cart-summary {
    align-self: start;
}

.cart-summary-box {
    position: sticky;
    top: 92px;
    background: #fff;
    border: 1px solid #e4dace;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 12px 32px rgba(55, 33, 25, .09);
}

.cart-summary-title {
    color: #241915;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #241915;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

.checkout {
    display: block;
    width: 100%;
    border: none;
    background: #1e1e1e;
    color: #fff;
    border-radius: 18px;
    padding: 15px 16px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
}

.continue-link {
    display: block;
    margin-top: 12px;
    color: #7a1f17;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
}

.cart-empty {
    max-width: 520px;
    margin: 70px auto;
    background: #fff;
    border: 1px solid #e4dace;
    border-radius: 28px;
    padding: 34px 22px;
    text-align: center;
    box-shadow: 0 12px 34px rgba(55, 33, 25, .08);
}

.cart-empty-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.cart-empty h2 {
    margin: 0;
    color: #241915;
    font-size: 28px;
    font-weight: 900;
}

.cart-empty p {
    margin: 8px 0 20px;
    color: #7b6d64;
    font-size: 15px;
    font-weight: 700;
}

.cart-modifiers {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.35;
}

.cart-modifiers-remove {
    color: #991b1b;
}

.cart-modifiers-add {
    color: #166534;
}

@media (max-width: 860px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-box {
        position: static;
    }

    .cart-header {
        display: block;
    }

    .cart-back {
        display: inline-block;
        margin-bottom: 14px;
    }
}

@media (max-width: 560px) {
    .cart-page {
        padding: 16px 12px 130px;
    }

    .cart-header h1 {
        font-size: 28px;
    }

    .cart-item {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 12px;
        border-radius: 20px;
        padding: 12px;
    }

    .cart-photo {
        width: 96px;
        height: 96px;
        border-radius: 16px;
    }

    .cart-name {
        font-size: 17px;
    }

    .cart-line-price {
        font-size: 17px;
    }

    .cart-actions {
        gap: 10px;
    }

    .qty-btn {
        width: 32px;
        height: 32px;
    }

    .qty {
        width: 42px;
    }
}