/* =====================================================
   ePotter — Cart Page
   ===================================================== */

.ep-cart-page { padding: 16px 0 64px; }

/* Empty Cart */
.ep-empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: var(--ep-text-muted);
}
.ep-empty-cart i  { font-size: 64px; display: block; margin-bottom: 20px; color: var(--ep-border); }
.ep-empty-cart h3 { font-size: 20px; color: var(--ep-text); margin-bottom: 10px; }
.ep-empty-cart p  { margin-bottom: 28px; }

/* Cart Items */
.ep-cart-items { display: flex; flex-direction: column; gap: 12px; }

.ep-cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    padding: 16px;
    transition: box-shadow var(--ep-transition);
}
.ep-cart-item:hover { box-shadow: var(--ep-shadow); }

.ep-cart-item-img-wrap { flex-shrink: 0; }
.ep-cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--ep-border);
    background: var(--ep-bg-alt);
}

.ep-cart-item-info  { flex: 1; min-width: 0; }
.ep-cart-item-title { font-size: 14px; font-weight: 600; color: var(--ep-text); display: block; }
.ep-cart-item-title:hover { color: var(--ep-primary); }
.ep-cart-item-price { font-size: 13px; color: var(--ep-text-muted); margin-top: 4px; display: block; }

.ep-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 2px;
    border: 1.5px solid var(--ep-border);
    border-radius: 8px;
    overflow: hidden;
}
.ep-qty-btn {
    background: var(--ep-bg-alt);
    border: none;
    width: 34px; height: 38px;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-text);
    transition: background var(--ep-transition);
}
.ep-qty-btn:hover { background: #e5e7eb; }
.ep-qty-value {
    min-width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.ep-cart-item-total { font-size: 14px; font-weight: 700; color: var(--ep-primary); min-width: 100px; text-align: center; }

.ep-cart-remove {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: color var(--ep-transition);
}
.ep-cart-remove:hover { color: var(--ep-danger); }

@media (max-width: 576px) {
    .ep-cart-item         { flex-wrap: wrap; }
    .ep-cart-item-total   { min-width: auto; }
}

/* Cart Summary */
.ep-cart-summary {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    padding: 24px;
    position: sticky;
    top: 80px;
}
.ep-cart-summary-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; }
.ep-cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ep-border);
    color: var(--ep-text-muted);
}
.ep-cart-summary-row:last-child { border-bottom: none; }
.ep-cart-summary-total {
    font-size: 15px;
    font-weight: 700;
    color: var(--ep-text);
}
