/* ── Cart Page ── */
.hj-cart-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    min-height: 60vh;
}

.hj-cart-page h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d1b2e;
    margin-bottom: 28px;
}

/* Empty */
.hj-cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.hj-cart-empty span {
    font-size: 4rem;
    display: block;
    margin-bottom: 12px;
}

.hj-cart-empty p {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 24px;
}

.hj-cart-empty-btn {
    display: inline-block;
    background: #e8577a;
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.18s;
}

.hj-cart-empty-btn:hover {
    background: #d43f64;
    color: #fff;
}

/* Cart Table */
.hj-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
}

.hj-cart-table th {
    text-align: left;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0e0e5;
}

.hj-cart-table td {
    padding: 16px 14px;
    border-bottom: 1px solid #f5eff1;
    vertical-align: middle;
}

.hj-cart-table tr:last-child td {
    border-bottom: none;
}

.hj-cart-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hj-cart-product img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    background: #fdf0f3;
}

.hj-cart-product-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #fdf0f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.hj-cart-product-name {
    font-weight: 700;
    color: #2d1b2e;
    font-size: 15px;
}

.hj-cart-product-price-sub {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

/* Qty control */
.hj-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #f0d0da;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.hj-qty-btn {
    width: 34px;
    height: 36px;
    background: #fdf0f3;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #e8577a;
    font-weight: 700;
    transition: background 0.15s;
    line-height: 1;
}

.hj-qty-btn:hover {
    background: #fce4ec;
}

.hj-qty-num {
    width: 40px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #2d1b2e;
    border: none;
    background: #fff;
    pointer-events: none;
}

/* Remove */
.hj-cart-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition:
        color 0.15s,
        background 0.15s;
    line-height: 1;
}

.hj-cart-remove:hover {
    color: #e63946;
    background: #fff0f1;
}

/* Subtotal */
.hj-cart-subtotal {
    font-weight: 700;
    color: #e8577a;
    font-size: 16px;
}

/* Summary Box */
.hj-cart-summary {
    max-width: 380px;
    margin-left: auto;
    background: #fff;
    border: 1.5px solid #f0e0e5;
    border-radius: 16px;
    padding: 24px 24px 28px;
}

.hj-cart-summary h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #2d1b2e;
    margin: 0 0 18px;
}

.hj-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f5eff1;
}

.hj-summary-row:last-of-type {
    border-bottom: none;
}

.hj-summary-grand {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #2d1b2e !important;
    padding-top: 14px !important;
    border-top: 2px solid #f0e0e5 !important;
    border-bottom: none !important;
    margin-top: 4px;
}

.hj-summary-grand strong {
    color: #e8577a;
}

.hj-checkout-btn {
    display: block;
    width: 100%;
    background: #e8577a;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 15px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: 18px;
    transition:
        background 0.18s,
        transform 0.15s;
    box-shadow: 0 4px 16px rgba(232, 87, 122, 0.3);
}

.hj-checkout-btn:hover {
    background: #d43f64;
    color: #fff;
    transform: translateY(-1px);
}

.hj-continue-link {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-size: 14px;
    color: #aaa;
    text-decoration: none;
    transition: color 0.15s;
}

.hj-continue-link:hover {
    color: #e8577a;
}

/* Loading state */
.hj-cart-loading {
    text-align: center;
    padding: 40px;
    color: #ccc;
    font-size: 15px;
}

@media (max-width: 640px) {
    .hj-cart-table th:nth-child(3),
    .hj-cart-table td:nth-child(3) {
        display: none;
    }

    .hj-cart-summary {
        max-width: 100%;
    }

    .hj-cart-product img,
    .hj-cart-product-icon {
        width: 52px;
        height: 52px;
    }
}
