/* ==========================================================================
   ROOT VARIABLES & DESIGN TOKENS
   ========================================================================== */

:root {
    --fk-orange: #eb682c;
    --fk-orange-hover: #d7561d;
    --fk-gradient-accent: linear-gradient(205deg, #f8ba16 13.47%, #e93728 93.83%);

    --fk-black: #141313;
    --fk-text-muted: #5e656e;
    --fk-grey: #7d8896;
    --fk-white: #ffffff;
    --fk-grey-bg: #ececee;
    --fk-border-grey: #e2e2e2;
    --fk-glass-border: rgba(183, 183, 183, 0.45);

    --fk-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --fk-fs-13: 13px;
    --fk-fs-14: 14px;
    --fk-fs-15: 15px;
    --fk-fs-16: 16px;
    --fk-fs-18: 18px;
    --fk-fs-20: 20px;
    --fk-fs-24: 24px;
    --fk-fs-32: 32px;

    --fk-sp-4: 4px;
    --fk-sp-8: 8px;
    --fk-sp-10: 10px;
    --fk-sp-12: 12px;
    --fk-sp-14: 14px;
    --fk-sp-16: 16px;
    --fk-sp-20: 20px;
    --fk-sp-24: 24px;
    --fk-sp-32: 32px;
    --fk-sp-40: 40px;

    --fk-radius-sm: 12px;
    --fk-radius-md: 20px;
    --fk-radius-lg: 28px;
    --fk-radius-xl: 40px;
    --fk-radius-pill: 50px;
    --fk-radius-circle: 50%;

    --fk-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
    --fk-shadow-md: 0 16px 32px rgba(0, 0, 0, 0.08);
    --fk-shadow-orange: 0 6px 18px rgba(235, 104, 44, 0.35);

    --fk-transition-fast: all 0.15s ease;
    --fk-transition-base: all 0.2s ease;
    --fk-transition-smooth: all 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
        scroll-padding-top: 120px !important;
    }
}

