/* ═══════════════════════════════════════════════════════
   CART PAGE BUTTONS - PILL STYLE
   All buttons use rounded-full design
═══════════════════════════════════════════════════════ */

/* Universal pill button base */
.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
    line-height: 1;
}

.pill-btn svg {
    width: 1rem;
    height: 1rem;
}

/* Primary - deep blue solid */
.pill-btn-primary {
    background: #0B2545;
    color: white;
}
.pill-btn-primary:hover {
    background: #061830;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(11, 37, 69, 0.2);
}

/* Outline - white background with border */
.pill-btn-outline {
    background: white;
    color: #0B2545;
    border-color: #C4E2F5;
}
.pill-btn-outline:hover {
    background: #f0f7fc;
    border-color: #4BB8FA;
    color: #061830;
}

/* Soft - light blue background (for "Lanjut Belanja") */
.pill-btn-soft {
    background: #f0f7fc;
    color: #0B2545;
    border-color: transparent;
}
.pill-btn-soft:hover {
    background: #C4E2F5;
    color: #061830;
}

/* Danger - red outline for destructive actions */
.pill-btn-danger {
    background: white;
    color: #dc2626;
    border-color: #fecaca;
}
.pill-btn-danger:hover {
    background: #fef2f2;
    border-color: #f87171;
    color: #b91c1c;
}

/* Ghost - transparent, just text with hover */
.pill-btn-ghost {
    background: transparent;
    color: #6b7280;
    border-color: transparent;
}
.pill-btn-ghost:hover {
    background: #f3f4f6;
    color: #1f2937;
}

/* Sizes */
.pill-btn-sm {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
}
.pill-btn-sm svg {
    width: 0.875rem;
    height: 0.875rem;
}

.pill-btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
}
.pill-btn-lg svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Full width */
.pill-btn-block {
    width: 100%;
    justify-content: center;
}
