.fc-fyto {
    --fc-green-900: #57a432;
    --fc-green-500: #4a8c5c;
    --fc-green-300: #8ec49e;
    --fc-green-100: #e4f1e8;
    --fc-green-50:  #f2faf4;
    --fc-gray-700: #000;
    --fc-gray-500: #6b7280;
    --fc-gray-300: #d1d5db;
    --fc-gray-200: #e5e7eb;
    --fc-gray-100: #f3f4f6;
    --fc-white:    #ffffff;
    --fc-radius:   8px;
    --fc-radius-lg:12px;
    --fc-border:   1px solid var(--fc-gray-200);
    --fc-shadow:   0 1px 3px rgba(0,0,0,.08);

    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: var(--fc-gray-700);
    background: var(--fc-white);
    border: var(--fc-border);
    border-radius: var(--fc-radius-lg);
    overflow: hidden;
    box-shadow: var(--fc-shadow);
}

.fc-fyto svg { fill: currentColor; }


.fc-fyto__tabs-wrap {
    padding: 16px 20px;
    border-bottom: var(--fc-border);
    background: var(--fc-white);
}

.fc-fyto__tabs {
    display: inline-flex;
    gap: 2px;
    background: var(--fc-green-50);
    border: 1px solid var(--fc-green-100);
    border-radius: 50px;
    padding: 4px;
}

.fc-fyto__tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 20px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    color: var(--fc-green-900);
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
    white-space: nowrap;
    line-height: 1.3;
}

.fc-fyto__tab .farmacon-icon {
    font-size: 32px;
}

.fc-fyto__criterion .farmacon-icon {
    font-size: 28px;
}

.fc-fyto__criterion.fc-fyto__criterion--active .farmacon-icon {
    color: #fff;
}

.fc-fyto__criterion .farmacon-icon {
    color: #57a432;
}

.fc-fyto__tab-icon { width: 20px; height: 20px; flex-shrink: 0; }

.fc-fyto__tab--active { background: var(--fc-green-900); color: var(--fc-white); }

.fc-fyto__tab--active:hover { color: #fff; }

.fc-fyto__tab:not(.fc-fyto__tab--active):hover { background: var(--fc-green-100); }


.fc-fyto__content { display: flex; min-height: 420px; }


.fc-fyto__sidebar {
    width: 265px;
    min-width: 265px;
    border-right: var(--fc-border);
    display: flex;
    flex-direction: column;
    padding-top: 18px;
}

.fc-fyto__sidebar-hd {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--fc-green-500);
    margin: 0 0 6px;
    padding: 0 16px;
}

.fc-fyto__criteria { list-style: none; margin: 0; padding: 0; }

.fc-fyto__criterion {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px 10px 16px;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    margin-right: 12px;
    transition: background .15s;
    user-select: none;
}

.fc-fyto__criterion:not(.fc-fyto__criterion--active):hover { background: var(--fc-green-50); }

.fc-fyto__criterion--active { background: var(--fc-green-900); color: var(--fc-white); }

.fc-fyto__crit-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--fc-green-100);
    color: var(--fc-green-900);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s, color .15s;
}

.fc-fyto__crit-icon svg { width: 18px; height: 18px; }

.fc-fyto__criterion--active .fc-fyto__crit-icon {
    background: rgba(255,255,255,.15);
    color: var(--fc-white);
}

.fc-fyto__crit-name { flex: 1; font-size: 13.5px; font-weight: 500; line-height: 1.2; }

.fc-fyto__crit-arrow { width: 16px; height: 16px; opacity: .5; flex-shrink: 0; }

.fc-fyto__criterion--active .fc-fyto__crit-arrow { opacity: .85; }

.fc-fyto__sidebar-filter {
    margin-top: auto;
    padding: 14px 16px;
    border-top: var(--fc-border);
}

.fc-fyto__sidebar-filter-label {
    font-size: 12px; font-weight: 600;
    color: var(--fc-gray-500);
    margin-bottom: 8px;
}


.fc-fyto__fields-area {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.fc-fyto__fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
    align-content: start;
}

