:root {
    --clr-brand: #2a7c5f;
    --clr-brand-dark: #1e5a45;
    --clr-brand-hover: #32906e;
    --clr-text: #0f2c1f;
    --clr-dark-text: #0f3b2e;
    --gradient-divider: linear-gradient(90deg, rgba(42, 124, 95, 0) 0%, rgba(42, 124, 95, 0.2) 50%, rgba(42, 124, 95, 0) 100%);
    --gradient-section-bg: linear-gradient(135deg, rgba(42, 124, 95, 0.003) 0%, rgba(252, 255, 253, 1) 50%, rgba(42, 124, 95, 0.003) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica-NeueLTStd", Arial, sans-serif !important;
    font-size: 14px;
    background: #ffffff;
    color: #033b2f;
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.fade-in { animation: fadeIn .9s ease forwards; opacity: 0; }
.fade-in-delayed { animation: fadeIn 1.5s ease forwards; opacity: 0; }
.fade-in-up { animation: fadeUp .9s ease forwards; opacity: 0; }
.fade-in-up-delayed { animation: fadeUp 1.4s ease forwards; opacity: 0; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.top-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 50;
}

.header-inner {
    position: relative;
}

.top-logo {
  padding: 14px 0 6px;
}

.top-logo img {
    height: 150px;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.15));
    transition: transform .3s ease;
}

.top-logo img:hover {
    transform: scale(1.04);
}

.mediandmore-link {
    position: absolute;
    top: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2a7c5f 0%, #1e5a45 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(42, 124, 95, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
    max-width: calc(100vw - 24px);
}

.mediandmore-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 124, 95, 0.4);
    background: linear-gradient(135deg, #32906e 0%, #236350 100%);
}

.mediandmore-cell {
    position: absolute;
    width: 60px;
    height: 60px;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    animation: floatCell 4s ease-in-out infinite;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(42, 124, 95, 0.3));
    z-index: 1;
}

@keyframes floatCell {
    0%, 100% {
        transform: translateY(-50%) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) translateX(-5px) rotate(10deg);
    }
}

.mediandmore-link:hover .mediandmore-cell {
    opacity: 0.7;
    animation-duration: 2s;
}

.mediandmore-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    width: 100%;
}

.mediandmore-text {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
}

.mediandmore-brand {
    display: block;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.5px;
}

.mediandmore-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.mediandmore-link:hover .mediandmore-arrow {
    transform: translateY(-50%) translateX(4px);
}

@media (max-width: 1024px) {
    .mediandmore-link {
        top: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .mediandmore-cell {
        width: 50px;
        height: 50px;
        left: -30px;
    }

    .mediandmore-text {
        font-size: 11px;
    }

    .mediandmore-brand {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .mediandmore-link {
        position: static;
        margin: 10px auto 0;
        width: fit-content;
        display: flex;
    }

    .mediandmore-cell {
        display: none;
    }
}

.navbar {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.navbar ul {
    display: flex;
    justify-content: center;
    gap: 45px;
    list-style: none;
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #0f3b2e;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.25s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #2a7c5f;
    border-radius: 4px;
    transition: all .3s ease;
}

.navbar a:hover::after {
    width: 100%;
    left: 0;
}

.navbar a:hover {
    color: #2a7c5f;
}

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    width: 90%;
    padding: 12px 0;
    margin-top: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 1000;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.navbar .dropdown-menu li {
    padding: 0;
}

.navbar .dropdown-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #0f3b2e;
    transition: all 0.2s ease;
    position: relative;
}

.navbar .dropdown-menu a::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #2a7c5f;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.navbar .dropdown-menu a:hover {
    background: rgba(42, 124, 95, 0.08);
    color: #2a7c5f;
    padding-left: 28px;
}

.navbar .dropdown-menu a:hover::after {
    width: calc(100% - 56px);
    left: 50%;
    transform: translateX(-50%);
}

.section {
    padding: 0 20px;
    max-width: 1100px;
    margin: 70px auto;
    text-align: center;
    position: relative;
    overflow-x: clip;
}

#dlaczego {
    max-width: 100%;
    border-radius: 0;
    position: relative;
}

