.cart-products-wrapper {
    font-family: 'Inter', sans-serif;
}

.cart-product {
    padding-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.cart-item-img-holder {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 1 / 1;
    min-height: 100px;
    min-width: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-img {
    width: 100%;
    object-fit: cover;
    opacity: 0;
}

.cart-item-title {
    font-size: 15px;
    color: #222;
}

.cart-item-price {
    font-size: 15px;
    color: #111;
}

.cart-qty-group {
    display: flex;
    align-items: center;
    border: 1px solid #222;
    border-radius: 999px;
    padding: 2px 10px;
    gap: 10px;
    background-color: #fff;
}

.cart-qty-btn {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    user-select: none;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

.cart-qty-btn:hover {
    color: var(--bs-primary);
}

.cart-qty-count {
    min-width: 24px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}


.btn-trash {
    font-size: 15px;
    font-weight: 500;
    color: var(--bs-danger);
    transition: color 0.2s ease;
}

.btn-trash:hover {
    text-decoration: underline;
}


.cart-continue-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.cart-continue-btn:hover {
    background-color: #eaeaea;
    color: #222;
}

.cart-summary-checkout-btn-not-allowed {
    background-color: #f0f0f0;
    color: #aaa;
    font-size: 14px;
    padding: 12px 0;
    border: none;
    font-weight: 600;
    cursor: not-allowed;
    text-align: center;
    transition: background-color 0.2s ease;
}


/* summary */


.cart-summary-container {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #000;
}

.cart-summary-title {
    font-size: 18px;
    font-weight: 600;
}

.cart-summary-dropdown {
    padding: 10px 14px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'6'%20viewBox%3D'0%200%2010%206'%20fill%3D'none'%20xmlns%3D'http%3A//www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201L5%205L9%201'%20stroke%3D'%23333'%20stroke-width%3D'1.5'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
}

.cart-summary-list span {
    font-size: 14px;
}

.cart-summary-list li {
    font-size: 14px;
    color: #333;
}

.cart-summary-coupon {
    color: var(--bs-info);
    font-size: 14px;
    text-decoration: none;
}

.cart-summary-coupon:hover {
    text-decoration: underline;
}

.cart-summary-total span {
    font-weight: 600;
}

.cart-summary-checkout-btn {
    background-color: var(--bs-primary);
    color: white;
    font-size: 14px;
    padding: 12px 0;
    border: none;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.cart-summary-checkout-btn:hover {
    background-color: #05051a;
    color: white;
}