body {
    font-family: var(--fk-font-family);
    color: var(--fk-black);
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

.container-half-fluid-right {
    width: 100%;
    padding-left: var(--fk-sp-12);
    padding-right: 0;
    margin-left: auto;
    margin-right: 0;
}

@media (min-width: 576px) {
    .container-half-fluid-right {
        padding-left: calc((100vw - 540px) / 2 + var(--fk-sp-12));
    }
}

@media (min-width: 768px) {
    .container-half-fluid-right {
        padding-left: calc((100vw - 720px) / 2 + var(--fk-sp-12));
    }
}

@media (min-width: 992px) {
    .container-half-fluid-right {
        padding-left: calc((100vw - 960px) / 2 + var(--fk-sp-12));
    }
}

@media (min-width: 1200px) {
    .container-half-fluid-right {
        padding-left: calc((100vw - 1140px) / 2 + var(--fk-sp-12));
    }
}

@media (min-width: 1400px) {
    .container-half-fluid-right {
        padding-left: calc((100vw - 1320px) / 2 + var(--fk-sp-12));
    }
}

/* ==========================================================================
   UI ICONS & ACCENTS
   ========================================================================== */

.ui-icon {
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
    flex-shrink: 0;
}

.accent-dot {
    width: 40px;
    height: 40px;
    border-radius: var(--fk-radius-circle);
    background: var(--fk-gradient-accent);
    flex-shrink: 0;
}

/* ==========================================================================
   GLASSMORPHISM
   ========================================================================== */

.glass-card,
.glass-effect {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid var(--fk-border-grey);
    border-radius: var(--fk-radius-md);
    backdrop-filter: blur(40.5px) brightness(100%) saturate(95.7%);
    -webkit-backdrop-filter: blur(40.5px) brightness(100%) saturate(95.7%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 1px 0 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 27px rgba(0, 0, 0, 0.08),
    inset -1px 0 27px rgba(0, 0, 0, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.02);
    transition: var(--fk-transition-base);

}

.glass-card--dark,
.glass-effect--dark {
    background: rgba(183, 183, 183, 0.3);
    backdrop-filter: blur(12px) brightness(100%) saturate(100%);
    -webkit-backdrop-filter: blur(12px) brightness(100%) saturate(95.7%);
    border: 1px solid rgba(226, 226, 226, 0.6);
    border-radius: var(--fk-radius-md);
}

/* ==========================================================================
   SHARED SOCIAL BUTTONS & FLAGS
   ========================================================================== */

.social-circle-btn {
    width: var(--fk-sp-32);
    height: var(--fk-sp-32);
    border-radius: var(--fk-radius-circle);
    border: 1px solid var(--fk-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--fk-black);
    text-decoration: none;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    transition: var(--fk-transition-base);
}

.social-circle-btn:hover {
    background-color: var(--fk-black);
    color: var(--fk-white);
    transform: translateY(-2px);
}

.social-circle-btn .ui-icon,
.social-circle-btn svg {
    width: 15px;
    height: 15px;
}

.mini-flag {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    border-radius: var(--fk-radius-circle);
    border: 1px solid var(--fk-white);
}

.flag-ua {
    background: linear-gradient(180deg, #005bbb 50%, #ffd500 50%);
}

.flag-pl {
    background: linear-gradient(180deg, #ffffff 50%, #dc143c 50%);
}

/* ==========================================================================
   SHARED UI BUTTONS
   ========================================================================== */

.btn-fk {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fk-sp-8);
    padding: var(--fk-sp-14) 28px;
    font-family: var(--fk-font-family);
    font-size: var(--fk-fs-18);
    font-weight: 600;
    border-radius: var(--fk-radius-pill);
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    text-decoration: none;
    transition: var(--fk-transition-base);
}

.btn-fk:active {
    transform: translateY(0);
}

.btn-fk-primary {
    background-color: var(--fk-orange);
    color: var(--fk-white);
}

.btn-fk-primary:hover {
    background-color: var(--fk-orange-hover);
    color: var(--fk-white);
    box-shadow: var(--fk-shadow-orange);
    transform: translateY(-1px);
}

.btn-fk-primary:active {
    transform: translateY(0);
}

.btn-fk-glass,
.btn-fk-badge {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(226, 226, 226, 0.85);
    backdrop-filter: blur(40.5px) brightness(100%) saturate(95.7%) hue-rotate(10deg);
    -webkit-backdrop-filter: blur(40.5px) brightness(100%) saturate(95.7%) hue-rotate(10deg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 1px 0 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 27px rgba(0, 0, 0, 0.08),
    inset -1px 0 27px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    color: var(--fk-black);
}

.btn-fk-glass:hover,
.btn-fk-badge:hover {
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--fk-black);
    transform: translateY(-2px);
    color: var(--fk-black);
}

.btn-fk-outline {
    background: transparent;
    color: var(--fk-black);
    border: 1px solid var(--fk-black);
    transition: var(--fk-transition-base);
}

.btn-fk-outline:hover {
    box-shadow: inset 0 0 0 1px var(--fk-black);
}

.btn-slider-nav {
    all: unset;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    border-radius: var(--fk-radius-circle);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--fk-black);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(20, 19, 19, 0.12);
    backdrop-filter: blur(40.5px) brightness(100%) saturate(95.7%) hue-rotate(10deg);
    -webkit-backdrop-filter: blur(40.5px) brightness(100%) saturate(95.7%) hue-rotate(10deg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: var(--fk-transition-base);
}

.btn-slider-nav:hover {
    background: #ffffff;
    border-color: var(--fk-black);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    color: var(--fk-black);
}

.btn-slider-nav:active {
    transform: translateY(0);
}

.btn-slider-nav svg,
.btn-slider-nav .ui-icon {
    width: 20px;
    height: 20px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1399.98px) {
    .btn-slider-nav {
        width: 48px;
        height: 48px;
    }
}

.btn-fk-badge {
    gap: var(--fk-sp-16);
    padding: var(--fk-sp-8) 22px var(--fk-sp-8) var(--fk-sp-8);
    border-radius: var(--fk-radius-pill);
}

.btn-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--fk-radius-circle);
    border: 1px solid var(--fk-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.btn-badge-text {
    font-size: var(--fk-fs-18);
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 1399.98px) {
    .btn-fk {
        padding: var(--fk-sp-12) 22px;
        font-size: var(--fk-fs-16);
    }

    .btn-slider-nav {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 991.98px) {
    .btn-fk-badge {
        width: 100%;
        justify-content: center;
        font-size: var(--fk-fs-16);
    }
}

/* ==========================================================================
   UI FORM CONTROLS & SELECTS
   ========================================================================== */

.input-box {
    position: relative;
    width: 100%;
}

.input-box input,
.fk-form-control {
    width: 100%;

    font-family: var(--fk-font-family);
    font-size: var(--fk-fs-16);
    font-weight: 600;
    color: var(--fk-black);
    border: 1px solid var(--fk-black);
    border-radius: var(--fk-radius-xl);
    padding: var(--fk-sp-16) var(--fk-sp-24);
    background-color: transparent;
    outline: none;
    transition: var(--fk-transition-base);
}

.input-box input:focus,
.fk-form-control:focus {
    border-color: var(--fk-orange);
    box-shadow: 0 0 0 3px rgba(235, 104, 44, 0.15);
}

.input-box input::placeholder,
.fk-form-control::placeholder {
    color: var(--fk-black);
    font-size: var(--fk-fs-16);
    font-weight: 600;
    opacity: 0.6;
}

.input-box-icon {
    position: absolute;
    top: 50%;
    right: var(--fk-sp-24);
    transform: translateY(-50%);
    width: var(--fk-sp-24);
    height: var(--fk-sp-24);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.input-box-icon svg,
.input-box-icon .ui-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.select-box {
    position: relative;
    display: block;
    width: 100%;
    font-family: var(--fk-font-family);
}

.select-box__current {
    position: relative;
    cursor: pointer;
    outline: none;
}

.select-box__input-text {
    width: 100%;

    margin: 0;
    padding: 10px 15px;
    border: 2px solid #eee;
    border-radius: var(--fk-radius-md);
    font-size: var(--fk-fs-15);
    font-weight: 600;
    line-height: 16px;
    background-color: var(--fk-white);
    transition: var(--fk-transition-base);
}

.select-box__icon {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    transition: var(--fk-transition-base);
    pointer-events: none;
}

.select-box__current:focus .select-box__icon {
    transform: translateY(-50%) rotate(180deg);
}

.select-box__current:focus .select-box__input-text {
    border-radius: var(--fk-radius-md) var(--fk-radius-md) 0 0;
    border-color: var(--fk-orange);
}

.select-box__current:focus + .select-box__list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.select-box__list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--fk-white);
    border: 2px solid #eee;
    border-top: none;
    border-radius: 0 0 var(--fk-radius-md) var(--fk-radius-md);
    box-shadow: var(--fk-shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 50;
    transition: var(--fk-transition-base);
}

.select-box__option {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    position: relative;
    color: var(--fk-black);
    font-size: var(--fk-fs-15);
    font-weight: 500;
    text-decoration: none;
    transition: var(--fk-transition-fast);
}

.select-box__option:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 1px;
    background: #eee;
}

.select-box__option:hover {
    background-color: rgba(235, 104, 44, 0.08);
    color: var(--fk-orange);
}

.select-box__value {
    display: flex;
}

.select-box__input {
    display: none;
}

.select-box__input:checked + .select-box__input-text {
    display: block;
}

/* ==========================================================================
   LANGUAGE WIDGET
   ========================================================================== */

.languages-box {
    position: relative;
    cursor: pointer;
}

.languages-list {
    z-index: 999;
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    left: 0;
    background-color: var(--fk-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.language-item {
    padding: 5px;
    white-space: nowrap;
}

.language-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.language-item a,
.language-item a:hover {
    color: var(--fk-black);
    text-decoration: none;
}

/* ==========================================================================
   TEXT HIGHLIGHT
   ========================================================================== */

.highlight-text-wrap {
    position: relative;
    display: inline-block;
    padding: 0 0.15em;
    white-space: nowrap;
}

.highlight-text-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%) rotate(-1deg);
    width: calc(100% + 0.45em);
    height: 170%;
    background-image: url('/images/decor/text-highlight.svg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.highlight-text-wrap.big::after {
    width: calc(120% + 0.45em);
    height: 150%;
    transform: translate(-50%, -55%) rotate(-1deg);
}

@media (max-width: 767.98px) {
    .highlight-text-wrap::after {
        width: calc(100% + 0.3em);
        height: 145%;
    }
}

/* ==========================================================================
   SEO SECTION
   ========================================================================== */

.seo-section {
    padding-bottom: var(--fk-sp-32);
}

.seo-section h2 {
    font-size: var(--fk-fs-24);
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    margin-top: var(--fk-sp-32);
    margin-bottom: var(--fk-sp-16);
}

.seo-section h2:first-child {
    margin-top: 0;
}

.seo-section h3 {
    font-size: var(--fk-fs-20);
    font-weight: 600;
    line-height: normal;
    margin-top: var(--fk-sp-24);
    margin-bottom: var(--fk-sp-14);
}

.seo-section p {
    font-size: var(--fk-fs-16);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: var(--fk-sp-14);
}

.seo-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: var(--fk-sp-16);
    margin-bottom: var(--fk-sp-20);
}

.seo-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--fk-sp-10);
}

.seo-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: var(--fk-sp-16);
    height: var(--fk-sp-16);
    border-radius: var(--fk-radius-circle);
    background: var(--fk-gradient-accent);
}

