/* ==========================================================================
   Buttons — all button styles and Bootstrap overrides.
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: opacity 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
    background: var(--grad-hero);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}

.btn-outline {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Card button — small pill used on product cards */
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    background: #eef2ff;
    color: var(--secondary);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    text-decoration: none;
    line-height: 1;
}

.card-btn:hover {
    background: var(--secondary);
    color: var(--white);
}

/* Search submit button */
.search-submit {
    min-width: 140px;
    min-height: 48px;
    border-radius: 999px;
    border: 0;
    background: var(--grad-hero);
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.15s;
}

.search-submit:hover {
    opacity: 0.9;
}

/* Link arrow — text link with arrow */
.link-arrow {
    font-weight: 700;
    color: var(--secondary);
    white-space: nowrap;
}

.link-arrow:hover {
    color: var(--primary);
}
