:root {
        --fyffes-blue: #005da8;
        --fyffes-dark-blue: #004b8d;
        --fyffes-yellow: #ffd200;
        --fyffes-red: #d7263d;
        --fyffes-green: #2f9e44;
        --fyffes-ink: #20252b;
        --fyffes-muted: #6c757d;
        --fyffes-border: #e4e8ee;
        --fyffes-card: #ffffff;
        --fyffes-soft: #f5f8fb;
    }

    .banana-page {
        font-family: Inter, Arial, sans-serif;
        color: var(--fyffes-ink);
        background: #ffffff;
    }

    .banana-page .view-container-large {
        max-width: 1180px;
        margin: 0 auto;
    }

    .banana-hero {
        position: relative;
        min-height: 560px;
        display: flex;
        align-items: center;
        overflow: hidden;
        color: #ffffff;
        background: #163d2e url('https://banalat.com/images/banana-5.jpg?auto=format&fit=crop&w=1800&q=80') center center / cover no-repeat;
    }

    .banana-hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0, 55, 34, .74) 0%, rgba(0, 55, 34, .35) 48%, rgba(0, 55, 34, .08) 100%);
    }

    .banana-hero-inner {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 90px 24px;
    }

    .banana-logo-pill {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 132px;
        height: 76px;
        border-radius: 50%;
        background: #244aa7;
        color: #ffffff;
        font-weight: 800;
        font-size: 34px;
        letter-spacing: -.06em;
        box-shadow: 0 18px 34px rgba(0, 0, 0, .24);
        transform: rotate(-8deg);
    }

    .banana-hero h1 {
        max-width: 650px;
        margin: 68px 0 24px;
        font-size: 54px;
        line-height: 1.08;
        font-weight: 800;
        letter-spacing: -.04em;
        color: #ffffff;
    }

    .banana-hero p {
        max-width: 520px;
        font-size: 20px;
        line-height: 1.65;
        color: rgba(255, 255, 255, .9);
    }

    .banana-week-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        padding: 10px 18px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .16);
        border: 1px solid rgba(255, 255, 255, .25);
        color: #ffffff;
        font-weight: 700;
        backdrop-filter: blur(8px);
    }

    .banana-nav {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, .94);
        border-bottom: 1px solid var(--fyffes-border);
        backdrop-filter: blur(12px);
    }

    .banana-nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 13px 24px;
    }

    .banana-nav-title {
        font-weight: 800;
        color: var(--fyffes-blue);
        white-space: nowrap;
    }

    .banana-nav-links {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .banana-nav-links a {
        color: var(--fyffes-ink);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        padding: 8px 12px;
        border-radius: 999px;
    }

    .banana-nav-links a:hover {
        color: #ffffff;
        background: var(--fyffes-blue);
    }

    .banana-section {
        padding: 72px 24px;
    }

    .banana-section-soft {
        background: var(--fyffes-soft);
    }

    .banana-section-head {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 28px;
    }

    .banana-eyebrow {
        margin-bottom: 8px;
        color: var(--fyffes-blue);
        font-weight: 800;
        letter-spacing: .08em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .banana-section h2 {
        margin: 0;
        color: var(--fyffes-blue);
        font-size: 38px;
        line-height: 1.16;
        font-weight: 800;
        letter-spacing: -.03em;
    }

    .banana-section-lead {
        margin: 10px 0 0;
        max-width: 720px;
        color: var(--fyffes-muted);
        font-size: 17px;
        line-height: 1.65;
    }

    .banana-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 0;
        border-radius: 10px;
        padding: 12px 18px;
        text-decoration: none;
        font-weight: 800;
        line-height: 1.2;
        box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
    }

    .banana-btn-red {
        color: #ffffff;
        background: var(--fyffes-red);
    }

    .banana-btn-red:hover {
        color: #ffffff;
        background: #bd1f34;
    }

    .banana-btn-blue {
        color: #ffffff;
        background: var(--fyffes-blue);
    }

    .banana-btn-blue:hover {
        color: #ffffff;
        background: var(--fyffes-dark-blue);
    }

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

    .banana-card {
        background: var(--fyffes-card);
        border: 1px solid var(--fyffes-border);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 18px 38px rgba(28, 39, 49, .08);
    }

    .banana-card-body {
        padding: 24px;
    }

    .banana-card img {
        display: block;
        width: 100%;
        height: auto;
    }

    .banana-card h3 {
        margin: 0 0 10px;
        color: var(--fyffes-blue);
        font-size: 26px;
        font-weight: 800;
    }

    .banana-card p {
        margin: 0;
        color: var(--fyffes-muted);
        line-height: 1.6;
    }

    .banana-weather-card img,
    .banana-quality-card img,
    .banana-logistics-card img {
        border-bottom: 1px solid var(--fyffes-border);
    }

    .banana-weather-matrix-card {
        grid-column: span 2;
    }

    .banana-weather-matrix-wrap {
        overflow-x: auto;
        padding: 18px;
    }

    .banana-weather-matrix {
        width: 100%;
        min-width: 980px;
        border-collapse: collapse;
        font-size: 13px;
        background: #ffffff;
    }

    .banana-weather-matrix th,
    .banana-weather-matrix td {
        border: 1px solid #cfd8e3;
        padding: 6px 7px;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;
    }

    .banana-weather-matrix thead th {
        background: #063b77;
        color: #ffffff;
        font-weight: 800;
    }

    .banana-weather-matrix .matrix-row-title {
        text-align: left;
        font-weight: 800;
        color: #14212d;
        background: #f7f9fc;
        min-width: 170px;
    }

    .banana-weather-matrix .matrix-highlight .matrix-row-title,
    .banana-weather-matrix .matrix-highlight td {
        background: #eaf2ff;
        outline: 2px solid rgba(215, 38, 61, .45);
        outline-offset: -2px;
    }

    .banana-weather-matrix td.matrix-highlight {
        background: #eaf2ff;
        outline: 2px solid rgba(215, 38, 61, .45);
        outline-offset: -2px;
    }

    .banana-weather-matrix .feather,
    .banana-weather-legend .feather {
        vertical-align: middle;
    }

    .banana-weather-legend .icon-16 {
        margin-right: 4px;
    }

    .banana-weather-legend {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        margin: 14px 18px 0;
        color: var(--fyffes-muted);
        font-size: 13px;
    }

    .banana-climatic-note {
        margin-top: 14px;
        padding: 16px 18px;
        background: #dfe9f6;
        border-radius: 0 0 18px 18px;
        color: #213243;
    }

    .banana-climatic-note h4 {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 800;
        color: #213243;
    }

    .banana-climatic-note p {
        margin: 7px 0 0;
        color: #213243;
        font-size: 14px;
        font-style: italic;
    }

    .banana-plantation-context {
        grid-column: span 2;
    }

    .banana-plantation-context-layout {
        display: grid;
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 0;
        align-items: stretch;
    }

    .banana-plantation-image {
        min-height: 430px;
        background: #163d2e url('https://images.unsplash.com/photo-1528825871115-3581a5387919?auto=format&fit=crop&w=1400&q=80') center center / cover no-repeat;
        position: relative;
    }

    .banana-plantation-image:after {
        content: "Did you know that a plantation needs an average of 52mm of rain per week for optimal growth?";
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 18px;
        color: #ffffff;
        font-weight: 700;
        font-style: italic;
        text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
    }

    .banana-context-table-wrap {
        padding: 24px;
        overflow-x: auto;
    }

    .banana-context-table {
        width: 100%;
        min-width: 560px;
        border-collapse: collapse;
        font-size: 14px;
    }

    .banana-context-table th,
    .banana-context-table td {
        border-bottom: 1px solid var(--fyffes-border);
        padding: 13px 12px;
        text-align: left;
        vertical-align: top;
    }

    .banana-context-table th {
        color: #ffffff;
        background: var(--fyffes-blue);
        font-weight: 800;
    }

    .banana-context-table tbody tr:nth-child(even) td {
        background: #f6f9fc;
    }

    .banana-context-factor {
        color: var(--fyffes-blue);
        font-weight: 800;
        white-space: nowrap;
    }

    .banana-context-status {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 4px 9px;
        border-radius: 999px;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
    }

    .banana-context-status.good {
        background: var(--fyffes-green);
    }

    .banana-context-status.watch {
        background: #e2a300;
    }

    .banana-context-status.risk {
        background: var(--fyffes-red);
    }

    .banana-highlight-layout {
        display: grid;
        grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
        gap: 24px;
        align-items: stretch;
    }

    .banana-message-card {
        border-radius: 22px;
        padding: 30px;
        background: var(--fyffes-yellow);
        box-shadow: 0 18px 36px rgba(218, 167, 0, .22);
    }

    .banana-message-card h3,
    .banana-outlook-card h3 {
        margin: 0 0 22px;
        font-size: 25px;
        font-weight: 800;
    }

    .banana-message-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 16px;
    }

    .banana-message-list li {
        display: grid;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        color: #1e2a36;
        line-height: 1.48;
    }

    .banana-check {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        background: var(--fyffes-blue);
        font-weight: 900;
    }

    .banana-outlook-card {
        border-radius: 18px;
        padding: 28px;
        background: var(--fyffes-blue);
        color: #ffffff;
        box-shadow: 0 18px 36px rgba(0, 93, 168, .22);
    }

    .banana-outlook-card h3,
    .banana-outlook-card p {
        color: #ffffff;
    }

    .banana-photo-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 18px;
    }

    .banana-photo-grid img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
    }

    .banana-super-hero {
        overflow: hidden;
        border-radius: 24px;
        background: radial-gradient(circle at top left, rgba(255, 210, 0, .28), transparent 34%), linear-gradient(135deg, #062f5f 0%, #005da8 52%, #003b70 100%);
        color: #ffffff;
        box-shadow: 0 22px 46px rgba(0, 69, 125, .22);
    }

    .banana-super-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
        gap: 30px;
        align-items: center;
        padding: 34px;
    }

    .banana-super-hero h2,
    .banana-super-hero p {
        color: #ffffff;
    }

    .banana-super-hero h2 {
        margin: 8px 0 14px;
        font-size: 46px;
        line-height: 1.05;
        font-weight: 900;
        letter-spacing: -.04em;
    }

    .banana-super-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .24);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .banana-super-nino {
        display: inline-block;
        margin-top: 10px;
        color: var(--fyffes-yellow);
        font-size: 58px;
        font-weight: 900;
        letter-spacing: -.05em;
    }

    .banana-super-hero-lead {
        max-width: 650px;
        font-size: 18px;
        line-height: 1.65;
        opacity: .92;
    }

    .banana-super-hero-card {
        padding: 22px;
        border-radius: 20px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(255, 255, 255, .34);
        color: var(--fyffes-ink);
        box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
    }

    .banana-super-hero-card img {
        width: 100%;
        border-radius: 14px;
        border: 1px solid var(--fyffes-border);
    }

    .banana-super-hero-card strong {
        display: block;
        margin-top: 14px;
        color: var(--fyffes-blue);
        font-size: 18px;
        font-weight: 900;
    }

    .banana-super-hero-card span {
        display: block;
        margin-top: 6px;
        color: var(--fyffes-muted);
        line-height: 1.5;
    }

    .banana-super-kpi-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-top: 22px;
    }

    .banana-super-kpi {
        padding: 16px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 12px 26px rgba(28, 39, 49, .08);
    }

    .banana-super-kpi span {
        display: block;
        color: var(--fyffes-muted);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .banana-super-kpi strong {
        display: block;
        margin-top: 7px;
        color: var(--fyffes-blue);
        font-size: 25px;
        font-weight: 900;
        line-height: 1.1;
    }

    .banana-super-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
        margin-top: 24px;
    }

    .banana-super-card {
        overflow: hidden;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 16px 34px rgba(28, 39, 49, .08);
    }

    .banana-super-card-full {
        grid-column: 1 / -1;
    }

    .banana-super-card-body {
        padding: 24px;
    }

    .banana-super-card h3 {
        margin: 0 0 12px;
        color: var(--fyffes-blue);
        font-size: 25px;
        font-weight: 900;
    }

    .banana-super-card p {
        color: var(--fyffes-muted);
        line-height: 1.62;
    }

    .banana-super-card ul {
        margin: 12px 0 0;
        padding-left: 19px;
        color: #334155;
        line-height: 1.6;
    }

    .banana-super-card li + li {
        margin-top: 8px;
    }

    .banana-super-image-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 0 18px 18px;
    }

    .banana-super-image-row img,
    .banana-super-wide-image img,
    .banana-super-gallery img {
        display: block;
        width: 100%;
        border-radius: 12px;
        border: 1px solid var(--fyffes-border);
        background: #f8fafc;
    }

    .banana-super-wide-image {
        padding: 0 18px 18px;
    }

    .banana-super-risk-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
        margin-top: 18px;
    }

    .banana-super-risk {
        padding: 14px;
        border-radius: 14px;
        background: #f8fafc;
        border: 1px solid var(--fyffes-border);
    }

    .banana-super-risk strong {
        display: block;
        color: var(--fyffes-ink);
        font-weight: 900;
    }

    .banana-super-risk span {
        display: block;
        margin-top: 5px;
        color: var(--fyffes-muted);
        font-size: 13px;
        line-height: 1.45;
    }

    .banana-risk-red { border-top: 5px solid #dc2626; }
    .banana-risk-orange { border-top: 5px solid #f97316; }
    .banana-risk-yellow { border-top: 5px solid #facc15; }
    .banana-risk-green { border-top: 5px solid #22c55e; }

    .banana-super-gallery {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-top: 18px;
    }

    .banana-super-gallery figure {
        margin: 0;
        padding: 10px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
    }

    .banana-super-gallery figcaption {
        margin-top: 8px;
        color: var(--fyffes-muted);
        font-size: 12px;
        font-weight: 800;
        line-height: 1.35;
    }

    .banana-super-proposal {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 18px;
    }

    .banana-super-proposal div {
        padding: 16px;
        border-radius: 14px;
        background: #eaf2ff;
        color: #12385f;
        font-weight: 800;
        line-height: 1.45;
    }

    .banana-super-source-note {
        margin-top: 16px;
        color: var(--fyffes-muted);
        font-size: 13px;
        line-height: 1.5;
    }




    .banana-slide-html-stack {
        display: grid;
        gap: 34px;
        margin-top: 30px;
    }

    .banana-slide-html {
        position: relative;
        overflow: hidden;
        min-height: 610px;
        padding: 20px;
        border-radius: 4px;
        background: #ffffff;
        border: 1px solid #e8edf4;
        box-shadow: 0 18px 38px rgba(28, 39, 49, .09);
        font-family: Arial, Helvetica, sans-serif;
    }

    .banana-slide-title {
        margin: 0;
        color: #07559a;
        font-size: 43px;
        font-weight: 500;
        letter-spacing: -.04em;
        line-height: 1.05;
    }

    .banana-slide-subtitle {
        margin: 8px 0 0;
        color: #07559a;
        font-size: 15px;
        font-style: italic;
        font-weight: 600;
    }

    .banana-slide-logo {
        position: absolute;
        top: 36px;
        right: 58px;
        width: 74px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        background: #244aa7;
        font-size: 20px;
        font-weight: 900;
        letter-spacing: -.08em;
        transform: rotate(-9deg);
    }

    .banana-slide-icons {
        position: absolute;
        top: 94px;
        right: 46px;
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .banana-slide-icons span {
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: #07559a;
    }

    .banana-slide-icons span:nth-child(2) { background: #ffd200; }
    .banana-slide-icons span:nth-child(3) { background: #07559a; }
    .banana-slide-icons span:nth-child(4) { background: #2d9cdb; }
    .banana-slide-icons span:nth-child(5) { background: #ffd200; }

    .banana-slide-content {
        display: grid;
        grid-template-columns: 1.00fr .56fr .90fr;
        gap: 16px;
        margin-top: 66px;
        align-items: start;
    }

    .banana-slide-content.costa {
        grid-template-columns: 1.05fr .52fr 1.12fr;
        margin-top: 66px;
    }

    .banana-slide-yellow,
    .banana-slide-blue {
        min-height: 330px;
        border-radius: 0 14px 0 14px;
        padding: 34px 12px 12px;
        box-shadow: 0 12px 28px rgba(28, 39, 49, .16);
    }

    .banana-slide-yellow {
        background: #ffd200;
        color: #1f5f9f;
    }

    .banana-slide-blue {
        background: #005da8;
        color: #ffd200;
    }

    .banana-slide-panel-title {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 34px;
        color: inherit;
        font-size: 18px;
        font-weight: 900;
    }

    .banana-slide-panel-title:after {
        content: "";
        position: absolute;
    }

    .banana-slide-icon-big {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        color: #ffd200;
        background: #005da8;
        font-size: 19px;
        font-weight: 900;
    }

    .banana-slide-blue .banana-slide-icon-big {
        color: #005da8;
        background: #ffd200;
    }

    .banana-slide-divider {
        height: 1px;
        margin: -18px 0 22px;
        border-top: 1px dashed rgba(255, 255, 255, .72);
    }

    .banana-slide-yellow .banana-slide-divider {
        border-color: rgba(255, 255, 255, .9);
    }

    .banana-slide-message-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 14px;
    }

    .banana-slide-message-list li {
        display: grid;
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 13px;
        color: #1f5f9f;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.34;
    }

    .banana-slide-check {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffd200;
        background: #005da8;
        font-size: 15px;
        font-weight: 900;
    }

    .banana-slide-outlook-text {
        color: #ffd200;
        font-size: 14px;
        font-weight: 900;
        line-height: 1.25;
    }

    .banana-slide-visuals {
        display: grid;
        gap: 12px;
    }

    .banana-slide-placeholder,
    .banana-slide-photo {
        border-radius: 2px;
        background: #f3f6fb;
        border: 1px solid #d9e1ea;
        min-height: 82px;
    }

    .banana-slide-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px;
        color: #5f6b76;
        font-size: 11px;
        font-weight: 800;
        text-align: center;
    }

    .banana-slide-photo-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 8px;
    }

    .banana-slide-photo-grid.one {
        grid-template-columns: 1fr;
    }

    .banana-slide-photo-grid.two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banana-slide-photo-grid.layout-standard {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banana-slide-photo-grid.layout-wide {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 100%;
    }

    .banana-slide-photo-grid.layout-narrow {
        grid-template-columns: 1fr;
    }

    .banana-slide-photo-grid.layout-thin {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .banana-slide-photo {
        min-height: 128px;
        background: linear-gradient(135deg, #2f9e44, #c8e6c9);
        background-size: cover;
        background-position: center;
    }

    .banana-slide-photo-grid.one .banana-slide-photo {
        min-height: 220px;
    }

    .banana-slide-photo-grid.layout-wide .banana-slide-photo {
        min-height: 330px;
        height: 100%;
    }

    .banana-slide-photo-grid.layout-narrow .banana-slide-photo {
        min-height: 92px;
    }

    .banana-slide-photo-grid.layout-thin .banana-slide-photo {
        min-height: 54px;
    }

    .banana-slide-photo.pack {
        background: linear-gradient(135deg, #f1f3f5, #8d99ae);
    }

    .banana-slide-caption {
        color: #07559a;
        font-size: 15px;
        font-style: italic;
        font-weight: 700;
        text-align: center;
    }

    .banana-slide-footer {
        position: absolute;
        left: 58px;
        bottom: 24px;
        color: #07559a;
        font-size: 10px;
        font-weight: 700;
    }

    .banana-map-feature {
        display: grid;
        grid-template-columns: .78fr 1.22fr;
        gap: 28px;
        border-radius: 24px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 18px 38px rgba(28, 39, 49, .08);
    }

    .banana-map-copy {
        padding: 38px;
        background: var(--fyffes-blue);
        color: #ffffff;
    }

    .banana-map-copy h3 {
        margin: 0 0 18px;
        color: var(--fyffes-yellow);
        font-size: 32px;
        font-weight: 800;
    }

    .banana-map-copy ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 12px;
        line-height: 1.55;
    }

    .banana-map-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    .banana-shipping-grid[data-banana-ec-shipping-grid] {
        position: relative;
        isolation: isolate;
        padding: 24px 0 72px;
        overflow: hidden;
    }

    .banana-shipping-grid[data-banana-ec-shipping-grid]:before {
        content: "";
        position: absolute;
        z-index: -2;
        right: -40px;
        bottom: 0;
        width: 760px;
        height: 520px;
        background: url('/plugins/Banana_Page/assets/media/cargo-ships-docked-port-night.jpg') right bottom / auto no-repeat;
        clip-path: circle(50% at 70% 50%);
        opacity: .96;
        pointer-events: none;
    }

    .banana-shipping-grid[data-banana-ec-shipping-grid]:after {
        content: none;
    }

    .banana-vessel-card {
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 12px 25px rgba(28, 39, 49, .08);
    }

    .banana-vessel-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 15px 18px;
        background: var(--fyffes-blue);
        color: #ffffff;
        font-size: 17px;
        font-weight: 800;
    }

    .banana-vessel-title.yellow {
        background: var(--fyffes-yellow);
        color: var(--fyffes-blue);
    }

    .banana-vessel-name {
        min-width: 0;
    }

    .banana-vessel-etd {
        flex: 0 0 auto;
        font-size: 12px;
        font-weight: 800;
        opacity: .9;
        white-space: nowrap;
    }

    .banana-vessel-body {
        padding: 18px;
        color: #26313d;
        line-height: 1.58;
    }

    .banana-vessel-port-block {
        padding-bottom: 14px;
        margin-bottom: 14px;
        border-bottom: 1px solid var(--fyffes-border);
    }

    .banana-vessel-port-block:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
    }

    .banana-vessel-port {
        font-weight: 800;
        color: var(--fyffes-blue);
        margin-bottom: 4px;
    }

    .banana-price-panel {
        background: #ffffff;
        border-radius: 18px;
        padding: 28px;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 18px 38px rgba(28, 39, 49, .09);
    }

    .banana-filter-row {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        margin: 20px 0 24px;
    }

    .banana-date-input {
        min-width: 170px;
        padding: 12px 14px;
        border: 1px solid #cfd6df;
        border-radius: 8px;
        color: #3f4750;
        background: #f8fafc;
        font-size: 18px;
        font-weight: 700;
    }

    .banana-small-btn {
        padding: 12px 18px;
        border: 0;
        border-radius: 8px;
        color: #ffffff;
        background: #30363d;
        font-size: 16px;
        font-weight: 800;
    }

    .banana-small-btn.reset {
        background: #e03146;
    }

    .banana-price-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 18px;
    }

    .banana-price-table th {
        padding: 14px 10px;
        border-top: 1px solid var(--fyffes-border);
        border-bottom: 2px solid var(--fyffes-border);
        color: #20252b;
        font-size: 19px;
        text-align: left;
    }

    .banana-price-table td {
        padding: 13px 10px;
        border-bottom: 1px solid var(--fyffes-border);
    }

    .banana-price-table th:nth-child(2),
    .banana-price-table td:nth-child(2) {
        text-align: center;
    }

    .banana-price-table .banana-price-value {
        color: var(--fyffes-ink);
        font-weight: 800;
        white-space: nowrap;
    }

    .banana-price-table tr:nth-child(even) td {
        background: #f2f2f2;
    }

    .trend-down {
        color: #dc3545;
        font-weight: 900;
    }

    .trend-flat {
        color: #ffb703;
        font-weight: 900;
    }

    .trend-up {
        color: #2f9e44;
        font-weight: 900;
    }



    .banana-focus-panel {
        overflow: hidden;
        border-radius: 18px;
        background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 18px 38px rgba(28, 39, 49, .09);
    }

    .banana-focus-port-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        padding: 0 24px 24px;
    }

    .banana-focus-port-card {
        padding: 18px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 12px 24px rgba(28, 39, 49, .07);
    }

    .banana-focus-port-card span {
        display: block;
        color: var(--fyffes-muted);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .banana-focus-port-card h4 {
        margin: 7px 0 10px;
        color: var(--fyffes-blue);
        font-size: 20px;
        font-weight: 900;
    }

    .banana-focus-port-card strong {
        display: block;
        color: var(--fyffes-ink);
        font-size: 28px;
        font-weight: 900;
    }

    .banana-focus-port-card p {
        margin-top: 8px;
        color: var(--fyffes-muted);
        font-size: 13px;
        line-height: 1.45;
    }

    .banana-focus-week-table.banana-rise-datatable {
        min-width: 1480px;
    }

    .banana-ports-week-chart-wrap {
        position: relative;
        height: 320px;
        margin: 0 24px 18px;
        padding: 18px;
        border: 1px solid var(--fyffes-border);
        border-radius: 16px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
    }

    .banana-ports-week-chart-wrap canvas {
        display: block;
        width: 100% !important;
        height: 100% !important;
    }

    .banana-ports-week-chart-empty {
        position: absolute;
        inset: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 160px;
        border: 1px dashed var(--fyffes-border);
        border-radius: 14px;
        color: var(--fyffes-muted);
        background: rgba(251, 252, 254, .9);
        font-weight: 800;
        text-align: center;
        z-index: 1;
    }

    .banana-week-table-source {
        display: none !important;
    }

    .banana-port-empty {
        color: #adb5bd;
        background: #fbfcfe !important;
    }

    .banana-week-total-row td {
        background: #fff8d9 !important;
        color: #1f2a36;
        font-weight: 800;
    }

    .banana-cost-table banana-rise-datatable .scenario-low td:first-child,
    .banana-cost-table banana-rise-datatable .scenario-medium td:first-child,
    .banana-cost-table banana-rise-datatable .scenario-high td:first-child {
        font-weight: 900;
        color: var(--fyffes-blue);
    }

    .banana-cost-table banana-rise-datatable .cost-total td {
        background: #eaf7ef !important;
        color: #173f2a;
        font-weight: 900;
    }

    .banana-cost-note {
        margin-top: 12px;
        color: var(--fyffes-muted);
        font-size: 13px;
        line-height: 1.5;
    }



    .banana-europe-kpi-grid {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 14px;
    }

    .banana-europe-kpi {
        padding: 18px;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 12px 26px rgba(28, 39, 49, .08);
    }

    .banana-europe-kpi span {
        display: block;
        color: var(--fyffes-muted);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

    .banana-europe-kpi strong {
        display: block;
        margin-top: 8px;
        color: var(--fyffes-blue);
        font-size: 26px;
        font-weight: 900;
    }

    .banana-europe-table-wrap {
        overflow-x: auto;
        padding: 0 18px 18px;
    }

    .banana-europe-table {
        width: 100%;
        min-width: 980px;
        border-collapse: collapse;
        font-size: 14px;
    }

    .banana-europe-table th,
    .banana-europe-table td {
        border-bottom: 1px solid var(--fyffes-border);
        padding: 11px 10px;
        text-align: left;
        vertical-align: top;
    }

    .banana-europe-table th {
        color: #ffffff;
        background: var(--fyffes-blue);
        font-weight: 800;
        white-space: nowrap;
    }

    .banana-europe-table tbody tr:nth-child(even) td {
        background: #f6f9fc;
    }

    .banana-europe-table small {
        display: block;
        margin-top: 3px;
        color: var(--fyffes-muted);
        font-weight: 700;
    }

    .banana-empty-week td {
        color: #8b96a3;
        background: #fbfcfe !important;
    }

    .banana-klaipeda-week-cell {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .banana-klaipeda-aviso-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 3px;
    }

    .banana-klaipeda-aviso-badge {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 2px 5px;
        color: var(--fyffes-blue);
        background: #eaf2ff;
        border: 1px solid #cfe0ff;
        font-size: 9px;
        font-weight: 800;
        line-height: 1;
        white-space: nowrap;
    }

    .banana-europe-chip-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 16px;
    }

    .banana-europe-chip {
        display: inline-flex;
        align-items: center;
        padding: 6px 10px;
        border-radius: 999px;
        color: var(--fyffes-blue);
        background: #eaf2ff;
        font-size: 12px;
        font-weight: 800;
    }

    .banana-europe-lists {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .banana-europe-lists ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .banana-europe-lists li {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--fyffes-border);
        color: var(--fyffes-muted);
    }

    .banana-europe-lists li strong {
        color: var(--fyffes-ink);
    }

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

    .banana-gallery-item {
        border-radius: 16px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid var(--fyffes-border);
        box-shadow: 0 12px 28px rgba(28, 39, 49, .08);
    }

    .banana-gallery-item img {
        display: block;
        width: 100%;
    }

    .banana-footer-cta {
        background: linear-gradient(120deg, var(--fyffes-blue), #003b70);
        color: #ffffff;
        text-align: center;
    }

    .banana-footer-cta h2,
    .banana-footer-cta p {
        color: #ffffff;
    }

    @media (max-width: 991px) {
        .banana-hero h1 {
            font-size: 42px;
        }

        .banana-grid-2,
        .banana-highlight-layout,
        .banana-super-hero-grid,
        .banana-super-grid,
        .banana-map-feature {
            grid-template-columns: 1fr;
        }

        .banana-slide-content,
        .banana-slide-content.costa,
        .banana-slide-photo-grid,
        .banana-slide-photo-grid.two {
            grid-template-columns: 1fr;
        }

        .banana-slide-html {
            padding: 34px 24px 56px;
        }

        .banana-slide-logo,
        .banana-slide-icons {
            display: none;
        }

        .banana-super-kpi-grid,
        .banana-super-risk-grid,
        .banana-super-gallery,
        .banana-super-proposal {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .banana-quality-html-grid {
            grid-template-columns: 1fr;
        }

        .banana-slide-photo-grid.layout-wide .banana-slide-photo {
            min-height: 240px;
        }

        .banana-shipping-grid,
        .banana-gallery-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .banana-shipping-grid[data-banana-ec-shipping-grid]:before {
            right: -150px;
            width: 680px;
            height: 470px;
        }

        .banana-europe-kpi-grid,
        .banana-europe-lists {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .banana-focus-port-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }


        .banana-weather-matrix-card,
        .banana-plantation-context {
            grid-column: span 1;
        }

        .banana-plantation-context-layout {
            grid-template-columns: 1fr;
        }

        .banana-section-head,
        .banana-nav-inner {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media (max-width: 640px) {
        .banana-hero {
            min-height: 520px;
        }

        .banana-ports-week-chart-wrap {
            height: 260px;
            margin-right: 14px;
            margin-left: 14px;
            padding: 12px;
        }

        .banana-ports-week-chart-empty {
            inset: 12px;
        }

        .banana-hero h1 {
            margin-top: 46px;
            font-size: 34px;
        }

        .banana-section {
            padding: 52px 16px;
        }

        .banana-section h2 {
            font-size: 30px;
        }

        .banana-shipping-grid,
        .banana-gallery-grid,
        .banana-photo-grid,
        .banana-super-kpi-grid,
        .banana-super-risk-grid,
        .banana-super-gallery,
        .banana-super-proposal,
        .banana-super-image-row {
            grid-template-columns: 1fr;
        }

        .banana-shipping-grid[data-banana-ec-shipping-grid] {
            padding-top: 180px;
            padding-bottom: 0;
            overflow: visible;
        }

        .banana-shipping-grid[data-banana-ec-shipping-grid]:before {
            top: 0;
            right: 0;
            width: 100%;
            height: 180px;
            background-size: auto 180px;
            background-position: right top;
            border-radius: 28px;
            clip-path: inset(0 round 28px);
        }

        .banana-europe-kpi-grid,
        .banana-europe-lists {
            grid-template-columns: 1fr;
        }

        .banana-focus-port-grid {
            grid-template-columns: 1fr;
        }


        .banana-price-table {
            font-size: 15px;
        }
    }


    /* RISE / Bootstrap hybrid polish: keeps Fyffes branding but uses CRM-like cards, spacing and tables. */
    .banana-page.rise-hybrid {
        background: #f7f9fb;
    }

    .rise-hybrid .banana-section {
        padding: 56px 24px;
    }

    .rise-hybrid .banana-section-soft {
        background: #f1f5f9;
    }

    .rise-hybrid .banana-nav {
        background: #ffffff;
        box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
    }

    .rise-hybrid .banana-nav-links a {
        border: 1px solid transparent;
        background: #f8fafc;
    }

    .rise-hybrid .banana-nav-links a:hover {
        border-color: var(--fyffes-blue);
    }

    .rise-hybrid .banana-card,
    .rise-hybrid .banana-price-panel,
    .rise-hybrid .banana-focus-panel,
    .rise-hybrid .banana-vessel-card,
    .rise-hybrid .banana-gallery-item,
    .rise-hybrid .banana-map-feature,
    .rise-hybrid .banana-europe-kpi,
    .rise-hybrid .banana-slide-html {
        border-radius: 12px;
        border-color: #dee2e6;
        box-shadow: 0 2px 10px rgba(16, 24, 40, .06);
    }

    .rise-hybrid .banana-card-body,
    .rise-hybrid .banana-context-table-wrap {
        padding: 20px;
    }

    .rise-hybrid .banana-section-head {
        padding-bottom: 16px;
        border-bottom: 1px solid #e9ecef;
        margin-bottom: 24px;
    }

    .rise-hybrid .banana-eyebrow {
        color: #667085;
    }

    .rise-hybrid .banana-section h2 {
        font-size: 30px;
        letter-spacing: -.02em;
    }

    .rise-hybrid .banana-section-lead {
        font-size: 15px;
    }

    .rise-hybrid .banana-btn,
    .rise-hybrid .banana-small-btn {
        border-radius: 6px;
        box-shadow: none;
    }

    .rise-hybrid .banana-weather-matrix,
    .rise-hybrid .banana-context-table,
    .rise-hybrid .banana-price-table,
    .rise-hybrid .banana-europe-table {
        border-collapse: separate;
        border-spacing: 0;
        font-size: 14px;
    }

    .rise-hybrid .banana-weather-matrix th,
    .rise-hybrid .banana-weather-matrix td,
    .rise-hybrid .banana-context-table th,
    .rise-hybrid .banana-context-table td,
    .rise-hybrid .banana-price-table th,
    .rise-hybrid .banana-price-table td,
    .rise-hybrid .banana-europe-table th,
    .rise-hybrid .banana-europe-table td {
        border-color: #e9ecef;
    }

    .rise-hybrid .banana-europe-table th,
    .rise-hybrid .banana-context-table th,
    .rise-hybrid .banana-weather-matrix thead th {

    }

    .rise-hybrid .banana-message-card,
    .rise-hybrid .banana-outlook-card,
    .rise-hybrid .banana-slide-yellow,
    .rise-hybrid .banana-slide-blue {
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(16, 24, 40, .08);
    }

    .rise-hybrid .banana-europe-kpi strong,
    .rise-hybrid .banana-focus-port-card strong {
        font-size: 22px;
    }

    .rise-hybrid .banana-footer-cta {
        background: #111827;
    }