.seo-section ul li p {
    margin-bottom: 0;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */

#header.header {
    width: 100%;
    z-index: 1000;
    padding-top: var(--fk-sp-10);
    padding-bottom: var(--fk-sp-14);
    background-color: transparent;
    transition: var(--fk-transition-smooth);
}

#header.header.header-scrolled {
    background-color: var(--fk-white);
    box-shadow: var(--fk-shadow-sm);
    padding-top: var(--fk-sp-8);
    padding-bottom: var(--fk-sp-8);
}

.header-top-spacer {
    width: 200px;
}

.offer-text-wrapper {
    flex: 1;
    overflow: hidden;
}

.offer-text {
    position: relative;
    min-height: var(--fk-sp-24);
}

.offer-slide {
    display: none;
    font-size: var(--fk-fs-15);
    font-weight: 600;
    color: var(--fk-orange);
    letter-spacing: 0.2px;
}

.offer-slide.active {
    display: inline-block;
}

.header-main-row {
    padding-top: 6px;
}

.header-brand-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.header-brand-logo .header-logo-svg {
    width: 160px;
    height: 22px;
    color: var(--fk-orange);
}

.header-nav-list {
    list-style: none;
    gap: var(--fk-sp-32);
    margin: 0;
    padding: 0;
}

.header-nav-link {
    text-decoration: none;
    color: var(--fk-black);
    font-size: var(--fk-fs-18);
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s ease;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--fk-orange);
    transition: width 0.2s ease;
}

