/* CUSTOM CART STYLES START: local cart list rendered in cart.html */
.local-cart-items {
    display: none;
    margin: 24px 0 12px;
    padding: 16px;
    border-radius: 14px;
    background: #f6f9ff;
    border: 1px solid #dce8ff;
}

.local-cart-items-title {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.2;
    color: #1f2b4d;
    font-weight: 700;
}

.local-cart-items-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.local-cart-item {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #dde7fb;
}

.local-cart-item + .local-cart-item {
    box-shadow: 0 0 0 1px rgba(221, 231, 251, 0.35);
}

.local-cart-item-image {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
}

.local-cart-item-title {
    margin: 0;
    color: #1f2b4d;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    font-weight: 600;
}

.local-cart-item-title:hover {
    text-decoration: underline;
}

.local-cart-item-subtitle {
    margin: 6px 0 0;
    color: #5f6b8b;
    font-size: 13px;
}

.local-cart-item-meta {
    text-align: left;
}

.local-cart-item-price {
    display: block;
    color: #25314f;
    font-weight: 700;
    font-size: 15px;
}

.local-cart-item-qty {
    display: block;
    margin-top: 6px;
    color: #4b5878;
    font-size: 13px;
}

.local-cart-item-remove {
    margin-top: 8px;
    border: 1px solid #c7d7f8;
    background: #ffffff;
    color: #2c4fb3;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    cursor: pointer;
}

.local-cart-item-remove:hover {
    background: #eef4ff;
}

.local-cart-summary {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #d7e4ff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.local-cart-total {
    color: #1f2b4d;
    font-size: 18px;
    font-weight: 600;
}

.local-cart-checkout-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #3459c6;
    background: #3459c6;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.local-cart-checkout-button:hover {
    background: #2748ab;
    border-color: #2748ab;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 767px) {
    .local-cart-items {
        margin-top: 16px;
        padding: 12px;
    }

    .local-cart-items-title {
        font-size: 20px;
    }

    .local-cart-item {
        grid-template-columns: 64px 1fr;
        gap: 10px;
    }

    .local-cart-item-image {
        width: 64px;
        height: 64px;
    }

    .local-cart-item-meta {
        grid-column: 1 / -1;
        text-align: right;
        padding-right: 74px;
    }

    .local-cart-summary {
        align-items: stretch;
    }

    .local-cart-checkout-button {
        width: 100%;
    }
}
/* CUSTOM CART STYLES END */