.fc-fyto__field { display: flex; flex-direction: column; gap: 6px; }

.fc-fyto__field--full { grid-column: 1 / -1; }

.fc-fyto__field-label { font-size: 13px; font-weight: 500; color: var(--fc-gray-500); line-height: 1; }

.fc-fyto__field--highlighted .fc-fyto__field-label { color: var(--fc-green-900); }

.fc-fyto__field--highlighted .fc-fyto__select {
    border-color: var(--fc-green-500);
    background: var(--fc-green-50);
}

.fc-fyto__select-wrap { position: relative; }

.fc-fyto__select {
    width: 100%;
    padding: 10px 36px 10px 14px;
    border: var(--fc-border);
    border-radius: var(--fc-radius);
    background: var(--fc-white);
    font-size: 13.5px;
    color: var(--fc-gray-500);
    appearance: none; -webkit-appearance: none;
    cursor: pointer; outline: none;
    transition: border-color .15s, box-shadow .15s;
    font-family: inherit;
}

.fc-fyto__select:focus {
    border-color: var(--fc-green-500);
    box-shadow: 0 0 0 3px rgba(74,140,92,.12);
}

.fc-fyto__select-chevron {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    width: 20px; height: 20px;
    color: var(--fc-gray-500);
    pointer-events: none;
}

.fc-fyto__actions {
    display: flex; align-items: center; gap: 10px;
    padding-top: 20px; margin-top: 16px;
    border-top: var(--fc-border);
    flex-wrap: wrap;
}

.fc-fyto__actions-right {
    display: flex; align-items: center; gap: 10px;
    margin-left: auto; flex-wrap: wrap;
}

.fc-fyto__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 16px;
    border-radius: var(--fc-radius); border: none;
    font-size: 13.5px; font-weight: 500; font-family: inherit;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap; line-height: 1;
}

.fc-fyto__btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.fc-fyto__btn--back {
    background: transparent;
    color: var(--fc-green-900);
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.fc-fyto__btn--back:hover { color: var(--fc-green-900); background: transparent; }

.fc-fyto__btn--ghost { background: transparent; color: var(--fc-gray-500); border: none; }
.fc-fyto__btn--ghost:hover { background: var(--fc-gray-100); color: var(--fc-gray-700); }

.fc-fyto__btn--outline {
    background: var(--fc-white); color: var(--fc-gray-700);
    border: 1.5px solid var(--fc-gray-300);
}
.fc-fyto__btn--outline:hover { border-color: var(--fc-white); color: var(--fc-white); }

.fc-fyto__btn--primary {
    background: var(--fc-green-900); color: var(--fc-white);
    border: none; padding: 10px 20px;
}
.fc-fyto__btn--primary:hover { background: var(--fc-green-900); color: var(--fc-gray-100); }

.fc-fyto__results { border-top: var(--fc-border); padding: 24px; }

.fc-fyto__results-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; gap: 12px; flex-wrap: wrap;
}

.fc-fyto__results-title-wrap { display: flex; align-items: center; gap: 14px; }

.fc-fyto__results-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--fc-green-100); color: var(--fc-green-900);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.fc-fyto__results-icon svg { width: 24px; height: 24px; }

.fc-fyto__results-title { font-size: 18px; font-weight: 700; margin: 0 0 3px; color: var(--fc-gray-700); }

.fc-fyto__results-count { font-size: 13px; color: var(--fc-gray-500); margin: 0; }

.fc-fyto__results-badge {
    padding: 6px 16px; border-radius: 50px;
    background: var(--fc-green-100); color: var(--fc-green-900);
    font-size: 13px; font-weight: 600; white-space: nowrap;
}

.fc-fyto__table-wrap { overflow-x: auto; }

.fc-fyto__table { width: 100%; border-collapse: collapse; min-width: 500px; }

.fc-fyto__table th {
    text-align: left;
    padding: 10px 16px;
    font-weight: 700;
    color: var(--fc-white);
    border-bottom: 2px solid var(--fc-white);
    white-space: nowrap;
    background: var(--fc-green-900);
}