.header-nav-link:hover {
    color: var(--fk-orange);
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-cta-button {
    all: unset;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--fk-orange);
    color: var(--fk-white);
    border-radius: var(--fk-radius-pill);
    padding: var(--fk-sp-14) 28px;
    font-size: var(--fk-fs-18);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--fk-transition-base);
}

.header-cta-button:hover {
    background-color: var(--fk-orange-hover);
    color: var(--fk-white);
    box-shadow: var(--fk-shadow-orange);
    transform: translateY(-1px);
}

.header-cta-button:active {
    transform: translateY(0);
}

.header-burger-btn {
    background: transparent;
    border: none;
    padding: var(--fk-sp-8) var(--fk-sp-4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: var(--fk-sp-32);
    gap: 4px;
    cursor: pointer;
}

.header-burger-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--fk-black);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header-nav-dropdown {
    position: relative;
    padding: var(--fk-sp-10) 0;
}

.dropdown-toggle-btn {
    all: unset;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--fk-black);
    font-size: var(--fk-fs-18);
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.dropdown-chevron {
    width: 10px;
    height: 6px;
    transition: transform 0.25s ease;
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(var(--fk-sp-12));
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--fk-border-grey);
    border-radius: var(--fk-radius-md);
    padding: var(--fk-sp-12);
    min-width: 250px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: var(--fk-shadow-md);
    transition: var(--fk-transition-smooth);
    z-index: 1050;
}

.header-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

.header-nav-dropdown:hover .header-dropdown-menu,
.header-nav-dropdown:focus-within .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.header-nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.header-nav-dropdown .header-nav-link::after {
    bottom: 9px;
}

.header-dropdown-link {
    display: block;
    padding: var(--fk-sp-10) var(--fk-sp-16);
    font-size: var(--fk-fs-15);
    font-weight: 600;
    color: var(--fk-black);
    text-decoration: none;
    border-radius: var(--fk-radius-sm);
    transition: var(--fk-transition-base);
    white-space: nowrap;
}

.header-dropdown-link:hover {
    background-color: rgba(235, 104, 44, 0.08);
    color: var(--fk-orange);
    transform: translateX(3px);
}

.mobile-sidebar {
    background-color: var(--fk-white);
    font-family: var(--fk-font-family);
}

.mobile-nav-link {
    display: block;
    font-size: var(--fk-fs-18);
    font-weight: 600;
    color: var(--fk-black);
    text-decoration: none;
}

.mobile-nav-accordion-btn {
    all: unset;

    width: 100%;
    padding: var(--fk-sp-12) 0;
    font-size: var(--fk-fs-18);
    font-weight: 600;
    color: var(--fk-black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--fk-border-grey);
    cursor: pointer;
}

.mobile-accordion-chevron {
    width: 12px;
    height: 8px;
    transition: transform 0.25s ease;
}

.mobile-nav-accordion-btn:not(.collapsed) .mobile-accordion-chevron {
    transform: rotate(180deg);
    stroke: var(--fk-orange);
}

.mobile-subnav-list {
    padding: var(--fk-sp-8) 0 var(--fk-sp-8) var(--fk-sp-16);
    margin: 0;
    border-bottom: 1px solid var(--fk-border-grey);
}

.mobile-subnav-link {
    display: block;
    font-size: var(--fk-fs-16);
    font-weight: 500;
    color: #4a4a4a;
    text-decoration: none;
}

.mobile-subnav-link:hover {
    color: var(--fk-orange);
}

.mobile-phone-link a {
    color: var(--fk-black);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--fk-fs-18);
}

@media (max-width: 1399.98px) {
    .header-nav-list {
        gap: var(--fk-sp-20);
    }

    .header-nav-link,
    .dropdown-toggle-btn {
        font-size: var(--fk-fs-16);
    }

    .header-cta-button {
        padding: var(--fk-sp-12) 22px;
        font-size: var(--fk-fs-16);
    }
}

