* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html,
body {
    height: 100%;
    font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    background: #f7fbfc;
    color: #0b2a2f;
    overflow-x: hidden
}

.cart-title {
    margin: 12px 0 20px
}

.cart-list {
    display: grid;
    gap: 16px;
    margin: 18px 0
}

.cart-item {
    background: #fff;
    border: 1px solid #e6f0ef;
    border-radius: 12px;
    padding: 16px;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 16px;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.cart-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-brand {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.cart-price {
    color: #00c2e8;
    font-weight: 700;
    font-size: 18px;
}

.cart-qty-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e6f0ef;
    background: #fff;
    color: #555;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.qty-btn:hover {
    border-color: #00c2e8;
    color: #00c2e8;
}

.qty-val {
    font-weight: 600;
    font-size: 16px;
    min-width: 24px;
    text-align: center;
}

.cart-remove-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff0f0;
    color: #ff4d4d;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.2s;
}

.cart-remove-btn:hover {
    background: #ff4d4d;
    color: #fff;
    transform: scale(1.05);
}

.cart-empty {
    display: none;
    background: #fff;
    border: 1px dashed #e6f0ef;
    border-radius: 10px;
    padding: 20px;
    text-align: center
}

.cart-actions {
    margin-top: 16px;
    display: none
}

.view-more {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #00b3ff, #007acc);
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;
    transition: .3s;
    box-shadow: 0 4px 10px rgba(0, 179, 255, .3)
}

.view-more:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 179, 255, .45);
    background: linear-gradient(90deg, #0090d1, #005f99)
}