#dlaczego::before {
    display: none;
}

#dlaczego::after {
    display: none;
}

#produkty {
    background: linear-gradient(135deg,
        rgba(42, 124, 95, 0.003) 0%,
        rgba(252, 255, 253, 1) 50%,
        rgba(42, 124, 95, 0.003) 100%);
    max-width: 100%;
    border-radius: 0;
    position: relative;
    overflow-x: clip;
}

#produkty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(42, 124, 95, 0) 0%,
        rgba(42, 124, 95, 0.2) 50%,
        rgba(42, 124, 95, 0) 100%);
}

#produkty::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(42, 124, 95, 0) 0%,
        rgba(42, 124, 95, 0.2) 50%,
        rgba(42, 124, 95, 0) 100%);
}

.section h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.section p {
    max-width: 1100px;
    margin: 0 auto 10px auto;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.icons-grid img {
    height: 75px;
    width: 75px;
    margin-bottom: 4px;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.icons-grid p {
    margin-top: 4px;
    font-size: 14px;
}

.product-splide {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 0 30px;
}

.product-splide .splide__slide {
    padding: 10px;
}

.product-splide .product-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08), 0 12px 35px rgba(0,0,0,0.12);
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.product-splide .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12), 0 20px 50px rgba(0,0,0,0.18);
}

.product-splide .product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.product-splide .product-card h3 {
    margin-top: 15px;
    font-size: 18px;
    padding: 0 15px;
    text-align: center;
}

.product-splide .splide__arrow {
    background: rgba(255, 255, 255, 0.95);
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.product-splide .splide__arrow:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.product-splide .splide__arrow svg {
    fill: #2a7c5f;
    width: 20px;
    height: 20px;
}

.product-splide .splide__arrow--prev {
    left: -25px;
}

.product-splide .splide__arrow--next {
    right: -25px;
}

@media (max-width: 1100px) {
    .product-splide .splide__arrow--prev {
        left: 10px;
    }
    .product-splide .splide__arrow--next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .product-splide .product-card img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-splide .product-card img {
        height: 200px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.carousel-section {
    background: linear-gradient(135deg,
        rgba(42, 124, 95, 0.003) 0%,
        rgba(252, 255, 253, 1) 50%,
        rgba(42, 124, 95, 0.003) 100%);
    padding: 70px 5% 80px;
    text-align: center;
    overflow: hidden;
    overflow-x: clip;
    position: relative;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(42, 124, 95, 0) 0%,
        rgba(42, 124, 95, 0.2) 50%,
        rgba(42, 124, 95, 0) 100%);
}

.carousel-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(42, 124, 95, 0) 0%,
        rgba(42, 124, 95, 0.2) 50%,
        rgba(42, 124, 95, 0) 100%);
}

.carousel-section h2 {
    font-size: 2.5rem;
    color: #0f3b2e;
    margin-bottom: 40px;
    font-weight: 700;
}

#splide-discover {
    max-width: 1400px;
    margin: 0 auto;
}

#splide-discover .splide__slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

#splide-discover .splide__arrow {
    background: rgba(42, 124, 95, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#splide-discover .splide__arrow:hover {
    background: rgba(26, 90, 67, 1);
}

#splide-discover .splide__arrow svg {
    fill: white;
}

#site-footer-root {
    display: block;
    min-height: 360px;
}

