﻿.shopping-cart {
    padding: 28px 48px;
    box-sizing: border-box;
    display:flex;
    justify-content:center;
}

.shopping-cart .nemika-button {
    border-width: 0;
    height: 40px;
}

.cart-card {
    display:flex;
    align-items:center;
    gap: 24px;
    border: 3px solid transparent;
    border-radius: 1.5rem;
}

.shopping-cart-inner {
    width:100%;
    max-width: 1200px;
}

.shopping-cart-layout {
    display:grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items:start;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 24px;

    background: #f1f1f1;
    border-radius: 24px;
    padding: 24px 32px;

    font-family: Inter, Arial, sans-serif;
}

.cart-image img {
    width: 128px;
    height: auto;
}

.cart-info {
    flex: 1;
}

.cart-title {
    font-weight: 700;
    font-size: 20px;
    margin-top: 2rem !important;
    margin-left: 0.5rem !important;
}

.cart-title span {
    font-weight: 400;
    font-size: 14px;
    color: #9a9a9a;
    margin-left: 6px;
}

.cart-name {
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.3;
}

.cart-actions {
    margin-top: 8px;
    display: flex;
    gap: 12px;
}

.counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-input {
    background-color: transparent;
}

.counter button {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: #e3e3e3;
    font-size: 20px;
    cursor: pointer;
}

.cart-price {
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 120px;
    max-width: 120px;
}

.product-image img{ max-width:100%; max-height:100%; display:block;}


.cart-title {
    font-weight:700;
    font-size:20px;
    margin:0 0 8px 0;
}

.qty button {
    width:34px;
    height:34px;
    border-radius:8px;
    border:none;
    background:#e6e6e6;
    cursor:pointer;
    font-size:18px;
}
.qty .count {
    min-width:34px;
    text-align:center;
    font-weight:600;
}

.payment-card {
    padding: 26px;
    border-radius: 22px;
    background: #f1f1f1;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.total-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:8px;
    font-weight:700;
    font-size:20px;
}

.section-box {
    margin-bottom: 20px;
}

.new-delivery-card {
    background: #f1f1f1;
    border-radius: 24px;
    padding: 24px 32px;
    font-family: Inter, Arial, sans-serif;
}

.new-delivery-header {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.new-delivery-address input {
    border: none;
    background: transparent;
    font-size: 16px;
    flex: 1;
    outline: none;
    padding: 4px 0;
}

.new-delivery-address input:focus {
    background: #ffffff;
    border-radius: 8px;
    padding: 6px 10px;
}

.new-delivery-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.new-delivery-separator {
    flex: 1;
    height: 1px;
    background: #bdbdbd;
}

.new-delivery-price {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.new-delivery-products {
    display: flex;
    gap: 12px;
}

.new-delivery-products img {
    width: 48px;
    height: auto;
}