/* =========================================================
   FILNATION GLOBAL BRAND SYSTEM
========================================================= */

:root {
    /* Brand Colors */
    --fn-text: #1C1C1C;
    --fn-blue: #1D4486;
    --fn-blue-dark: #15346a;
    --fn-red: #C12135;

    /* Neutrals */
    --fn-white: #ffffff;
    --fn-light-bg: #f5f7fb;
    --fn-muted: #555555;
    --fn-soft-muted: #777777;
    --fn-dark: #10131b;

    /* Status */
    --fn-green: #1a7f37;
    --fn-gray: #616161;

    /* Soft Backgrounds */
    --fn-blue-soft: rgba(29, 68, 134, 0.10);
    --fn-red-soft: rgba(193, 33, 53, 0.10);
    --fn-green-soft: rgba(26, 127, 55, 0.10);
    --fn-dark-soft: rgba(28, 28, 28, 0.06);

    /* Borders */
    --fn-border: rgba(28, 28, 28, 0.08);
    --fn-border-strong: rgba(28, 28, 28, 0.14);
    --fn-blue-border: rgba(29, 68, 134, 0.18);
    --fn-red-border: rgba(193, 33, 53, 0.18);
    --fn-green-border: rgba(26, 127, 55, 0.18);

    /* Radius */
    --fn-radius-xs: 8px;
    --fn-radius-sm: 12px;
    --fn-radius-md: 16px;
    --fn-radius-lg: 20px;
    --fn-radius-xl: 24px;
    --fn-radius-2xl: 26px;
    --fn-radius-pill: 999px;

    /* Shadows */
    --fn-shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.06);
    --fn-shadow-md: 0 18px 54px rgba(0, 0, 0, 0.08);
    --fn-shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.12);

    /* Layout */
    --fn-container: 1120px;
    --fn-container-sm: 860px;

    /* Typography */
    --fn-font: "Outfit", sans-serif;
}