@media (max-width: 991.98px) {
    .header-top-row {
        margin-bottom: 2px;
    }

    .offer-slide {
        font-size: var(--fk-fs-13);
    }

    .header-brand-logo .header-logo-svg {
        width: 130px;
        height: 18px;
    }
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.content-footer {
    position: relative;
    width: 100%;
    background-color: var(--fk-grey-bg);
    border-radius: var(--fk-radius-xl) var(--fk-radius-xl) 0 0;
    padding-top: 150px;
    padding-bottom: 0;
    overflow: hidden;
    font-family: var(--fk-font-family);
    color: var(--fk-black);
}

.footer-decor-curve {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    max-width: 40vw;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-decor-curve svg {
    width: 100%;
    height: auto;
    display: block;
}

.footer-main-content {
    z-index: 2;
    padding-bottom: var(--fk-sp-40);
}

.footer-brand-mark {
    width: 44px;
    height: 44px;
    color: var(--fk-orange);
    object-fit: contain;
}

.footer-slogan {
    font-size: var(--fk-fs-16);
    font-weight: 500;
    line-height: 1.35;
    color: var(--fk-black);
    max-width: 320px;
}

.contact-label {
    width: 95px;
    font-size: var(--fk-fs-15);
    font-weight: 600;
    color: var(--fk-black);
    flex-shrink: 0;
}

.contact-value {
    font-size: var(--fk-fs-15);
    font-weight: 600;
    color: var(--fk-black);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

a.contact-value:hover {
    color: var(--fk-orange);
}

.footer-link {
    font-size: var(--fk-fs-15);
    font-weight: 600;
    color: var(--fk-black);
    text-decoration: none;
    line-height: 1.4;
    transition: var(--fk-transition-base);
    display: inline-block;
}

.footer-link:hover {
    color: var(--fk-orange);
    transform: translateX(2px);
}

.footer-copyright {
    font-size: var(--fk-fs-13);
    font-weight: 500;
    color: var(--fk-text-muted);
}

.footer-ticker-wrap {
    width: 100%;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    position: relative;
    background: transparent;
}

.footer-ticker-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: footerTickerScroll 28s linear infinite;
}

.footer-ticker-track:hover {
    animation-play-state: paused;
}

.ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: var(--fk-sp-32);
    padding-right: var(--fk-sp-32);
}

.ticker-svg-logo {
    height: 120px;
    width: auto;
    color: var(--fk-orange);
    display: block;
    object-fit: contain;
}

.ticker-dot {
    width: 60px;
    height: 60px;
    border-radius: var(--fk-radius-circle);
    background: var(--fk-gradient-accent);
    flex-shrink: 0;
}

@keyframes footerTickerScroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 991.98px) {
    .content-footer {
        padding-top: 50px;
        border-radius: var(--fk-radius-lg) var(--fk-radius-lg) 0 0;
    }

    .footer-decor-curve {
        bottom: unset;
        height: unset;
    }

    .footer-slogan {
        max-width: 100%;
    }

    .footer-copyright {
        margin-top: 30px;
    }

    .footer-ticker-wrap {
        padding: var(--fk-sp-16) 0;
        margin-top: var(--fk-sp-24);
    }

    .footer-ticker-track {
        gap: var(--fk-sp-20);
    }

    .ticker-svg-logo {
        height: 32px;
    }

    .ticker-dot {
        width: 10px;
        height: 10px;
    }

    .ticker-item {
        gap: var(--fk-sp-20);
        padding-right: var(--fk-sp-20);
    }
}

/* ==========================================================================
   FORM CONTROLS (GLOBAL)
   ========================================================================== */

.fk-input,
.cta-input {
    width: 100%;
    height: 58px;
    padding: 0 var(--fk-sp-24);
    border-radius: var(--fk-radius-pill);
    border: 1px solid var(--fk-black);
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px) saturate(105%);
    -webkit-backdrop-filter: blur(6px) saturate(105%);
    font-size: var(--fk-fs-16);
    font-weight: 400;
    color: var(--fk-black);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.fk-input::placeholder,
.cta-input::placeholder {
    color: var(--fk-grey);
}

.fk-input:focus,
.cta-input:focus {
    border-color: var(--fk-orange);
    box-shadow: 0 0 0 3px rgba(235, 104, 44, 0.2);
}

.fk-checkbox,
.cta-checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--fk-black);
    flex-shrink: 0;
    cursor: pointer;
}

.fk-consent-text,
.cta-consent-text {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--fk-grey);
    user-select: none;
}

@media (max-width: 991.98px) {
    .fk-input,
    .cta-input {
        height: 52px;
        font-size: var(--fk-fs-15);
    }
}

/* ==========================================================================
   GLOBAL CHIPS & BADGES
   ========================================================================== */

.fk-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px var(--fk-sp-12);
    border-radius: var(--fk-radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--fk-white);
}

.fk-chip--outline {
    padding: 6px var(--fk-sp-14);
    border: 1px solid var(--fk-black);
    color: var(--fk-black);
    font-size: 14px;
    font-weight: 500;
    background: transparent;
}

/* ==========================================================================
   GLOBAL UI PATTERNS (BREADCRUMBS, PAGINATION, TAGS, RATING)
   ========================================================================== */

/* Хлібні крихти */
.breadcrumb {
    margin-top: var(--fk-sp-20);
    margin-bottom: var(--fk-sp-24);
}

.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--fk-black);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--fk-orange);
}

.breadcrumb-item.active {
    color: var(--fk-orange);
    white-space: nowrap;
    display: block;
}