.fc-fyto__table td { padding: 14px 16px; font-size: 13.5px; border-bottom: var(--fc-border); vertical-align: middle; font-family: 'Manrope'; }

.fc-fyto__table tr:last-child td { border-bottom: none; }

.fc-fyto__table tr:hover td { background: var(--fc-green-50); }

.fc-fyto__product-link { color: var(--fc-green-500); text-decoration: none; font-weight: 600; cursor: pointer; transition: color .12s; }

.fc-fyto__product-link:hover { color: var(--fc-green-900); text-decoration: underline; }

.fc-fyto__info-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px;
    border: 1.5px solid var(--fc-gray-300); border-radius: 50%;
    font-size: 10px; font-weight: 700; color: var(--fc-gray-500);
    cursor: pointer; margin-left: 6px; vertical-align: middle;
    transition: border-color .12s, color .12s;
    font-family: serif; font-style: italic; text-decoration: none; line-height: 1;
}
.fc-fyto__info-btn:hover { border-color: var(--fc-green-500); color: var(--fc-green-500); }

.fc-fyto__badge-bio {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--fc-green-100);
    color: var(--fc-green-900);
    font-size: 11px;
    font-weight: 700;
    vertical-align: middle;
    letter-spacing: .02em;
}

.fc-fyto__overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 99999; }

.fc-fyto__popup--panel {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: 360px;
    max-width: 100vw;
    border-radius: var(--fc-radius-lg) 0 0 var(--fc-radius-lg);
    background: var(--fc-white);
    display: flex; flex-direction: column;
    box-shadow: -6px 0 24px rgba(0,0,0,.12);
    overflow: hidden;
    font-family: 'Manrope';
}

.fc-fyto__overlay--centered {
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}

.fc-fyto__popup--product {
    width: 100%; max-width: 960px; max-height: 92dvh;
    border-radius: var(--fc-radius-lg); background: var(--fc-white);
    display: flex; flex-direction: column;
    box-shadow: 0 24px 64px rgba(0,0,0,.22);
    overflow: hidden;
}

.fc-fyto__popup--product .fc-fyto__popup-body { padding: 0; gap: 0; }

.fc-fyto__popup-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 12px; padding: 18px 20px 14px;
    border-bottom: var(--fc-border); flex-shrink: 0;
}

.fc-fyto__popup-header-inner { display: flex; align-items: flex-start; min-width: 0; }

.fc-fyto__popup-title { font-size: 15px; font-weight: 700; margin: 0 0 3px; color: var(--fc-gray-700); }

.fc-fyto__popup-subtitle { font-size: 12.5px; color: var(--fc-gray-500); margin: 0; line-height: 1.4; }

.fc-fyto__popup-close {
    width: 32px; height: 32px;
    border: none; background: var(--fc-gray-100); border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--fc-gray-500); flex-shrink: 0; transition: background .12s; padding: 0;
}
.fc-fyto__popup-close:hover { background: var(--fc-gray-200); color: var(--fc-gray-700); }
.fc-fyto__popup-close svg { width: 17px; height: 17px; }

.fc-fyto__popup-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; overflow-y: auto; flex: 1; }

.fc-fyto__popup-footer {
    padding: 14px 20px; border-top: var(--fc-border);
    display: flex; justify-content: space-between; align-items: center;
    flex-shrink: 0; gap: 12px; flex-wrap: wrap;
}

.fc-fyto__radio-group { display: flex; gap: 20px; align-items: center; padding: 4px 0; }

.fc-fyto__radio { display: flex; align-items: center; gap: 7px; cursor: pointer; font-size: 14px; color: var(--fc-gray-700); user-select: none; }

.fc-fyto__radio input[type="radio"] { accent-color: var(--fc-green-900); width: 16px; height: 16px; cursor: pointer; }


/* ═══════════════════════════════════════════════════════════════
   PRODUCT POPUP  (.fc-fyto__prod-*)  — modern
   ═══════════════════════════════════════════════════════════════ */

/* — Hero header — */
.fc-fyto__prod-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #3d7a22 0%, var(--fc-green-500) 100%);
    flex-shrink: 0;
}