/* =========================================================
   GLOBAL BASE
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    color: var(--fn-text);
    font-family: var(--fn-font);
    font-weight: 400;
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: var(--fn-blue);
    color: var(--fn-white);
}

/* =========================================================
   GLOBAL TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--fn-blue);
    font-family: var(--fn-font);
    font-weight: 700;
    line-height: 1.1;
}

h1 {
    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.95;
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    color: var(--fn-muted);
    font-family: var(--fn-font);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

strong,
b {
    font-weight: 800;
}

small {
    font-size: 13px;
    line-height: 1.45;
}

a {
    color: var(--fn-blue);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--fn-blue-dark);
}

/* =========================================================
   GLOBAL LAYOUT HELPERS
========================================================= */
.alignwide {
    margin-inline: 0 !important;
}
.fn-page {
    min-height: 100vh;
    padding: 80px 20px;
    background:
        radial-gradient(circle at top left, rgba(29, 68, 134, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(193, 33, 53, 0.08), transparent 30%),
        var(--fn-light-bg);
    color: var(--fn-text);
}

.fn-container {
    max-width: var(--fn-container);
    margin: 0 auto;
}

.fn-container-sm {
    max-width: var(--fn-container-sm);
    margin: 0 auto;
}

.fn-header {
    max-width: var(--fn-container-sm);
    margin-bottom: 34px;
}

.fn-header.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.fn-eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: var(--fn-radius-pill);
    background: var(--fn-blue-soft);
    color: var(--fn-blue);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.fn-title {
    margin: 0 0 14px;
    color: var(--fn-blue);
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.95;
    font-weight: 700;
}

.fn-subtitle {
    max-width: 760px;
    margin: 0;
    color: var(--fn-muted);
    font-size: 17px;
    line-height: 1.65;
}

.fn-header.center .fn-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.fn-section {
    margin-bottom: 28px;
}

.fn-section-header {
    margin-bottom: 16px;
}

.fn-section-title {
    margin: 0 0 6px;
    color: var(--fn-text);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.fn-section-description {
    margin: 0;
    color: var(--fn-muted);
    font-size: 15px;
    line-height: 1.55;
}

/* =========================================================
   GLOBAL CARDS
========================================================= */

.fn-card {
    overflow: hidden;
    border-radius: var(--fn-radius-xl);
    background: var(--fn-white);
    border: 1px solid var(--fn-border);
    box-shadow: var(--fn-shadow-md);
}

.fn-card-header {
    padding: 24px 26px;
    background: var(--fn-dark);
    color: var(--fn-white);
}

.fn-card-header h2,
.fn-card-header h3 {
    margin: 0 0 6px;
    color: var(--fn-white);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.fn-card-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.5;
}

.fn-card-body {
    padding: 26px;
}

.fn-soft-card {
    padding: 20px;
    border-radius: var(--fn-radius-lg);
    background: var(--fn-white);
    border: 1px solid var(--fn-border);
    box-shadow: var(--fn-shadow-sm);
}

/* =========================================================
   GLOBAL GRIDS
========================================================= */

.fn-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fn-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fn-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.fn-button,
button.fn-button,
a.fn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 0;
    border-radius: var(--fn-radius-pill);
    background: var(--fn-blue);
    color: var(--fn-white);
    font-family: var(--fn-font);
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.fn-button:hover,
button.fn-button:hover,
a.fn-button:hover {
    background: var(--fn-blue-dark);
    color: var(--fn-white);
    transform: translateY(-1px);
    text-decoration: none;
}

.fn-button.secondary {
    background: var(--fn-blue-soft);
    color: var(--fn-blue);
}

.fn-button.secondary:hover {
    background: var(--fn-blue);
    color: var(--fn-white);
}

.fn-button.dark {
    background: var(--fn-dark);
    color: var(--fn-white);
}

.fn-button.dark:hover {
    background: #000000;
    color: var(--fn-white);
}

.fn-button.light {
    background: var(--fn-white);
    color: var(--fn-blue);
    border: 1px solid var(--fn-blue-border);
    box-shadow: var(--fn-shadow-sm);
}

.fn-button.light:hover {
    background: var(--fn-blue);
    color: var(--fn-white);
}

.fn-button.danger {
    background: var(--fn-red);
    color: var(--fn-white);
}

.fn-button.danger:hover {
    background: #9f1b2b;
    color: var(--fn-white);
}

/* =========================================================
   GLOBAL FORMS
========================================================= */

.fn-field {
    display: grid;
    gap: 7px;
}

.fn-field.full {
    grid-column: 1 / -1;
}

.fn-field label {
    color: var(--fn-blue);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
}

.fn-field input,
.fn-field select,
.fn-field textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--fn-border-strong);
    border-radius: var(--fn-radius-sm);
    background: var(--fn-white);
    color: var(--fn-text);
    font-family: var(--fn-font);
    font-size: 14px;
    line-height: 1.4;
}

.fn-field textarea {
    min-height: 160px;
    resize: vertical;
}

.fn-field input:focus,
.fn-field select:focus,
.fn-field textarea:focus {
    outline: none;
    border-color: rgba(29, 68, 134, 0.45);
    box-shadow: 0 0 0 3px rgba(29, 68, 134, 0.10);
}

.fn-help {
    margin: 6px 0 0;
    color: var(--fn-soft-muted);
    font-size: 12px;
    line-height: 1.45;
}

.fn-checkbox {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--fn-muted);
    font-size: 13px;
    font-weight: 800;
}

.fn-checkbox input {
    width: 16px;
    height: 16px;
}

/* =========================================================
   GLOBAL PILLS / STATUS
========================================================= */

.fn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: var(--fn-radius-pill);
    background: var(--fn-blue-soft);
    color: var(--fn-blue);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.fn-pill.green {
    background: var(--fn-green-soft);
    color: var(--fn-green);
}

.fn-pill.red {
    background: var(--fn-red-soft);
    color: var(--fn-red);
}

.fn-pill.dark {
    background: var(--fn-dark-soft);
    color: var(--fn-text);
}