footer {
    background-image: url("/static/images/footer/KeyVisual-FondA4.webp");
    background-size: cover;
    background-position: center;
    margin-top: 120px;
    padding: 70px 0;
    color: white;
    text-align: center;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.footer-overlay {
    position: relative;
    z-index: 2;
    font-size: 18px;
}

footer h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.footer-legal {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

.footer-legal-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 32px;
    align-items: flex-start;
}

.footer-legal-item {
    min-width: 0;
    flex: 1 1 0;
}

.footer-branding {
    display: flex;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    max-width: 220px;
    height: auto;
    opacity: 0.95;
}

.legal-details {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.legal-summary {
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    user-select: none;
    transition: color .2s ease;
}

.legal-summary::-webkit-details-marker { display: none; }

.legal-summary::after {
    content: '+';
    font-size: 16px;
    line-height: 1;
    transition: transform .2s ease;
}

.legal-details[open] .legal-summary::after {
    content: '−';
}

.legal-summary:hover {
    color: rgba(255,255,255,0.85);
}

.legal-content {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-content p {
    margin: 0;
    max-width: none;
}

.legal-content a {
    color: rgba(255,255,255,0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    #site-footer-root {
        min-height: 300px;
    }

    footer {
        padding: 48px 0 56px;
    }

    .footer-legal {
        margin-top: 28px;
        padding-top: 20px;
    }

    .footer-legal-grid {
        flex-direction: column !important;
        align-items: stretch;
        gap: 28px;
    }

    .footer-branding {
        justify-content: center;
        align-items: center;
    }

    .footer-logo {
        max-width: min(180px, 55vw);
    }
}


@media (max-width: 992px) {
    .icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .icons-grid img { width: 65px; }
}

@media (max-width: 768px) {
    .icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .icons-grid img { width: 55px; }
}

@media (max-width: 480px) {
    .icons-grid img { width: 45px; }
}

/* ============================================================
   Product page: full-width layout (unique to style.css)
============================================================ */

.product-hero-layout {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.product-registration-label {
    font-size: 22px;
    font-weight: 700;
    color: #0f3b2e;
    margin: 0 0 10px 0;
}

.medicine-compound-label {
    font-size: 17px;
    font-weight: 700;
    color: #0f3b2e;
    margin: 0 0 6px 0;
}

.product-lead {
    font-size: 18px;
    line-height: 1.75;
    color: #0f3b2e;
    max-width: 620px;
    margin: 0 0 18px 0;
}

.product-ingredients-inner {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 80px;
    text-align: center;
}

@media (max-width: 1200px) {
    .product-hero-layout,
    .product-ingredients-inner {
        padding: 0 28px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .product-hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .product-lead {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================================
   Top Hero Area — used on all pages
============================================================ */

.top-hero-area {
    position: relative;
    background: url("/static/images/discover/PageHeader.webp") center top / cover no-repeat;
    overflow-x: clip;
}

.top-hero-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 0;
}

.top-hero-area .top-header {
    position: relative;
    z-index: 10;
    background: transparent;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.top-hero-area .navbar {
    position: relative;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.top-hero-area .navbar > ul {
    gap: 16px;
    flex-wrap: wrap;
}

.top-hero-area .navbar > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 8px;
    border: 2px solid #2a7c5f;
    background: linear-gradient(135deg, #2a7c5f 0%, #1e5a45 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 4px 15px rgba(42, 124, 95, 0.3);
    transition: all 0.3s ease;
    word-wrap: break-word;
    hyphens: auto;
    width: 100%;
    height: 100%;
    min-height: 48px;
}

.top-hero-area .navbar > ul > li > a::after {
    display: none;
}

.top-hero-area .navbar > ul > li > a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 124, 95, 0.4);
    background: linear-gradient(135deg, #32906e 0%, #236350 100%);
}

.top-hero-area * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.global-top-hero {
    position: relative;
    z-index: 1;
    min-height: 140px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px 20px 26px;
}

.global-top-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 44px;
    font-weight: 800;
    text-shadow: none;
}

@media (max-width: 768px) {
    .top-hero-area .navbar > ul {
        gap: 8px;
    }

    .top-hero-area .navbar > ul > li {
        max-width: 200px;
    }

    .top-hero-area .navbar > ul > li > a {
        font-size: 15px;
        padding: 11px 14px;
    }

    .global-top-hero {
        min-height: 110px;
        padding: 12px 16px 18px;
    }

    .global-top-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .global-top-hero {
        min-height: 95px;
        padding: 10px 12px 14px;
    }

    .global-top-hero h1 {
        font-size: 24px;
    }
}

.top-hero-area .header-inner,
.top-hero-area .top-header {
    position: relative;
}

.top-hero-area .top-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 14px 0 6px 28px;
}

.top-hero-area .top-logo img {
    margin: 0;
    display: block;
}

.top-hero-area .search-bar {
    width: min(560px, calc(100% - 40px));
    margin: 10px 0 0;
    padding: 12px 16px;
    border-radius: 999px;
    border: 2px solid #2a7c5f;
    background: rgba(255, 255, 255, 0.92);
    color: #1e5a45;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 600;
}

.top-hero-area .top-logo .search-bar {
    width: min(560px, calc(100vw - 56px));
    align-self: center;
}

.top-hero-area .search-bar-icon {
    font-size: 18px;
    line-height: 1;
}

.top-hero-area .search-bar-text {
    opacity: 0.85;
}

.top-hero-area .search-bar.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-hero-area .header-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: #1e5a45;
    font-size: inherit;
    font-weight: 600;
    outline: none;
}

.top-hero-area .header-search-input::placeholder {
    color: inherit;
    opacity: 0.85;
}

.top-hero-area .search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 6px;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid #2a7c5f;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(30, 90, 69, 0.15);
    overflow: hidden;
    z-index: 1050;
    max-height: 280px;
    overflow-y: auto;
}

.top-hero-area .search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: #1e5a45;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1px solid rgba(42, 124, 95, 0.12);
    transition: background 0.15s ease;
}

.top-hero-area .search-suggestion-item:last-child {
    border-bottom: none;
}

.top-hero-area .search-suggestion-item:hover,
.top-hero-area .search-suggestion-item:focus {
    background: rgba(42, 124, 95, 0.08);
    outline: none;
}

.top-hero-area .search-suggestion-img-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f5f3;
}

.top-hero-area .search-suggestion-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-hero-area .search-suggestion-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.top-hero-area .search-suggestion-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-hero-area .search-suggestion-cat {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .top-hero-area .top-logo {
        padding-left: 16px;
    }

    .top-hero-area .search-bar {
        width: calc(100% - 28px);
        margin-top: 10px;
        padding: 10px 14px;
        font-size: 15px;
    }
}

.top-hero-area {
    --top-search-width: min(560px, 46vw);
}

.top-hero-area .header-inner {
    width: 100%;
    margin: 0;
    padding: 0 10px;
}

.top-hero-area .top-row {
    display: grid;
    grid-template-columns: 1fr var(--top-search-width) 1fr;
    align-items: center;
    gap: 36px;
    padding-top: 14px;
}

.top-hero-area .top-logo {
    padding: 0;
    margin: 0;
    justify-self: start;
    display: flex;
    align-items: center;
}

.top-hero-area .top-logo img {
    width: auto;
    max-width: 400px;
    max-height: 194px;
    height: auto;
}

.top-hero-area .top-row > .search-bar {
    width: 100%;
    margin: 0;
    justify-self: center;
}

.top-hero-area .top-row > .mediandmore-link {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    margin: 0;
    min-width: 0;
    width: min(100%, 250px);
    padding: 16px 28px;
    z-index: 2;
}

.top-hero-area .navbar {
    width: 100%;
}

.top-hero-area .navbar > ul {
    gap: 16px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    align-items: stretch;
}

.top-hero-area .navbar > ul > li {
    flex: 1 1 0;
    max-width: 320px;
    min-width: 0;
    display: flex;
}

.top-hero-area .navbar > ul > li > a {
    font-size: 20px;
    padding: 14px 24px;
    width: 100%;
}

@media (max-width: 1200px) {
    .top-hero-area .navbar > ul > li {
        max-width: 280px;
    }

    .top-hero-area .navbar > ul > li > a {
        font-size: 18px;
        padding: 13px 20px;
    }
}

@media (max-width: 992px) {
    .top-hero-area {
        --top-search-width: min(460px, 48vw);
    }

    .top-hero-area .top-logo img {
        max-width: 230px;
        max-height: 120px;
    }

    .top-hero-area .navbar > ul {
        gap: 12px;
    }

    .top-hero-area .navbar > ul > li {
        max-width: 240px;
    }

    .top-hero-area .navbar > ul > li > a {
        font-size: 17px;
        padding: 12px 18px;
    }
}

@media (max-width: 600px) {
    .top-hero-area .navbar > ul {
        gap: 6px;
    }

    .top-hero-area .navbar > ul > li {
        max-width: 180px;
    }

    .top-hero-area .navbar > ul > li > a {
        font-size: 14px;
        padding: 10px 10px;
    }
}

@media (max-width: 480px) {
    .top-hero-area .navbar > ul {
        gap: 4px;
    }

    .top-hero-area .navbar > ul > li > a {
        font-size: 13px;
        padding: 9px 8px;
    }
}

@media (max-width: 768px) {
    .top-hero-area .top-row {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
    }

    .top-hero-area .top-logo,
    .top-hero-area .top-row > .mediandmore-link {
        justify-self: center;
    }

    .top-hero-area .top-row > .search-bar {
        width: min(560px, calc(100vw - 24px));
    }

    .top-hero-area .navbar {
        margin-top: 10px;
    }
}

#category-title {
    display: none;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(42, 124, 95, 0.18);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 59, 46, 0.16);
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 18px;
}