.fc-fyto__prod-hero-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.fc-fyto__prod-hero-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 2px solid rgba(255,255,255,.35);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: inherit;
    letter-spacing: -.02em;
}

.fc-fyto__prod-hero-info { min-width: 0; }

.fc-fyto__prod-hero-name {
    margin: 0 0 7px;
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.01em;
}

.fc-fyto__prod-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fc-fyto__prod-hero-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.28);
    color: rgba(255,255,255,.95);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .01em;
    line-height: 1.5;
}

.fc-fyto__prod-hero-badge--bio {
    background: #fff;
    color: var(--fc-green-900);
    border-color: transparent;
    font-weight: 700;
}

.fc-fyto__prod-hero-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
    padding: 0;
}
.fc-fyto__prod-hero-close:hover { background: rgba(255,255,255,.28); }
.fc-fyto__prod-hero-close svg { width: 18px; height: 18px; fill: #fff; }

/* — Info section — */
.fc-fyto__prod-info {
    padding: 0 24px 8px;
    display: flex;
    flex-direction: column;
}

.fc-fyto__prod-section-hd {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fc-green-500);
    padding: 16px 0 6px;
    border-bottom: 1px solid var(--fc-green-100);
    margin-bottom: 2px;
}

.fc-fyto__prod-kv {
    display: grid;
    grid-template-columns: 155px 1fr;
    gap: 4px 16px;
    padding: 7px 0;
    border-bottom: 1px solid var(--fc-gray-200);
    align-items: baseline;
}

.fc-fyto__prod-kv:last-of-type { border-bottom: none; }

.fc-fyto__prod-kv-key {
    font-size: 12px;
    font-weight: 600;
    color: var(--fc-gray-500);
    line-height: 1.5;
}

.fc-fyto__prod-kv-val {
    font-size: 13px;
    color: var(--fc-gray-700);
    line-height: 1.5;
}

/* — Attachments — */
.fc-fyto__prod-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0 4px;
}

.fc-fyto__prod-attach-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    border-radius: 8px;
    border: 1.5px solid var(--fc-green-300);
    background: var(--fc-green-50);
    color: var(--fc-green-900);
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    font-family: inherit;
    transition: background .12s, border-color .12s;
}
.fc-fyto__prod-attach-btn:hover { background: var(--fc-green-100); border-color: var(--fc-green-500); }

.fc-fyto__prod-attach-icon {
    width: 28px; height: 28px;
    border-radius: 6px;
    background: var(--fc-green-900);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* — Disclaimer — */
.fc-fyto__prod-disclaimer {
    margin: 14px 0 20px;
    padding: 10px 14px;
    background: var(--fc-green-50);
    border-left: 3px solid var(--fc-green-300);
    border-radius: 0 6px 6px 0;
    font-size: 11.5px;
    color: var(--fc-gray-500);
    font-style: italic;
    line-height: 1.6;
}

/* — Crops section — */
.fc-fyto__prod-crops {
    border-top: 2px solid var(--fc-green-100);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.fc-fyto__prod-crops-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: var(--fc-gray-100);
    border-bottom: 1px solid var(--fc-gray-200);
    flex-wrap: wrap;
}

.fc-fyto__prod-crops-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--fc-gray-500);
    margin-right: 4px;
    white-space: nowrap;
}

.fc-fyto__prod-crop-btn {
    padding: 5px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--fc-gray-300);
    background: var(--fc-white);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--fc-gray-700);
    cursor: pointer;
    font-family: inherit;
    line-height: 1.6;
    transition: background .12s, border-color .12s, color .12s;
}
.fc-fyto__prod-crop-btn:hover:not(.is-active) {
    background: var(--fc-green-50);
    border-color: var(--fc-green-300);
    color: var(--fc-green-900);
}
.fc-fyto__prod-crop-btn.is-active {
    background: var(--fc-green-900);
    border-color: var(--fc-green-900);
    color: #fff;
    font-weight: 700;
}

.fc-fyto__prod-crops-body { flex: 1; }

.fc-fyto__prod-crop-panel { display: none; }
.fc-fyto__prod-crop-panel.is-active { display: block; }