.fn-status {
    padding: 14px 16px;
    border-radius: var(--fn-radius-md);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.fn-status.success {
    background: rgba(26, 127, 55, 0.08);
    border: 1px solid var(--fn-green-border);
    color: var(--fn-green);
}

.fn-status.error {
    background: rgba(193, 33, 53, 0.08);
    border: 1px solid var(--fn-red-border);
    color: var(--fn-red);
}

.fn-status.info {
    background: rgba(29, 68, 134, 0.08);
    border: 1px solid var(--fn-blue-border);
    color: var(--fn-blue);
}

/* =========================================================
   GLOBAL TABLES
========================================================= */

.fn-table-wrap {
    overflow-x: auto;
}

.fn-table {
    width: 100%;
    border-collapse: collapse;
}

.fn-table th,
.fn-table td {
    padding: 12px;
    border-bottom: 1px solid var(--fn-border);
    text-align: left;
    vertical-align: top;
    font-size: 13px;
    line-height: 1.45;
}

.fn-table th {
    color: var(--fn-blue);
    font-weight: 700;
    background: #f7f8fb;
}

/* =========================================================
   GLOBAL HEADER NAVIGATION
========================================================= */

.fn-header-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.fn-header-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fn-blue);
    font-size: 14px;
    line-height: 1.3;
    font-weight: 800;
    text-decoration: none;
}

.fn-header-link:hover {
    color: var(--fn-blue-dark);
    text-decoration: underline;
}

.fn-header-link::before {
    content: "←";
    font-size: 14px;
    line-height: 1;
}

.fn-header-link.forward::before {
    content: none;
}

.fn-header-link.forward::after {
    content: "→";
    font-size: 14px;
    line-height: 1;
}

/* =========================================================
   GLOBAL EMPTY STATES
========================================================= */

.fn-empty {
    padding: 28px 24px;
    color: var(--fn-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* =========================================================
   GLOBAL WORDPRESS / WOOCOMMERCE NORMALIZATION
========================================================= */

button,
input,
select,
textarea {
    font-family: var(--fn-font);
}

.woocommerce,
.woocommerce-page {
    color: var(--fn-text);
    font-family: var(--fn-font);
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce-page h1,
.woocommerce-page h2,
.woocommerce-page h3 {
    color: var(--fn-blue);
    font-family: var(--fn-font);
    font-weight: 700;
}

/* =========================================================
   GLOBAL FOOTER
========================================================= */

.fn-site-footer {
    width: 100%;
    background: #1D4486 !important;
    color: #ffffff;
}

.fn-site-footer-inner {
    max-width: 1140px;
    min-height: 72px;
    margin: 0 auto;
    padding: 18px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.fn-footer-copyright {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
}

.fn-footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.fn-footer-social-link {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
}

.fn-footer-social-link svg {
    width: 32px;
    height: 32px;
    display: block;
    fill: currentColor;
}

.fn-footer-social-link:hover {
    color: #ffffff;
    opacity: 0.75;
    text-decoration: none;
}

@media (max-width: 640px) {
    .fn-site-footer-inner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 22px;
        padding-bottom: 22px;
        text-align: center;
    }

    .fn-footer-socials {
        justify-content: center;
        gap: 22px;
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 980px) {
    .fn-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fn-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .fn-page {
        padding: 54px 16px;
    }

    .fn-title {
        font-size: 42px;
    }

    .fn-card-header,
    .fn-card-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fn-grid-2,
    .fn-grid-3,
    .fn-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   GLOBAL HEADER
========================================================= */

.fn-site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    color: #1C1C1C;
    font-family: "Outfit", Arial, sans-serif;
}

/* =========================================================
   TOP BAR
========================================================= */

.fn-topbar {
    width: 100%;
    background: #1D4486;
    color: #ffffff;
}

.fn-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.fn-topbar-text {
    margin: 0;
    padding: 8px 0;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}

.fn-topbar-text a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fn-topbar-text a:hover {
    color: rgba(255,255,255,0.78);
}

/* =========================================================
   MAIN HEADER
========================================================= */

.fn-main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(28,28,28,0.08);
}

.fn-main-header-grid {
    min-height: 82px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr) 170px;
    gap: 24px;
    align-items: center;
}

.fn-header-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.fn-header-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.fn-header-logo {
    width: 280px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   DESKTOP NAV
========================================================= */

.fn-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.fn-desktop-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding-left: 15px;
    padding-right: 15px;
    color: #000000;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.fn-desktop-nav a:hover,
.fn-desktop-nav a.is-active {
    color: #1D4486;
    text-decoration: none;
}

/* remove underline active style from previous version */
.fn-desktop-nav a.is-active::after {
    content: none;
}

/* =========================================================
   HEADER ICONS
========================================================= */

.fn-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.fn-header-icon-link {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.fn-header-icon-link svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
}

.fn-header-icon-link:hover {
    color: #1D4486;
    transform: translateY(-1px);
    text-decoration: none;
}

.fn-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #E3242B;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}

/* =========================================================
   MOBILE HEADER
========================================================= */

.fn-mobile-left {
    display: none;
}

.fn-mobile-menu-toggle {
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    cursor: pointer;
}

.fn-mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #000000;
    transition: background 0.2s ease;
}

.fn-mobile-menu-toggle span:nth-child(2) {
    width: 16px;
}

.fn-mobile-menu-toggle span:nth-child(3) {
    width: 22px;
}

.fn-mobile-menu-toggle:hover,
.fn-mobile-menu-toggle:focus,
.fn-mobile-menu-toggle:active {
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
}

.fn-mobile-menu-toggle:hover span,
.fn-mobile-menu-toggle:focus span {
    background: #C12135;
}

/* =========================================================
   MOBILE SIDEBAR
========================================================= */

.fn-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: none;
    background: rgba(0,0,0,0.25);
}

.fn-mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 320px;
    max-width: 84vw;
    height: 100vh;
    padding: 18px;
    background: #ffffff;
    color: #000000;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 18px 0 60px rgba(0,0,0,0.14);
    overflow-y: auto;
}