.fk-tag-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--fk-sp-8) var(--fk-sp-16);
    border: 1px solid var(--fk-black);
    border-radius: var(--fk-radius-pill);
    color: var(--fk-black);
    text-decoration: none;
    font-size: var(--fk-fs-14);
    font-weight: 500;
    background: transparent;
    transition: var(--fk-transition-base);
    white-space: nowrap;
}

.fk-tag-btn:hover {
    border-color: var(--fk-orange);
    color: var(--fk-orange);
}

.fk-tag-btn.active {
    background-color: var(--fk-orange);
    border-color: var(--fk-orange);
    color: var(--fk-white);
    pointer-events: none;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.rating-stars svg {
    width: 18px;
    height: 18px;
}

/* Системна пагінація */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--fk-sp-10);
    margin-top: var(--fk-sp-40);
    padding: 0;
    list-style: none;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--fk-radius-circle) !important;
    background-color: var(--fk-orange);
    color: var(--fk-white);
    font-size: var(--fk-fs-16);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--fk-orange);
    transition: var(--fk-transition-base);
}

.pagination .page-link:hover {
    background-color: var(--fk-white);
    color: var(--fk-orange);
    border-color: var(--fk-orange);
}

.pagination .page-item.active .page-link {
    background-color: var(--fk-white);
    color: var(--fk-orange);
    border-color: var(--fk-orange);
    cursor: default;
    pointer-events: none;
}

.pagination .page-item.disabled .page-link {
    background-color: #f1f1f3;
    border-color: #f1f1f3;
    color: var(--fk-grey);
    cursor: not-allowed;
    opacity: 0.6;
}

.spec-dot-gradient {
    width: 10px;
    height: 10px;
    border-radius: var(--fk-radius-circle);
    background: var(--fk-gradient-accent);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .breadcrumb-home-icon {
        width: 16px;
        height: 16px;
        fill: currentColor;
        vertical-align: -2px;
    }

    .breadcrumb-item.active {
        color: var(--fk-orange);
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        height: 25px;
        overflow: hidden;
    }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-form-section {
    position: relative;
    padding: 160px 0;
}

.cta-form-card {
    color: var(--fk-black);
    border: 1px solid var(--fk-border-grey);
    background: var(--fk-white);
    border-radius: var(--fk-radius-xl);
    overflow: hidden;
    padding: 60px var(--fk-sp-40);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.cta-theme-orange .cta-form-card {
    background: #eb682c;
    box-shadow: none;
    border: none;
    color: var(--fk-white);
}

.cta-decor-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 580px;
    pointer-events: none;
    z-index: 1;
    height: auto;
}

.cta-decor-arrow {
    position: absolute;
    top: 0;
    right: 16px;
    width: 100%;
    max-width: 100px;
    pointer-events: none;
    z-index: 1;
    height: auto;
    transform: translateY(100%);
}

.cta-theme-orange .cta-decor-curve {
    bottom: 0;
    right: 0;
    left: unset;
    height: 100%;
}

.cta-machine-wrap {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.cta-machine-img {
    max-height: 580px;
    object-fit: contain;
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.1));
}

.cta-content-wrap {
    position: relative;
    z-index: 2;
}

.cta-main-title {
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cta-header-desc {
    max-width: 380px;
    font-size: var(--fk-fs-16);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
}

.cta-form {
    max-width: 440px;
    margin: 0 auto;
}

.cta-inputs-stack {
    display: flex;
    flex-direction: column;
    gap: var(--fk-sp-16);
}

.cta-field {
    position: relative;
    width: 100%;
}

.cta-submit-btn {
    height: 60px;
    font-size: var(--fk-fs-20);
    font-weight: 600;
}

.cta-theme-orange .fk-input, .cta-theme-orange .cta-input {
    border-color: var(--fk-white);
    background: transparent;
    color: var(--fk-white);
}

.cta-theme-orange .fk-input::placeholder,
.cta-theme-orange .cta-input::placeholder {
    color: var(--fk-white);
}

.cta-theme-orange .cta-submit-btn {
    border: 1px solid var(--fk-white);
    color: white;
}

.btn-fk-white:hover {
    box-shadow: inset 0 0 0 1px var(--fk-white);
}

.cta-theme-orange .fk-consent-text,
.cta-theme-orange .cta-consent-text {
    color: var(--fk-white);
}

@media (max-width: 991.98px) {
    .cta-form-card {
        padding: var(--fk-sp-40) var(--fk-sp-20);
        border-radius: var(--fk-radius-lg);
    }

    .cta-machine-img {
        max-height: 420px;
        margin-bottom: 30px;
    }

    .cta-header-desc {
        font-size: 14px;
    }

    .cta-submit-btn {
        height: 54px;
        font-size: var(--fk-fs-18);
    }

    .cta-theme-orange .cta-decor-curve {
        left: unset;
        right: 0;
        height: unset;
    }

    #header.header {
        padding-top: 0;
    }

    .hero-bg-shapes .shape-left {
        display: none;
    }

    .cta-decor-arrow {
        display: none;
    }
}

