.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
    animation: fadeIn 0.3s ease;
}

.cart-empty {
    color: #555;
    text-align: center;
    padding: 80px 0;
    font-size: 1.1rem;
    animation: fadeIn 0.4s ease;
}

.cart-empty a {
    color: #6c63ff;
    text-decoration: none;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.cart-item {
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideUp 0.3s ease both;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-item.removing {
    opacity: 0;
    transform: translateX(20px);
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #eee;
    margin-bottom: 4px;
}

.cart-item-price {
    color: #888;
    font-size: 0.9rem;
}

.cart-item-subtotal {
    font-weight: 700;
    color: #6c63ff;
    font-size: 1.1rem;
}

.cart-item-remove {
    background: none;
    border: 1px solid #333;
    color: #888;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: border-color 0.2s, color 0.2s;
}

.cart-item-remove:hover {
    border-color: #e55;
    color: #e55;
}

.cart-footer {
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    animation: slideUp 0.35s ease both;
}

.cart-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.cart-total span {
    color: #6c63ff;
}

.btn-checkout {
    background: #6c63ff;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-checkout:hover {
    background: #574fd6;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