body.fn-mobile-menu-open {
    overflow: hidden;
}

body.fn-mobile-menu-open .fn-mobile-overlay {
    display: block;
}

body.fn-mobile-menu-open .fn-mobile-sidebar {
    transform: translateX(0);
}

.fn-mobile-close {
    width: 28px;
    height: 28px;
    margin: 0 0 22px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #000000;
    cursor: pointer;
    font-size: 32px;
    line-height: 1;
    font-weight: 300;
}

.fn-mobile-nav {
    display: grid;
}

.fn-mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(28,28,28,0.1);
    color: #000000;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
}

.fn-mobile-nav a:hover,
.fn-mobile-nav a.is-active {
    color: #1D4486;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1180px) {
    .fn-main-header-grid {
        grid-template-columns: 260px minmax(0, 1fr) 150px;
        gap: 18px;
    }

    .fn-header-logo {
        width: 235px;
    }

    .fn-desktop-nav a {
        padding-left: 11px;
        padding-right: 11px;
        font-size: 14px;
    }
}

@media (max-width: 700px) {
    .fn-main-header-grid {
        min-height: 74px;
        grid-template-columns: 90px minmax(0, 1fr) 90px;
        gap: 10px;
    }

    .fn-mobile-left {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .fn-header-logo-wrap {
        justify-content: center;
    }

    .fn-header-logo {
        width: 205px;
    }

    .fn-desktop-nav {
        display: none;
    }

    .fn-header-icons {
        justify-content: flex-end;
        gap: 8px;
    }

    .fn-header-icon-link {
        width: 28px;
        height: 28px;
    }

    .fn-header-icon-link svg {
        width: 20px;
        height: 20px;
    }

    .fn-topbar-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .fn-header-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .fn-main-header-grid {
        grid-template-columns: 56px minmax(0, 1fr) 82px;
    }

    .fn-header-logo {
        width: 175px;
    }

    .fn-header-icons {
        gap: 4px;
    }

    .fn-header-icon-link {
        width: 25px;
        height: 25px;
    }

    .fn-header-icon-link svg {
        width: 18px;
        height: 18px;
    }
}

/* =========================================================
   COMPLETE REGISTRATION CONFIRMATION
========================================================= */

.fn-registration-confirmation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
    gap: 22px;
    align-items: start;
    max-width: 1140px;
    margin: 0 auto 28px;
    padding: 26px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(28, 28, 28, 0.10);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    font-family: "Outfit", Arial, sans-serif;
}