/* ==========================================================================
   MOBILE HEADER & FULLSCREEN OFFCANVAS
   ========================================================================== */

@media (max-width: 1199.98px) {
    #header.header {
        padding-top: var(--fk-sp-4);
        padding-bottom: 0;
    }

    .header-top-row {
        padding: 4px 0;
    }

    .offer-slide {
        font-size: 14px;
        font-weight: 500;
        color: var(--fk-orange);
    }

    .header-brand-logo .header-logo-svg {
        width: 170px;
        height: 24px;
    }

    /* Бургер (3 тонкі смужки 24x2px) */
    .header-burger-btn {
        width: 24px;
        height: 24px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        background: transparent;
        border: none;
    }

    .header-burger-btn .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: var(--fk-black);
        border-radius: 1px;
    }
}

/* Offcanvas Sidebar */
.mobile-sidebar {
    width: 100% !important;
    max-width: 100vw;
    background-color: var(--fk-white);
    border: none;
    overflow: hidden;
    position: fixed;
    inset: 0;
    z-index: 1060;
}

.mobile-decor-arch {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 130px;
    pointer-events: none;
    z-index: 1;
}

.mobile-decor-arch svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mobile-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--fk-black);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
}

.mobile-nav-container {
    padding: 32px 24px 30px 24px;
    overflow-y: auto;
    position: relative;
    z-index: 5;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link,
.mobile-tree-parent-btn .parent-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--fk-black);
    text-decoration: none;
    line-height: 1.2;
    transition: color var(--fk-transition-fast);
}

.mobile-tree-parent-btn {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.mobile-tree-chevron {
    transition: transform 0.25s ease;
}

.mobile-tree-parent-btn:not(.collapsed) .mobile-tree-chevron {
    transform: rotate(180deg);
    fill: var(--fk-orange);
}

.mobile-subnav-tree {
    position: relative;
    margin-top: 14px;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-subnav-tree::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 6px;
    left: 4px;
    width: 2px;
    background-color: var(--fk-border-grey);
    border-radius: 1px;
}

.mobile-subnav-branch {
    position: relative;
}

.mobile-subnav-branch::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -14px;
    width: 10px;
    height: 2px;
    background-color: var(--fk-border-grey);
    border-radius: 1px;
}

.mobile-subnav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--fk-text-muted);
    text-decoration: none;
    line-height: 1.3;
    transition: color var(--fk-transition-fast);
}

.mobile-subnav-link:hover,
.mobile-nav-link:hover,
.mobile-tree-parent-btn:hover {
    color: var(--fk-orange);
}

.mobile-footer-actions {
    padding: 20px 24px 36px 24px;
    position: relative;
    z-index: 5;
    background-color: var(--fk-white);
}

.mobile-footer-actions .tel {
    margin-bottom: 12px;
}

.mobile-footer-actions .tel a {
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
}

.mobile-footer-actions .social-circle-btn {
    width: 36px;
    height: 36px;
    border-color: var(--fk-black);
}

.mobile-footer-actions .btn-fk-primary {
    height: 52px;
    font-size: 16px;
    font-weight: 600;
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.fk-modal-card {
    background-color: var(--fk-orange);
    border-radius: var(--fk-radius-xl);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.fk-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: var(--fk-radius-circle);
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: var(--fk-orange);
    color: var(--fk-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--fk-transition-base);
}

.fk-modal-close:hover {
    background: var(--fk-white);
    color: var(--fk-orange);
    transform: rotate(90deg);
}

.fk-modal-card .cta-machine-wrap {
    max-width: 400px;
}

.fk-modal-card .cta-machine-img {
    max-height: 460px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .fk-modal-card {
        border-radius: var(--fk-radius-lg);
    }

    .fk-modal-close {
        top: 14px;
        right: 14px;
        width: 36px;
        height: 36px;
    }

    .fk-modal-card .cta-machine-img {
        max-height: 260px;
    }
}

/* --- WIDGET --- */
.wheel-widget {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9900;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 70px;
    transition: transform 0.3s;
}

.wheel-widget:hover {
    transform: scale(1.1);
}

/* Світіння */
.wheel-widget-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(251, 83, 0, 0.4);
    border-radius: 50%;
    filter: blur(8px);
    z-index: -1;
    animation: glowPulse 2s infinite alternate;
}

.wheel-widget-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 5px;
    transition: transform 1s ease;
}

/* Анімація прокрутки маленького колеса */
.is-spinning-mini {
    transform: rotate(360deg);
}