/* — Pathogen accordion — */
.fc-fyto__prod-pathogen { border-bottom: 1px solid var(--fc-gray-200); }
.fc-fyto__prod-pathogen:last-child { border-bottom: none; }

.fc-fyto__prod-pathogen-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: var(--fc-white);
    border: none;
    border-left: 3px solid transparent;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    gap: 12px;
    transition: background .12s, border-left-color .15s;
}
.fc-fyto__prod-pathogen-hd:hover {
    background: var(--fc-green-50);
    border-left-color: var(--fc-green-300);
}
.fc-fyto__prod-pathogen-hd.is-open {
    background: var(--fc-green-50);
    border-left-color: var(--fc-green-900);
}

.fc-fyto__prod-pathogen-hd-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.fc-fyto__prod-pathogen-sci {
    font-size: 13.5px;
    font-weight: 700;
    font-style: italic;
    color: var(--fc-gray-700);
    line-height: 1.3;
}

.fc-fyto__prod-pathogen-common {
    font-size: 12px;
    color: var(--fc-gray-500);
}

.fc-fyto__prod-pathogen-hd svg {
    width: 22px; height: 22px;
    fill: var(--fc-gray-400, #9ca3af);
    flex-shrink: 0;
    transition: transform .2s, fill .15s;
}
.fc-fyto__prod-pathogen-hd.is-open svg {
    transform: rotate(180deg);
    fill: var(--fc-green-900);
}

.fc-fyto__prod-pathogen-body { display: block; }
.fc-fyto__prod-pathogen-body.is-hidden { display: none; }

/* — Pathogen detail grid — */
.fc-fyto__prod-path-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--fc-gray-100);
    border-top: 1px solid var(--fc-gray-200);
}

.fc-fyto__prod-path-cell {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--fc-gray-200);
    border-right: 1px solid var(--fc-gray-200);
}
.fc-fyto__prod-path-cell--full {
    grid-column: 1 / -1;
    border-right: none;
}

.fc-fyto__prod-path-key {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--fc-gray-500);
}

.fc-fyto__prod-path-val {
    font-size: 13px;
    color: var(--fc-gray-700);
    line-height: 1.45;
}


/* — Responsive — */
@media (max-width: 860px) {
    .fc-fyto__popup--product { max-width: 100vw; border-radius: 0; max-height: 100dvh; }
}

@media (max-width: 600px) {
    .fc-fyto__prod-hero { padding: 14px 16px; gap: 12px; }
    .fc-fyto__prod-hero-name { font-size: 15px; }
    .fc-fyto__prod-hero-avatar { width: 40px; height: 40px; font-size: 17px; }
    .fc-fyto__prod-kv { grid-template-columns: 1fr; gap: 2px; }
    .fc-fyto__prod-path-grid { grid-template-columns: 1fr; }
    .fc-fyto__prod-path-cell { border-right: none; }
    .fc-fyto__prod-path-cell--full { grid-column: auto; }
}

@media (max-width: 820px) {
    .fc-fyto__content { flex-direction: column; }

    .fc-fyto__sidebar {
        width: 100%; min-width: unset;
        border-right: none; border-bottom: var(--fc-border);
        padding-top: 12px;
    }

    .fc-fyto__criteria { display: flex; flex-wrap: wrap; gap: 4px; padding: 0 12px; }

    .fc-fyto__criterion { margin-right: 0; border-radius: 50px; padding: 8px 12px; border: var(--fc-border); }

    .fc-fyto__criterion--active { border-color: transparent; }

    .fc-fyto__sidebar-filter { display: none; }

    .fc-fyto__fields-grid { grid-template-columns: 1fr; }

    .fc-fyto__field--full { grid-column: auto; }

    .fc-fyto__tabs { flex-wrap: wrap; border-radius: var(--fc-radius-lg); }
}

@media (max-width: 480px) {
    .fc-fyto__popup--panel { width: 100vw; border-radius: 0; }
    .fc-fyto__actions { flex-direction: column; align-items: stretch; }
    .fc-fyto__actions-right { margin-left: 0; flex-direction: column; }
    .fc-fyto__btn { justify-content: center; }
}