.fn-registration-confirmation-eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: #1D4486;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fn-registration-confirmation h2 {
    margin: 0 0 10px;
    color: #1D4486;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.fn-registration-confirmation p {
    margin: 0;
    color: #444444;
    font-size: 15px;
    line-height: 1.6;
}

.fn-registration-confirmation p + p {
    margin-top: 10px;
}

.fn-registration-confirmation-next {
    color: #1C1C1C !important;
    font-weight: 700;
}

.fn-registration-confirmation-tickets {
    padding: 18px;
    border-radius: 14px;
    background: #f5f7fb;
    border: 1px solid rgba(28, 28, 28, 0.08);
}

.fn-registration-confirmation-tickets > strong {
    display: block;
    margin-bottom: 12px;
    color: #1D4486;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.fn-registration-confirmation-tickets ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fn-registration-confirmation-tickets li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #1C1C1C;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.fn-registration-confirmation-tickets li strong {
    color: #1D4486;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .fn-registration-confirmation {
        grid-template-columns: 1fr;
        padding: 22px;
    }
}

/* =========================================================
   RESTRICTED PAGE HEADER ACTIONS
========================================================= */

.fn-restricted-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fn-outline-action {
    min-height: 42px;
    padding: 11px 18px;
    border: 1px solid rgba(29, 68, 134, 0.35);
    border-radius: 999px;
    background: transparent;
    color: var(--fn-blue);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fn-outline-action:hover {
    background: rgba(29, 68, 134, 0.08);
    color: var(--fn-blue);
    border-color: rgba(29, 68, 134, 0.55);
    text-decoration: none;
}

/* =========================================================
   REGISTRATION COMPLETION STATUS
========================================================= */

.fn-registration-completion {
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(28, 28, 28, 0.10);
    background: #ffffff;
    color: #1C1C1C;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.fn-registration-completion-main {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.fn-registration-completion strong {
    color: #1D4486;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}

.fn-registration-completion span,
.fn-registration-completion p {
    color: #555555;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.fn-registration-completion p {
    margin: 8px 0 0;
}

.fn-registration-completion.is-completed {
    border-color: rgba(26, 127, 55, 0.22);
    background: rgba(26, 127, 55, 0.06);
}

.fn-registration-completion.is-completed strong {
    color: #1A7F37;
}

.fn-registration-completion.is-partial,
.fn-registration-completion.is-not_started {
    border-color: rgba(193, 33, 53, 0.18);
    background: rgba(193, 33, 53, 0.05);
}

.fn-registration-completion.is-partial strong,
.fn-registration-completion.is-not_started strong {
    color: #C12135;
}

.fn-registration-completion.is-over_submitted {
    border-color: rgba(245, 158, 11, 0.28);
    background: rgba(245, 158, 11, 0.08);
}

.fn-registration-completion.is-over_submitted strong {
    color: #B45309;
}

/* =========================================================
   FILNATION RESTRICTED NAV - BUTTON ONLY
========================================================= */

.fn-restricted-nav {
    margin: 0 0 24px;
    font-family: "Outfit", Arial, sans-serif;
}

.fn-restricted-nav-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 11px 16px;
    border-radius: 999px;
    background: #1D4486;
    color: #ffffff !important;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none !important;
    white-space: nowrap;
}

.fn-restricted-nav-back:hover {
    background: #C12135;
    color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 560px) {
    .fn-restricted-nav-back {
        width: 100%;
    }
}

/* =========================================================
   GLOBAL TABLE ACTIONS
========================================================= */

.fn-table-actions {
    display: grid;
    gap: 8px;
    justify-items: start;
    min-width: 150px;
}

.fn-table-action-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    min-width: 118px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--fn-blue);
    color: #ffffff !important;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
}

.fn-table-action-primary:hover {
    background: var(--fn-red);
    color: #ffffff !important;
}

.fn-table-action-links {
    display: grid;
    gap: 5px;
}

.fn-table-action-links a,
.fn-table-action-link {
    color: var(--fn-blue);
    font-size: 12px;
    line-height: 1.25;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.fn-table-action-links a:hover,
.fn-table-action-link:hover {
    color: var(--fn-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}