.wheel-widget-text {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.wheel-widget-close {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.wheel-widget:hover .wheel-widget-close {
    opacity: 1;
}

@keyframes glowPulse {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.8;
    }
}

/* --- OVERLAY --- */
.hero-wheel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.hero-wheel-content {
    background: #fff;
    width: 95%;
    max-width: 450px;
    border-radius: 20px;
    padding: 30px 15px;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.wheel-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.wheel-wrapper-main {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 15px auto;
}

.wheel-img {
    width: 100%;
    height: 100%;
}

.wheel-marker {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='30' viewBox='0 0 75 121' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 0.5H74.5V99.7L37.5 120.4L0.5 99.7V0.5Z' fill='%23FB5300' stroke='%23222' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 5;
}

.result-title {
    color: #FB5300;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.result-value {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.close-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Сам символ хрестика */
.close-overlay-btn span {
    font-size: 32px;
    line-height: 1;
    color: #999;
    /* Сірий колір за замовчуванням */
    transition: color 0.3s ease;
}

.close-overlay-btn:hover span {
    color: #FB5300;
    /* Брендовий помаранчевий при наведенні */
}

.close-overlay-btn:hover {
    transform: rotate(90deg);
    /* Анімація повороту */
}

/* Адаптив для мобільних */
@media (max-width: 576px) {
    .close-overlay-btn {
        top: 10px;
        right: 10px;
    }
}

#claim-prize-btn, .wheel-spin-btn {
    margin-top: 15px;
    width: 100%;
    max-width: 280px;
    /* Така ж ширина, як у кнопки крутити */
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: none;
    background-color: #FB5300;
    /* Твій брендовий колір */
    color: #fff;
    /* Тінь та анімація */
    box-shadow: 0 10px 25px rgba(251, 83, 0, 0.4);
    transition: all 0.3s ease;
    /* Анімація "биття серця", щоб кнопку хотілося натиснути */
    animation: btnPulse 2s infinite;
}

/* Ефект наведення */
#claim-prize-btn:hover, .wheel-spin-btn:hover {
    background-color: #e64d00;
    /* Трохи темніший при наведенні */
    transform: translateY(-3px) scale(1.02);
    /* Піднімається і збільшується */
    box-shadow: 0 15px 35px rgba(251, 83, 0, 0.6);
    /* Тінь стає більшою */
    cursor: pointer;
    color: white;
}

/* Ефект кліку */
#claim-prize-btn:active, .wheel-spin-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(251, 83, 0, 0.4);
}

/* Анімація пульсації (хвилі від кнопки) */
@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(251, 83, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(251, 83, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(251, 83, 0, 0);
    }
}

/* Адаптив для мобільних */
@media (max-width: 576px) {
    #claim-prize-btn, .wheel-spin-btn {
        font-size: 16px;
        padding: 14px;
        max-width: 100%;
    }
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}


.popup-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 450px;
    position: relative;
    font-family: sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.popup-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--textColor);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.logo-img {
    width: 30px;
    height: auto;
}

.check-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

.popup-container .highlight-text {
    color: var(--mainColor);
    font-weight: 600;
}

#variant_1 .highlight-text {
    font-size: 18px;
}

.popup-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.text-content {
    flex: 1;
    padding-right: 15px;
}

.text-content h2 {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: var(--textColor);
    line-height: 1.3;
}

.subtitle {
    color: var(--subTextColor);
    font-size: 14px;
    margin: 0;
}

.image-content {
    width: 120px;
}

.image-content img {
    width: 100%;
    height: auto;
}

.main-btn {
    width: 100%;
    background: var(--mainColor);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.main-btn:hover {
    background: var(--hoverColor);
}

.icon-chart {
    margin-right: 8px;
    background: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mainColor);
    padding: 4px;
}

.icon-chart svg {
    width: 100%;
    height: 100%;
    display: block;
    flex-shrink: 0;
}

.v2-main {
    align-items: flex-start;
}

.v2-clock-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.v2-arrow-text {
    color: var(--mainColor);
    font-weight: 600;
    font-size: 14px;
    margin: 10px 0;
}

.v2-question-box {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.v2-q-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.v2-question-box p {
    margin: 0;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
}

.v2-image {
    width: 160px;
    margin-top: 20px;
}

.v3-main {
    align-items: center;
}

.pulse-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--mainColor);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(230, 92, 0, 0.4);
    animation: pulse 2s infinite;
    margin-right: 5px;
}

.v3-divider {
    border: 0;
    height: 2px;
    background: var(--mainColor);
    width: 40px;
    margin: 15px 0 15px 0;
}

.v3-sub {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.v3-image {
    width: 160px;
}

.v3-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.v3-feature {
    font-size: 11px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.v3-feature svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(230, 92, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(230, 92, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(230, 92, 0, 0);
    }
}

@media (max-width: 480px) {
    .popup-container {
        padding: 16px;
        width: 95%;
    }

    .popup-main {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 15px;
    }

    .image-content {
        width: 140px;
        margin: 0 auto;
    }

    .v2-question-box {
        justify-content: center;
        text-align: left;
    }

    .v3-divider {
        margin: 15px auto;
    }

    .v3-footer {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .fk-modal-card.cta-theme-orange .cta-machine-img {
        max-height: 150px;
        margin-bottom: 0;
    }
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 19, 19, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1070;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fk-sp-16);
}

.popup-overlay.hidden, .popup-variant.hidden {
    display: none;
}
