
/* ═══════════════════════════════════════════
   Common Styles — Buttons, Dividers, Arrows
   Included on every page via header.php
   ═══════════════════════════════════════════ */

/* ── Filled button (brand orange) ── */
.btn-fill {
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
    text-decoration: none;
    cursor: pointer;
}
.btn-fill:hover  { background: #e0420a !important; box-shadow: 0 4px 16px rgba(255,80,11,0.35); transform: translateY(-1px); }
.btn-fill:active { transform: translateY(0); box-shadow: none; }

/* ── Outline button ── */
.btn-outline {
    background: transparent;
    color: #FF500B;
    border: 1.5px solid #FF500B;
    border-radius: 999px;
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
    text-decoration: none;
    cursor: pointer;
}
.btn-outline:hover  { background: #FF500B; color: #fff; box-shadow: 0 4px 16px rgba(255,80,11,0.35); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); box-shadow: none; }

/* ── Download / CTA pill button ── */
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 12px 24px;
    background: #FF6032;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 999px;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    border: none;
    transition: background 0.2s ease;
    margin-top: 8px;
    cursor: pointer;
}
.btn-download:hover { background: #e04000; }

/* ── Navigation arrow button ── */
.nav-arrow-btn {
    background: #fff !important;
    color: #000;
    width: 54px;
    height: 54px;
    border: 1.5px solid #000;
    border-radius: 32px;
    padding: 17.78px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease;
    cursor: pointer;
}
.nav-arrow-btn:hover  { background: #000 !important; color: #fff !important; transform: translateY(-50%) scale(1.05); }
.nav-arrow-btn:active { transform: translateY(-50%) scale(1); }
.nav-arrow-btn svg    { width: 22px; height: 22px; flex-shrink: 0; }

/* ── View button (product listing) ── */
.btn-view {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 115px;
    height: 40px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #FF500B;
    border-radius: 999px;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #FF6032;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.btn-view:hover { background: #FF500B; color: #fff; }

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
}