.cookie-banner__copy {
    min-width: 0;
}

.cookie-banner__title {
    color: #0f3b2e;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px;
}

.cookie-banner__text {
    color: #0f3b2e;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__link {
    color: #2a7c5f;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__link:hover {
    color: #1e5a45;
}

.legal-content__heading {
    margin: 18px 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    border: 2px solid #2a7c5f;
    border-radius: 999px;
    padding: 11px 22px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .25s ease;
    min-width: 160px;
    text-align: center;
}

.cookie-btn--accept {
    background: #2a7c5f;
    color: #fff;
}

.cookie-btn--accept:hover {
    background: #1e5a45;
    border-color: #1e5a45;
    transform: translateY(-1px);
}

.cookie-btn--reject {
    background: #fff;
    color: #2a7c5f;
}

.cookie-btn--reject:hover {
    background: rgba(42, 124, 95, 0.08);
    transform: translateY(-1px);
}

.cookie-btn:focus-visible {
    outline: 3px solid rgba(42, 124, 95, 0.45);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 14px;
    }

    .cookie-banner__content {
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

.hamburger-wrap {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hamburger-menu-text {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--clr-brand);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 2px;
    z-index: 200;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--clr-brand);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 150;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 2px solid rgba(42, 124, 95, 0.15);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav ul {
    list-style: none;
    padding: 8px 0 16px;
    margin: 0;
}

.mobile-nav li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-text);
    text-decoration: none;
    border-bottom: 1px solid rgba(42, 124, 95, 0.08);
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav li a:hover {
    background: rgba(42, 124, 95, 0.06);
    color: var(--clr-brand);
}

.mobile-nav li.mobile-nav-sub a {
    padding-left: 40px;
    font-size: 15px;
    color: #4a7a68;
}

/* ==========================================================================
   Responsive – Mobile Breakpoint
   ========================================================================== */

@media (max-width: 768px) {
    .hamburger-wrap {
        display: flex;
    }

    .navbar {
        display: none;
    }

    .mediandmore-link {
        display: inline-flex;
        position: static;
        width: min(100%, calc(100vw - 24px));
        max-width: 360px;
        margin: 10px auto 0;
    }

    .top-header {
        position: relative;
    }

    .top-row {
        justify-content: space-between;
        align-items: center;
    }

    .top-logo img {
        height: 90px;
    }

    .search-bar.header-search-wrap {
        flex: 1;
        min-width: 0;
        max-width: none;
        margin: 0 10px;
    }
}
