/* -----------------------------------------------------------------------
   clinell-child/assets/css/clinell.css
   All custom rules for the Clinell Srbija site, organized by section.
   Loaded after Flatsome parent (via functions.php) so we can override.
   ----------------------------------------------------------------------- */

/* === Globals ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: var(--clinell-font-body);
    color: var(--clinell-text);
    background: var(--clinell-bg);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--clinell-font-heading);
    color: var(--clinell-navy);
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: var(--clinell-green-dark);
    text-decoration: none;
    transition: color 0.15s ease;
}
a:hover {
    color: var(--clinell-green);
}

.button.primary,
a.button.primary {
    background: var(--clinell-green);
    color: #fff;
    border: 0;
    border-radius: var(--clinell-radius);
    padding: 0.7em 1.4em;
    font-weight: 600;
    transition: background 0.15s ease, transform 0.15s ease;
}
.button.primary:hover {
    background: var(--clinell-green-dark);
    color: #fff;
    transform: translateY(-1px);
}

.button.secondary,
a.button.secondary {
    background: transparent;
    color: var(--clinell-navy);
    border: 2px solid var(--clinell-navy);
    border-radius: var(--clinell-radius);
    padding: 0.6em 1.3em;
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease;
}
.button.secondary:hover {
    background: var(--clinell-navy);
    color: #fff;
}

/* === Home slider ======================================================== */
/* Each slide gets its own gradient applied to Flatsome's .banner-bg layer
   so [ux_banner]'s overlay sits on top correctly. No image asset required
   (option B in the slider plan — swap in real images via background-image
   on these classes when we have them). */
.clinell-slide-1 .banner-bg {
    background-image: linear-gradient(120deg, var(--clinell-navy-dark) 0%, var(--clinell-navy) 60%, #1a5a8c 100%) !important;
}
.clinell-slide-2 .banner-bg {
    background-image: linear-gradient(120deg, var(--clinell-green-dark) 0%, var(--clinell-green) 70%, #9bd84a 100%) !important;
}
.clinell-slide-3 .banner-bg {
    background-image: linear-gradient(120deg, #051a30 0%, var(--clinell-navy-dark) 50%, var(--clinell-green-dark) 110%) !important;
}
/* Side-pad the inner text-box so headlines never hit the viewport edge in
   the full-width page layout. */
.clinell-home-slider .text-box-content {
    padding-left: clamp(1rem, 4vw, 4rem);
    padding-right: clamp(1rem, 4vw, 4rem);
}

/* === Hero (Home) — legacy static block ================================== */
/* Pages use page-blank.php (Full Width) so the_content() renders without
   Flatsome's .row-main wrapper. The hero spans the full viewport on its
   own — no negative margins needed. */
.hero {
    background: linear-gradient(135deg, var(--clinell-navy-dark) 0%, var(--clinell-navy) 100%);
    color: #fff;
    padding: 6rem 1.5rem;
    text-align: center;
    margin: 0 0 3rem 0;
    border-radius: 0 0 var(--clinell-radius-lg) var(--clinell-radius-lg);
}
.hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto 1rem auto;
    line-height: 1.6;
    opacity: 0.95;
}
.hero p strong {
    color: var(--clinell-green);
}
.hero .button.secondary {
    border-color: #fff;
    color: #fff;
}
.hero .button.secondary:hover {
    background: #fff;
    color: var(--clinell-navy);
}

/* === Brand strip (Home) ================================================= */
.brand-strip {
    padding: 4rem 0 3rem 0;
}
.brand-strip h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.75rem;
}
.brand-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--clinell-gap);
    max-width: var(--clinell-max-width);
    margin: 0 auto;
}
.brand-card {
    background: #fff;
    border: 1px solid var(--clinell-border);
    border-radius: var(--clinell-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--clinell-shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--clinell-shadow-hover);
}
.brand-card img {
    max-height: 80px;
    width: auto;
    margin-bottom: 1.25rem;
    object-fit: contain;
}
.brand-card h3 {
    margin: 0.5rem 0 0.75rem 0;
}
.brand-card p {
    color: var(--clinell-muted);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}
.brand-card a {
    font-weight: 600;
    color: var(--clinell-green-dark);
}
.brand-card a:hover {
    color: var(--clinell-green);
}

/* === Trust block (Home) ================================================ */
.trust {
    background: var(--clinell-bg-alt);
    padding: 3rem 2rem;
    border-radius: var(--clinell-radius-lg);
    margin: 3rem auto;
    max-width: var(--clinell-max-width);
}
.trust h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}
.trust ul {
    max-width: 720px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}
.trust li {
    padding: 0.65rem 0 0.65rem 2rem;
    position: relative;
    border-bottom: 1px solid var(--clinell-border);
    font-size: 1.05rem;
}
.trust li:last-child {
    border-bottom: 0;
}
.trust li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clinell-green);
    font-weight: 700;
}

/* === CTA B2B (Home) ===================================================== */
.cta-b2b {
    background: var(--clinell-green-pale);
    border: 1px solid var(--clinell-green);
    border-radius: var(--clinell-radius-lg);
    padding: 2.5rem;
    text-align: center;
    max-width: var(--clinell-max-width);
    margin: 3rem auto;
}
.cta-b2b h2 {
    color: var(--clinell-green-dark);
}
.cta-b2b p {
    color: var(--clinell-text);
    margin-bottom: 1.25rem;
}

/* === Modern home ======================================================== */
.clinell-modern-home {
    color: var(--clinell-text);
}
.clinell-home-slider {
    background: #06233f;
    color: #fff;
    min-height: clamp(560px, 72vh, 760px);
    overflow: hidden;
    position: relative;
}
.clinell-home-slider__viewport {
    display: flex;
    min-height: inherit;
    position: relative;
    transition: transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
    width: 100%;
    will-change: transform;
}
.clinell-home-slide {
    flex: 0 0 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.clinell-home-slide.is-active {
    z-index: 1;
}
.clinell-home-slide:before {
    background:
        radial-gradient(circle at 70% 20%, rgba(119, 185, 42, 0.28), transparent 24rem),
        radial-gradient(circle at 20% 88%, rgba(88, 159, 204, 0.2), transparent 26rem);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}
.clinell-home-slide--one {
    background:
        linear-gradient(110deg, rgba(6, 29, 54, 0.82) 0%, rgba(15, 70, 117, 0.5) 46%, rgba(23, 143, 193, 0.18) 100%),
        url('../img/hero/clinell-brand.jpg') center / cover no-repeat;
}
.clinell-home-slide--two {
    background:
        linear-gradient(128deg, rgba(6, 29, 54, 0.78) 0%, rgba(15, 70, 117, 0.55) 60%, rgba(23, 143, 193, 0.35) 100%),
        url('../img/hero/contiplan-brand.jpg') center / cover no-repeat;
    color: #fff;
}
.clinell-home-slide--three {
    background: linear-gradient(128deg, #092942 0%, #176074 48%, #77b92a 130%);
}
.clinell-home-slide__inner {
    align-items: center;
    display: grid;
    gap: clamp(32px, 5vw, 76px);
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    margin: 0 auto;
    max-width: var(--clinell-max-width);
    min-height: inherit;
    padding: clamp(68px, 9vw, 112px) 24px clamp(86px, 10vw, 128px);
    position: relative;
    z-index: 1;
}
.clinell-home-slide__eyebrow {
    color: #9de35d;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.clinell-home-slide--two .clinell-home-slide__eyebrow {
    color: #9de35d;
}
.clinell-home-slide h1 {
    color: inherit;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.02;
    margin: 0 0 24px;
    max-width: 760px;
}
.clinell-home-slide__lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 640px;
}
.clinell-home-slide--two .clinell-home-slide__lead {
    color: rgba(255, 255, 255, 0.88);
}
.clinell-home-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.clinell-home-slide__visual {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 430px;
    position: relative;
}
.clinell-home-slide__visual:before {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    content: "";
    height: 360px;
    position: absolute;
    transform: rotate(-5deg);
    width: 380px;
    z-index: 0;
}
.clinell-home-product {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(5, 28, 48, 0.26);
    color: var(--clinell-navy-dark);
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    min-height: 330px;
    padding: 38px 30px;
    position: relative;
    text-align: center;
    transition: box-shadow 240ms ease, transform 240ms ease;
    width: min(340px, 68vw);
    z-index: 2;
}
.clinell-home-product:hover,
.clinell-home-product:focus {
    box-shadow: 0 30px 64px rgba(5, 28, 48, 0.32);
    color: var(--clinell-navy-dark);
    transform: translateY(-5px) scale(1.025);
}
.clinell-home-product img {
    max-height: 175px;
    max-width: 82%;
    object-fit: contain;
}
.clinell-home-product strong {
    color: var(--clinell-navy-dark);
    display: block;
    font-size: 1.35rem;
    margin-top: 12px;
}
.clinell-home-product span {
    color: #657481;
    line-height: 1.5;
    margin-top: 8px;
    max-width: 250px;
    text-align: center;
}
.clinell-home-chip {
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(5, 28, 48, 0.18);
    color: var(--clinell-navy-dark);
    display: flex;
    gap: 12px;
    min-width: 218px;
    padding: 16px 18px;
    position: absolute;
    text-decoration: none;
    transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    z-index: 3;
}
.clinell-home-chip:hover,
.clinell-home-chip:focus {
    background: #fff;
    box-shadow: 0 22px 42px rgba(5, 28, 48, 0.24);
    color: var(--clinell-navy-dark);
    transform: translateY(-5px);
}
.clinell-home-chip img {
    max-height: 40px;
    max-width: 78px;
    object-fit: contain;
}
.clinell-home-chip strong {
    display: block;
    font-size: 0.92rem;
    line-height: 1.25;
}
.clinell-home-chip span {
    color: #687785;
    display: block;
    font-size: 0.82rem;
}
.clinell-home-chip--top {
    animation: clinell-card-float 6s ease-in-out infinite;
    right: 2%;
    top: 12%;
}
.clinell-home-chip--bottom {
    animation: clinell-card-float 6s ease-in-out infinite 3s;
    bottom: 0;
    left: 2%;
}
.clinell-home-chip--green {
    background: rgba(244, 255, 233, 0.9);
    border-color: rgba(216, 243, 106, 0.62);
}
@keyframes clinell-card-float {
    0%, 100% {
        margin-top: 0;
    }
    50% {
        margin-top: -10px;
    }
}
.clinell-home-slider__controls {
    inset: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 4;
}
.clinell-home-slider__arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 24px;
    height: 54px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
}
.clinell-home-slider__arrow[data-clinell-prev] {
    left: 28px;
}
.clinell-home-slider__arrow[data-clinell-next] {
    right: 28px;
}
.clinell-home-slider__arrow:hover,
.clinell-home-slider__arrow:focus {
    background: #fff;
    color: var(--clinell-navy);
}
.clinell-home-slider__dots {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 8px;
    bottom: 28px;
    box-shadow: 0 18px 45px rgba(13, 43, 74, 0.12);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 50%;
    max-width: 980px;
    overflow: hidden;
    pointer-events: auto;
    position: absolute;
    transform: translateX(-50%);
    width: min(calc(100% - 96px), 980px);
}
.clinell-home-slider__dot {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #586878;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 64px;
    padding: 14px 18px;
    text-align: left;
    transition: background 180ms ease, color 180ms ease;
    width: auto;
}
.clinell-home-slider__dot + .clinell-home-slider__dot {
    border-left: 1px solid rgba(13, 43, 74, 0.1);
}
.clinell-home-slider__dot.is-active {
    background: var(--clinell-green);
    color: #fff;
}
.clinell-modern-hero {
    background:
        radial-gradient(circle at 72% 18%, rgba(118, 188, 33, 0.22), transparent 26rem),
        radial-gradient(circle at 12% 82%, rgba(15, 70, 117, 0.16), transparent 22rem),
        linear-gradient(135deg, #f8fbfd 0%, #eef7f1 48%, #ffffff 100%);
    min-height: 640px;
    overflow: hidden;
    padding: 88px 24px 76px;
}
.clinell-modern-hero__inner {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    margin: 0 auto;
    max-width: var(--clinell-max-width);
}
.clinell-modern-hero__eyebrow {
    color: var(--clinell-green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.clinell-modern-hero h1 {
    color: var(--clinell-navy-dark);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 22px;
}
.clinell-modern-hero__lead {
    color: #405466;
    font-size: 1.15rem;
    line-height: 1.65;
    margin: 0 0 30px;
    max-width: 620px;
}
.clinell-modern-hero__actions,
.clinell-brand-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.clinell-modern-button {
    align-items: center;
    background: var(--clinell-green);
    border: 2px solid var(--clinell-green);
    border-radius: var(--clinell-radius);
    color: #fff;
    display: inline-flex;
    font-weight: 700;
    min-height: 46px;
    padding: 0 20px;
}
.clinell-modern-button:hover {
    background: var(--clinell-green-dark);
    border-color: var(--clinell-green-dark);
    color: #fff;
}
.clinell-modern-button--outline {
    background: transparent;
    color: var(--clinell-navy);
    border-color: var(--clinell-navy);
}
.clinell-modern-button--outline:hover {
    background: var(--clinell-navy);
    border-color: var(--clinell-navy);
    color: #fff;
}
.clinell-modern-orbit {
    aspect-ratio: 1;
    max-width: 560px;
    position: relative;
    width: 100%;
}
.clinell-modern-orbit__item {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 70, 117, 0.08);
    box-shadow: 0 24px 70px rgba(15, 70, 117, 0.14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    text-align: center;
}
.clinell-modern-orbit__item span {
    color: #5f6c76;
    display: block;
    font-size: 0.92rem;
    margin-top: 8px;
}
.clinell-modern-orbit__item strong {
    color: var(--clinell-navy-dark);
    font-size: 1.25rem;
}
.clinell-modern-orbit__item--clinell {
    border-radius: 999px;
    height: 74%;
    left: 5%;
    top: 14%;
    width: 74%;
}
.clinell-modern-orbit__item--clinell img {
    max-height: 96px;
    max-width: 62%;
    object-fit: contain;
}
.clinell-modern-orbit__item--viscot {
    border-radius: 999px;
    height: 34%;
    right: 0;
    top: 4%;
    width: 34%;
}
.clinell-modern-orbit__item--viscot img {
    max-height: 54px;
    max-width: 70%;
}
.clinell-modern-orbit__item--notpla {
    border-radius: 28px;
    bottom: 5%;
    height: 30%;
    right: 3%;
    width: 38%;
}
.clinell-brand-band,
.clinell-feature-band {
    padding: 70px 24px;
}
.clinell-brand-band__inner,
.clinell-feature-band__inner {
    margin: 0 auto;
    max-width: var(--clinell-max-width);
}
.clinell-brand-band__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.clinell-brand-card {
    background: #fff;
    border: 1px solid var(--clinell-border);
    border-radius: var(--clinell-radius-lg);
    min-height: 220px;
    padding: 28px;
    box-shadow: var(--clinell-shadow-card);
}
.clinell-brand-card h3 {
    margin-top: 0;
}
.clinell-feature-band {
    background: var(--clinell-bg-alt);
}
.clinell-feature-band ul {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}
.clinell-feature-band li {
    background: #fff;
    border-left: 3px solid var(--clinell-green);
    border-radius: 0 var(--clinell-radius) var(--clinell-radius) 0;
    padding: 16px 18px;
}

/* === Viscot page ======================================================== */
.clinell-viscot-page {
    color: var(--clinell-text);
}

/* === Notpla page ======================================================== */
.clinell-notpla-page {
    --notpla-ink: #202322;
    --notpla-cream: #f3eee0;
    --notpla-green: #0f5b3f;
    --notpla-green-dark: #073828;
    --notpla-lime: #d8f36a;
    background: var(--notpla-cream);
    color: var(--notpla-ink);
    font-family: "Hanken Grotesk", "Roboto", Arial, sans-serif;
    margin: 0;
}
.clinell-notpla-page h1,
.clinell-notpla-page h2,
.clinell-notpla-page h3,
.clinell-notpla-page p {
    letter-spacing: 0;
}
.clinell-notpla-section {
    padding: clamp(56px, 8vw, 112px) 24px;
}
.clinell-notpla-inner {
    margin: 0 auto;
    max-width: 1180px;
}
.clinell-notpla-hero {
    background: var(--notpla-cream);
    min-height: 760px;
    overflow: hidden;
    padding: 28px 24px 86px;
    position: relative;
}
.clinell-notpla-nav {
    align-items: center;
    background: rgba(243, 238, 224, 0.86);
    border: 1px solid rgba(32, 35, 34, 0.1);
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 58px;
    max-width: 1180px;
    padding: 10px 14px 10px 22px;
    position: relative;
    z-index: 3;
}
.clinell-notpla-nav img {
    display: block;
    height: 46px;
    object-fit: contain;
    width: auto;
}
.clinell-notpla-nav__links {
    display: flex;
    gap: 24px;
}
.clinell-notpla-nav__links a {
    color: var(--notpla-ink);
    font-size: 0.94rem;
    font-weight: 700;
}
.clinell-notpla-hero__grid {
    align-items: center;
    display: grid;
    gap: clamp(32px, 6vw, 82px);
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    margin: 0 auto;
    max-width: 1180px;
    position: relative;
    z-index: 1;
}
.clinell-notpla-eyebrow {
    color: var(--notpla-green);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.clinell-notpla-hero h1 {
    color: var(--notpla-ink);
    font-size: clamp(56px, 9vw, 128px);
    font-weight: 800;
    line-height: 0.92;
    margin: 0 0 26px;
}
.clinell-notpla-hero p,
.clinell-notpla-copy p {
    color: rgba(32, 35, 34, 0.78);
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    line-height: 1.72;
}
.clinell-notpla-hero__media {
    aspect-ratio: 4 / 3;
    border-radius: 36px;
    box-shadow: 0 34px 90px rgba(32, 35, 34, 0.18);
    overflow: hidden;
    position: relative;
}
.clinell-notpla-hero__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.clinell-notpla-pill {
    background: var(--notpla-lime);
    border-radius: 999px;
    color: var(--notpla-ink);
    display: inline-flex;
    font-weight: 800;
    margin-top: 20px;
    padding: 12px 18px;
}
.clinell-notpla-split {
    align-items: center;
    display: grid;
    gap: clamp(32px, 6vw, 80px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.clinell-notpla-split--reverse .clinell-notpla-media {
    order: 2;
}
.clinell-notpla-media {
    border-radius: 28px;
    overflow: hidden;
}
.clinell-notpla-media img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.clinell-notpla-copy h2,
.clinell-notpla-heading h2 {
    color: var(--notpla-ink);
    font-size: clamp(36px, 5.4vw, 72px);
    font-weight: 800;
    line-height: 1;
    margin: 0 0 24px;
}
.clinell-notpla-green {
    background: var(--notpla-green-dark);
    color: var(--notpla-cream);
}
.clinell-notpla-green .clinell-notpla-copy h2,
.clinell-notpla-green .clinell-notpla-heading h2 {
    color: var(--notpla-cream);
}
.clinell-notpla-green .clinell-notpla-copy p,
.clinell-notpla-green .clinell-notpla-heading p {
    color: rgba(243, 238, 224, 0.82);
}
.clinell-notpla-products {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.clinell-notpla-product {
    min-height: 380px;
}
.clinell-notpla-product__image {
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    border-radius: 26px;
    display: flex;
    min-height: 280px;
    overflow: hidden;
    padding: 18px;
    position: relative;
}
.clinell-notpla-product__image--food {
    background-image: url("../img/notpla/681e2406f77b2126e1f033ad_Notpla_Sustainable_Food_Packaging-p-3200-1024x683.webp");
}
.clinell-notpla-product__image--ooho {
    background-image: url("../img/notpla/65389d57273d35120bb0634d_Ooho_1-859x1024.avif");
}
.clinell-notpla-product__image--paper {
    background-image: url("../img/notpla/68ff63859ec3f2cc263a0cb7_Espresso-Cup-391-p-3200-1024x683.jpg");
}
.clinell-notpla-product__image:before {
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.44) 100%);
    content: "";
    inset: 0;
    position: absolute;
}
.clinell-notpla-product__badge {
    background: var(--notpla-lime);
    border-radius: 999px;
    color: var(--notpla-ink);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 9px 13px;
    position: relative;
    text-transform: lowercase;
    z-index: 1;
}
.clinell-notpla-product h3 {
    color: var(--notpla-cream);
    font-size: clamp(26px, 2.7vw, 42px);
    line-height: 1;
    margin: 18px 0 10px;
}
.clinell-notpla-product p {
    color: rgba(243, 238, 224, 0.78);
    line-height: 1.6;
    margin: 0;
}

.clinell-notpla-gallery {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 40px;
}
.clinell-notpla-gallery figure {
    margin: 0;
    background: #fff;
    border-radius: var(--clinell-radius);
    overflow: hidden;
    box-shadow: var(--clinell-shadow-card);
    transition: transform .18s ease, box-shadow .18s ease;
}
.clinell-notpla-gallery figure:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .12);
}
.clinell-notpla-gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f5f5f0;
}
.clinell-notpla-gallery figcaption {
    padding: 14px 18px;
    color: var(--clinell-text);
    text-align: center;
    font-weight: 500;
    font-size: .98rem;
}

.clinell-notpla-press {
    background: var(--notpla-cream);
}
.clinell-notpla-press__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.clinell-notpla-quote {
    background: #fffaf0;
    border: 1px solid rgba(32, 35, 34, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    padding: 24px;
}
.clinell-notpla-quote p {
    color: var(--notpla-ink);
    font-size: 1.02rem;
    line-height: 1.55;
}
.clinell-notpla-quote img {
    max-height: 44px;
    max-width: 160px;
    object-fit: contain;
}
.clinell-notpla-footer {
    background: var(--notpla-green-dark);
    color: var(--notpla-cream);
    padding: 56px 24px;
}
.clinell-notpla-footer__inner {
    align-items: center;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
}
.clinell-notpla-footer img {
    filter: brightness(0) invert(1);
    max-height: 58px;
    object-fit: contain;
    width: auto;
}
@media (max-width: 60em) {
    .clinell-notpla-hero__grid,
    .clinell-notpla-split {
        grid-template-columns: 1fr;
    }
    .clinell-notpla-split--reverse .clinell-notpla-media {
        order: 0;
    }
    .clinell-notpla-products,
    .clinell-notpla-press__grid,
    .clinell-notpla-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 40em) {
    .clinell-notpla-nav {
        align-items: flex-start;
        border-radius: 22px;
        flex-direction: column;
        gap: 14px;
    }
    .clinell-notpla-nav__links {
        flex-wrap: wrap;
        gap: 14px;
    }
    .clinell-notpla-hero {
        min-height: 0;
        padding-left: 16px;
        padding-right: 16px;
    }
    .clinell-notpla-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .clinell-notpla-products,
    .clinell-notpla-press__grid,
    .clinell-notpla-gallery {
        grid-template-columns: 1fr;
    }
    .clinell-notpla-footer__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}
.clinell-viscot-hero {
    background: linear-gradient(135deg, #071f3a 0%, var(--clinell-navy) 72%, #1f7f9c 100%);
    color: #fff;
    padding: 82px 24px;
}
.clinell-viscot-hero__inner,
.clinell-viscot-section__inner {
    margin: 0 auto;
    max-width: var(--clinell-max-width);
}
.clinell-viscot-hero img {
    max-height: 90px;
    max-width: 220px;
    object-fit: contain;
}
.clinell-viscot-hero h1 {
    color: #fff;
    font-size: 48px;
    margin: 24px 0 14px;
}
.clinell-viscot-hero p {
    color: rgba(255,255,255,0.86);
    font-size: 1.16rem;
    line-height: 1.65;
    max-width: 720px;
}
.clinell-viscot-section {
    padding: 72px 24px;
}
.clinell-viscot-section--soft {
    background: var(--clinell-bg-alt);
}
.clinell-viscot-product {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.clinell-viscot-product__media {
    background: #fff;
    border: 1px solid var(--clinell-border);
    border-radius: var(--clinell-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--clinell-shadow-card);
}
.clinell-viscot-product__media img {
    max-height: 390px;
    object-fit: contain;
    width: 100%;
}
.clinell-viscot-badge {
    background: var(--clinell-green-pale);
    border-radius: 999px;
    color: var(--clinell-green-dark);
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
    padding: 8px 13px;
    text-transform: uppercase;
}
.clinell-viscot-product h2 {
    color: var(--clinell-navy-dark);
    font-size: 36px;
    margin: 0 0 16px;
}
.clinell-viscot-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}
.clinell-viscot-list li {
    background: #fff;
    border-left: 3px solid var(--clinell-green);
    border-radius: 0 var(--clinell-radius) var(--clinell-radius) 0;
    padding: 14px 18px;
}

.clinell-viscot-gallery h2 {
    text-align: center;
    margin-bottom: 28px;
}
.clinell-viscot-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.clinell-viscot-gallery__grid figure {
    margin: 0;
    background: #fff;
    border-radius: var(--clinell-radius);
    overflow: hidden;
    box-shadow: var(--clinell-shadow-card);
}
.clinell-viscot-gallery__grid img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}
.clinell-viscot-gallery__grid figcaption {
    padding: 14px 18px;
    color: var(--clinell-muted);
    font-size: .95rem;
    text-align: center;
    border-top: 1px solid var(--clinell-border);
}
@media (max-width: 720px) {
    .clinell-viscot-gallery__grid { grid-template-columns: 1fr; }
    .clinell-viscot-gallery__grid img { height: 280px; }
}

/* === B2B registration =================================================== */
/* Mirrors the old site's #primary-content area without requiring legacy
   WPBakery/GSF shortcodes. */
#primary-content.clinell-b2b-registration-page {
    width: 100%;
    margin: 0;
    padding: 0 0 3rem;
}
#primary-content .clinell-b2b-spacer {
    clear: both;
    display: block;
    height: 90px;
}
#primary-content .clinell-b2b-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}
#primary-content .clinell-b2b-main {
    width: 66.6667%;
    margin: 0 auto;
}
#primary-content .clinell-b2b-note {
    padding-top: 20px;
}
#primary-content .clinell-b2b-actions {
    padding-left: 20px;
    text-align: right;
}
#primary-content .clinell-b2b-actions .button {
    border: 2px solid var(--clinell-green-dark);
    background: transparent;
    color: var(--clinell-green-dark);
    border-radius: var(--clinell-radius);
    font-weight: 600;
}
#primary-content .clinell-b2b-actions .button:hover {
    background: var(--clinell-green-dark);
    color: #fff;
}
#primary-content .clinell-b2b-empty-space {
    height: 32px;
}
#primary-content h2 {
    color: #333;
    font-size: 44px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 32px;
}
#primary-content .woocommerce form.register {
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    margin: 0;
    padding: 28px 24px 30px;
}
#primary-content .woocommerce form.register p {
    color: #777;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 22px;
}
#primary-content .woocommerce form.register label {
    color: #8a8a8a;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
#primary-content .woocommerce form.register label .required {
    color: #e3342f;
}
#primary-content .woocommerce form.register input.input-text,
#primary-content .woocommerce form.register input[type="email"],
#primary-content .woocommerce form.register input[type="number"],
#primary-content .woocommerce form.register input[type="tel"],
#primary-content .woocommerce form.register input[type="text"],
#primary-content .woocommerce form.register select {
    background: #f7f7f9;
    border: 0;
    box-shadow: none;
    color: #777;
    font-size: 16px;
    height: 44px;
    padding: 0 20px;
    width: 100%;
}
#primary-content .woocommerce form.register .button {
    background: transparent;
    border: 2px solid var(--clinell-green-dark);
    color: var(--clinell-green-dark);
    font-weight: 700;
}
#primary-content .b2bking_registration_roles_dropdown_section,
#primary-content .b2bking_custom_registration_container,
#primary-content .woocommerce-privacy-policy-text {
    max-width: 100%;
}

/* === B2B terms ========================================================== */
#primary-content.clinell-b2b-terms-page {
    width: 100%;
    margin: 0;
    padding: 0 0 4rem;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-spacer-top {
    clear: both;
    display: block;
    height: 115px;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-spacer-title {
    clear: both;
    display: block;
    height: 100px;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-title {
    color: #3188c4;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-content {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-content p {
    margin: 0 0 20px;
}
#primary-content.clinell-b2b-terms-page blockquote {
    border-left: 3px solid #3188c4;
    color: #777;
    margin: 22px 0 28px;
    padding: 10px 0 10px 24px;
}
#primary-content.clinell-b2b-terms-page blockquote p {
    margin-bottom: 10px;
}
#primary-content.clinell-b2b-terms-page blockquote ul {
    margin: 0;
    padding-left: 22px;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-actions {
    margin: 12px 0 20px;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-actions .button {
    background: transparent;
    border: 2px solid var(--clinell-green-dark);
    color: var(--clinell-green-dark);
    border-radius: var(--clinell-radius);
    font-weight: 700;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-actions .button:hover {
    background: var(--clinell-green-dark);
    color: #fff;
}
#primary-content.clinell-b2b-terms-page .clinell-terms-note {
    padding-top: 20px;
}

/* === Brand hero (Viscot) =============================================== */
.brand-hero {
    text-align: center;
    padding: 4rem 1.5rem 2rem;
}
.brand-hero .brand-logo {
    max-height: 100px;
    margin-bottom: 1.5rem;
}
.brand-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}
.brand-hero .lead {
    font-size: 1.25rem;
    color: var(--clinell-muted);
    margin-top: 0.5rem;
}

/* === Cards (Viscot use cases) ========================================== */
.brand-cards .card,
section.brand-cards > div.card {
    background: #fff;
    border: 1px solid var(--clinell-border);
    border-radius: var(--clinell-radius-lg);
    overflow: hidden;
    box-shadow: var(--clinell-shadow-card);
}
.brand-cards .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.brand-cards .card p {
    padding: 1.25rem;
    text-align: center;
    color: var(--clinell-text);
    font-weight: 500;
    margin: 0;
}

/* === Features list ===================================================== */
.features {
    max-width: var(--clinell-max-width);
    margin: 3rem auto;
    padding: 0 2rem;
}
.features ul {
    list-style: none;
    padding: 0;
}
.features li {
    background: var(--clinell-bg-alt);
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--clinell-green);
    border-radius: 0 var(--clinell-radius) var(--clinell-radius) 0;
    line-height: 1.55;
}

/* === Coming soon (Viscot) ============================================== */
.coming-soon {
    background: var(--clinell-bg-alt);
    text-align: center;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: var(--clinell-max-width);
    border-radius: var(--clinell-radius-lg);
}
.coming-soon img {
    max-width: 280px;
    margin-bottom: 1rem;
}

/* === Contact (Kontakt) ================================================ */
.contact-intro,
.contact-main,
.contact-form,
.distribution {
    max-width: var(--clinell-max-width);
    margin: 0 auto 2.5rem auto;
    padding: 0 2rem;
}
.contact-main address {
    font-style: normal;
    line-height: 1.6;
    margin: 1rem 0 1.5rem 0;
    padding: 1rem 1.25rem;
    background: var(--clinell-bg-alt);
    border-left: 3px solid var(--clinell-navy);
    border-radius: 0 var(--clinell-radius) var(--clinell-radius) 0;
    display: inline-block;
}
.contact-list {
    list-style: none;
    padding: 0;
}
.contact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clinell-border);
}
.contact-list li:last-child {
    border-bottom: 0;
}

/* === WooCommerce shop loop tweaks ====================================== */
/* Subtle brand alignment — Flatsome handles the rest */
.woocommerce ul.products li.product .price {
    color: var(--clinell-green-dark);
    font-weight: 600;
}
.woocommerce a.button,
.woocommerce button.button.alt {
    background: var(--clinell-green) !important;
    color: #fff !important;
}
.woocommerce a.button:hover,
.woocommerce button.button.alt:hover {
    background: var(--clinell-green-dark) !important;
}

/* === Modern product archive background ================================= */
body.woocommerce-shop,
body.tax-product_cat,
body.post-type-archive-product,
body.page-id-6077 {
    background:
        radial-gradient(circle at 12% 8%, rgba(89, 160, 204, 0.18), transparent 32rem),
        radial-gradient(circle at 88% 18%, rgba(118, 184, 42, 0.14), transparent 30rem),
        linear-gradient(180deg, #f7fbfd 0%, #ffffff 46%, #f4f8fb 100%);
}

body.woocommerce-shop #main,
body.tax-product_cat #main,
body.post-type-archive-product #main,
body.page-id-6077 #main {
    background: transparent;
}

body.woocommerce-shop .shop-page-title,
body.tax-product_cat .shop-page-title,
body.post-type-archive-product .shop-page-title,
body.page-id-6077 .page-wrapper {
    background: transparent;
}

body.woocommerce-shop .shop-container,
body.tax-product_cat .shop-container,
body.post-type-archive-product .shop-container,
body.page-id-6077 .page-wrapper > .row {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(89, 160, 204, 0.18);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(13, 43, 74, 0.07);
    margin-bottom: 48px;
    padding: 28px;
}

body.woocommerce-shop ul.products li.product,
body.tax-product_cat ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.page-id-6077 ul.products li.product {
    background: #fff;
    border: 1px solid rgba(13, 43, 74, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(13, 43, 74, 0.06);
    padding: 14px 14px 18px;
    transition: box-shadow 180ms ease, transform 180ms ease;
}

body.woocommerce-shop ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover,
body.post-type-archive-product ul.products li.product:hover,
body.page-id-6077 ul.products li.product:hover {
    box-shadow: 0 18px 40px rgba(13, 43, 74, 0.11);
    transform: translateY(-2px);
}

body.woocommerce-shop ul.products li.product .box-image,
body.tax-product_cat ul.products li.product .box-image,
body.post-type-archive-product ul.products li.product .box-image,
body.page-id-6077 ul.products li.product .box-image {
    background: #f6f9fb;
    border-radius: 6px;
    overflow: hidden;
}

/* === Product legacy content ============================================ */
.clinell-product-detail {
    color: #7d7d7d;
    margin-top: 1.5rem;
}
.clinell-product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
}
.clinell-product-detail p {
    line-height: 1.7;
}
.clinell-product-detail__specs {
    list-style: none;
    margin: 1.25rem 0;
    padding: 0;
}
.clinell-product-detail__specs li {
    margin-bottom: 0.35rem;
}
.clinell-product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.clinell-product-detail__actions br {
    display: none;
}
.clinell-product-detail__button {
    background: var(--clinell-green);
    border-radius: var(--clinell-radius);
    color: #fff;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    padding: 0.85rem 1.2rem;
}
.clinell-product-detail__button:hover {
    background: var(--clinell-green-dark);
    color: #fff;
}
.clinell-product-detail__heading {
    color: #59a0cc;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px;
}
.clinell-product-detail__benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}
.clinell-product-detail__benefits li {
    margin-bottom: 0.75rem;
    padding-left: 1.1rem;
    position: relative;
}
.clinell-product-detail__benefits li:before {
    background: #59a0cc;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 0.75em;
    width: 6px;
}
.clinell-product-detail__spacer {
    height: 90px;
}
.clinell-product-detail__center {
    text-align: center;
}
@media (max-width: 48em) {
    .clinell-product-detail__grid {
        grid-template-columns: 1fr;
    }
    .clinell-product-detail__spacer {
        height: 40px;
    }
}

/* === Header / Footer (Flatsome elements) =============================== */
/* Light brand accent on header — full Flatsome theme settings preferred,
   but a CSS hint here in case it isn't customized via Customizer. */
#header .header-main {
    background: #fff;
}

/* SVG logo: Flatsome stamps width="200" height="90" on the <img> from
   its $logo_width / $header_height theme mods, which would squish our
   100×40 viewBox. Override to a fixed height with width:auto so the
   aspect ratio is preserved. */
#logo img[src$=".svg"] {
    height: 50px !important;
    width: auto !important;
    max-width: none;
}
.stuck #logo img[src$=".svg"] {
    height: 40px !important;
}
@media (max-width: 549px) {
    #logo img[src$=".svg"] {
        height: 38px !important;
    }
}

/* === Responsive ========================================================= */
@media (max-width: 48em) {
    .hero {
        padding: 3rem 1rem;
        margin: 0 0 2rem 0;
    }
    .clinell-modern-hero {
        min-height: 0;
        padding: 58px 18px;
    }
    .clinell-home-slider {
        min-height: auto;
    }
    .clinell-home-slide__inner {
        grid-template-columns: 1fr;
        padding: 54px 18px 100px;
    }
    .clinell-home-slide__visual {
        min-height: 400px;
    }
    .clinell-home-slide__visual:before {
        height: 285px;
        width: min(300px, 78vw);
    }
    .clinell-home-product {
        min-height: 260px;
        padding: 26px 22px;
        width: min(290px, 74vw);
    }
    .clinell-home-product img {
        max-height: 140px;
    }
    .clinell-home-chip {
        min-width: 155px;
        padding: 12px 14px;
    }
    .clinell-home-chip--top {
        right: 0;
        top: 0;
    }
    .clinell-home-chip--bottom {
        bottom: 0;
        left: 0;
    }
    .clinell-home-slider__controls {
        align-items: center;
        display: flex;
        gap: 12px;
        inset: auto 0 0;
        justify-content: center;
        min-height: 88px;
        padding: 0 18px 22px;
    }
    .clinell-home-slider__arrow {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.34);
        border-radius: 16px;
        flex: 0 0 48px;
        height: 48px;
        position: static;
        top: auto;
        transform: none;
        width: 48px;
    }
    .clinell-home-slider__arrow:hover,
    .clinell-home-slider__arrow:focus {
        background: rgba(255, 255, 255, 0.24);
        color: #fff;
    }
    .clinell-home-slider__arrow:active {
        transform: scale(0.95);
    }
    .clinell-home-slider__dots {
        background: transparent;
        border-radius: 999px;
        bottom: auto;
        box-shadow: none;
        display: flex;
        gap: 10px;
        flex: 0 1 auto;
        height: 48px;
        left: auto;
        max-width: none;
        padding: 0 4px;
        position: static;
        right: auto;
        transform: none;
        width: auto;
    }
    .clinell-home-slider__dot + .clinell-home-slider__dot {
        border-left: 0;
    }
    .clinell-home-slider__dot {
        background: rgba(255, 255, 255, 0.86);
        border-radius: 14px;
        color: #344a5f;
        flex: 0 0 38px;
        font-size: 0;
        min-height: 38px;
        padding: 0;
        position: relative;
        top: 5px;
        transition: background 180ms ease, color 180ms ease, transform 180ms ease;
        width: 38px;
    }
    .clinell-home-slider__dot.is-active {
        background: var(--clinell-green);
        color: #fff;
    }
    .clinell-home-slider__dot:before {
        background: currentColor;
        border-radius: 999px;
        content: "";
        height: 7px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: transform 180ms ease;
        width: 7px;
    }
    .clinell-home-slider__dot.is-active:before {
        transform: translate(-50%, -50%) scale(1.18);
    }
    .clinell-modern-hero__inner,
    .clinell-viscot-product {
        grid-template-columns: 1fr;
    }
    .clinell-modern-hero h1 {
        font-size: 38px;
    }
    .clinell-modern-orbit {
        margin: 0 auto;
        max-width: 420px;
    }
    .clinell-brand-band__grid,
    .clinell-feature-band ul {
        grid-template-columns: 1fr;
    }
    .clinell-viscot-hero h1 {
        font-size: 36px;
    }
    #primary-content .clinell-b2b-spacer {
        height: 50px;
    }
    #primary-content .clinell-b2b-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #primary-content .clinell-b2b-main {
        width: 100%;
    }
    #primary-content h2 {
        font-size: 34px;
    }
    #primary-content .woocommerce form.register {
        padding: 22px 18px 24px;
    }
    #primary-content .clinell-b2b-actions {
        padding-left: 0;
        text-align: left;
    }
    #primary-content.clinell-b2b-terms-page .clinell-terms-spacer-top {
        height: 50px;
    }
    #primary-content.clinell-b2b-terms-page .clinell-terms-spacer-title {
        height: 40px;
    }
    #primary-content.clinell-b2b-terms-page .clinell-terms-title {
        font-size: 32px;
    }
    .brand-cards { grid-template-columns: 1fr; }
    .trust, .cta-b2b, .features, .coming-soon { padding: 2rem 1rem; }
}

/* ---- Legal pages (privacy / terms / cookie / B2B terms) ------------------ */
.legal-page__hero {
    padding: 64px 0 40px;
    background: #f5f9fc;
    border-bottom: 1px solid #e3edf4;
    text-align: center;
}
.legal-page__title {
    margin: 0 0 .35em;
    font-size: 2.4rem;
    line-height: 1.15;
    color: #3188c4;
    font-weight: 600;
}
.legal-page__meta {
    margin: 0;
    color: #6b7c8c;
    font-size: .92rem;
    letter-spacing: .02em;
}

.legal-page__body {
    padding: 56px 0 88px;
    background: #fff;
}
.legal-page__article {
    max-width: 760px;
    margin: 0 auto;
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.75;
}
.legal-page__article > h2,
.legal-page__article > h3,
.legal-page__article .cli_pg_page_contaner h2,
.legal-page__article .cli_pg_page_contaner h3 {
    margin: 2em 0 .5em;
    font-size: 1.35rem;
    color: #3188c4;
    font-weight: 600;
    padding-bottom: .3em;
    border-bottom: 2px solid #e3edf4;
}
.legal-page__article > *:first-child {
    margin-top: 0;
}
.legal-page__article p {
    margin: 0 0 1.2em;
}
.legal-page__article a {
    color: #3188c4;
    text-decoration: underline;
}
.legal-page__article ul,
.legal-page__article ol {
    margin: 0 0 1.2em 1.4em;
}

@media (max-width: 640px) {
    .legal-page__hero  { padding: 40px 0 28px; }
    .legal-page__title { font-size: 1.7rem; }
    .legal-page__body  { padding: 32px 0 56px; }
    .legal-page__article { font-size: .97rem; line-height: 1.7; }
}

/* ---- Brand pages (Clinell landing) -------------------------------------- */
.brand-page__hero {
    padding: 72px 0 56px;
    background: #f5f9fc;
    border-bottom: 1px solid #e3edf4;
    text-align: center;
}
.brand-page__logo {
    max-width: 220px;
    height: auto;
    margin: 0 auto 24px;
    display: block;
}
.brand-page__title {
    margin: 0 0 .4em;
    font-size: 2.6rem;
    color: #3188c4;
    font-weight: 600;
    line-height: 1.15;
}
.brand-page__intro {
    max-width: 760px;
    margin: 0 auto;
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.65;
}
.brand-page__intro p { margin: 0 0 1em; }
.brand-page__intro p:last-child { margin-bottom: 0; }

.brand-page__section {
    padding: 64px 0;
}
.brand-page__section:nth-of-type(even) {
    background: #f9fbfd;
}
.brand-page__section-title {
    text-align: center;
    margin: 0 0 40px;
    font-size: 1.7rem;
    color: #3188c4;
    font-weight: 600;
}

.brand-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.brand-page__card {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .18s ease;
}
.brand-page__card:hover {
    transform: translateY(-3px);
}
/* Circular product image, matching gamahealthcare.com/range/universal-range/ */
.brand-page__card-image {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #f5f9fc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    transition: box-shadow .18s ease;
}
.brand-page__card:hover .brand-page__card-image {
    box-shadow: 0 10px 26px rgba(49, 136, 196, .16);
}
.brand-page__card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.brand-page__card-body {
    padding: 18px 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}
.brand-page__card-title {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.3;
    font-weight: 600;
}
.brand-page__card-title a {
    color: #2c3e50;
    text-decoration: none;
}
.brand-page__card-title a:hover { color: #3188c4; }
.brand-page__card-desc {
    margin: 0 0 20px;
    color: #5a6b7c;
    font-size: .92rem;
    line-height: 1.55;
    flex-grow: 1;
}
.brand-page__card-desc p:last-child { margin-bottom: 0; }
.brand-page__card-cta {
    align-self: center;
    background: #3188c4;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background .15s;
}
.brand-page__card-cta:hover { background: #2670a8; color: #fff; }

@media (max-width: 960px) {
    .brand-page__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .brand-page__hero  { padding: 48px 0 36px; }
    .brand-page__title { font-size: 1.9rem; }
    .brand-page__section { padding: 40px 0; }
    .brand-page__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- Clinell Contiplan product page additions ------------------------- */
.clinell-contiplan-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 18px;
}
.clinell-contiplan-benefits article {
    background: #f5f9fc;
    border-radius: 8px;
    padding: 20px 16px;
    text-align: center;
}
.clinell-contiplan-benefits img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin: 0 auto 10px;
    display: block;
}
.clinell-contiplan-benefits h4 {
    margin: 0 0 6px;
    color: #3188c4;
    font-size: 1.05rem;
}
.clinell-contiplan-benefits p {
    margin: 0;
    color: #5a6b7c;
    font-size: .92rem;
    line-height: 1.5;
}

.clinell-contiplan-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 40px 0 30px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.clinell-contiplan-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.clinell-contiplan-stages {
    margin-top: 36px;
    padding: 28px;
    background: #f5f9fc;
    border-radius: 10px;
}
.clinell-contiplan-stages h3 {
    margin: 0 0 18px;
    color: #3188c4;
    text-align: center;
}
.clinell-contiplan-stages img {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 24px;
    border-radius: 6px;
    background: #fff;
}
.clinell-contiplan-stages__list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    counter-reset: contiplan-stage;
}
.clinell-contiplan-stages__list li {
    position: relative;
    padding: 12px 0 12px 14px;
    border-top: 1px solid #e3edf4;
    color: #2c3e50;
    font-size: .98rem;
    line-height: 1.55;
}
.clinell-contiplan-stages__list li:first-child { border-top: 0; }
.clinell-contiplan-stages__list strong {
    color: #3188c4;
}

/* ---- Clinell Enhanced Pods benefit grid -------------------------------- */
.clinell-pods-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 36px 0 0;
}
.clinell-pods-benefits article {
    background: #f5f9fc;
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
}
.clinell-pods-benefits img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto 12px;
    display: block;
}
.clinell-pods-benefits h4 {
    margin: 0 0 8px;
    color: #3188c4;
    font-size: 1.02rem;
    line-height: 1.25;
}
.clinell-pods-benefits p {
    margin: 0;
    color: #5a6b7c;
    font-size: .9rem;
    line-height: 1.5;
}
@media (max-width: 960px) {
    .clinell-pods-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .clinell-pods-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .clinell-contiplan-benefits { grid-template-columns: 1fr; }
    .clinell-contiplan-stages { padding: 18px; }
}

/* ---- /proizvodi/ info-only overrides ---------------------------------- */
/* Card variant without CTA + non-link title color. */
.brand-page__card--info {
    cursor: default;
}
.brand-page__card-title--plain {
    color: #2c3e50;
}
.proizvodi-page__shop-note {
    margin: 36px auto 0;
    text-align: center;
    color: #5a6b7c;
    font-size: .95rem;
}
.proizvodi-page__shop-note a {
    color: #3188c4;
    font-weight: 600;
    text-decoration: underline;
}

/* ---- Hide Flatsome header newsletter signup ---------------------------- */
/* No active mailing-list content plan; the lightbox form was also broken
   ("Contact form not found"). Hidden via CSS so the change survives DB
   resyncs. Re-enable by deleting these rules and configuring a real form. */
.header-newsletter-item,
#header-newsletter-signup {
    display: none !important;
}

/* ---- Legacy "Dodatne informacije" tab (migrated content) -------------- */
/* Per-product HTML comes from _clinell_additional_info postmeta, scraped
   from the old /products/description/*.php pages. Style the article
   sections, tables, and instruction images for the modern theme. */
.clinell-legacy-tab article {
    margin: 0 0 24px;
}
.clinell-legacy-tab article + article {
    border-top: 1px solid #e4e7eb;
    padding-top: 24px;
}
.clinell-legacy-tab h3 {
    color: var(--clinell-navy-dark, #06233f);
    font-size: 1.35rem;
    margin: 0 0 14px;
}
.clinell-legacy-tab .productImage img {
    border-radius: 6px;
    display: block;
    height: auto;
    margin: 0 auto 18px;
    max-width: 100%;
}
.clinell-legacy-tab table.test {
    border-collapse: collapse;
    margin: 0 0 18px;
    width: 100%;
}
.clinell-legacy-tab table.test th,
.clinell-legacy-tab table.test td {
    border: 1px solid #d8dde3;
    padding: 8px 12px;
    text-align: left;
    vertical-align: top;
}
.clinell-legacy-tab table.test th {
    background: #f2f5f8;
    color: var(--clinell-navy-dark, #06233f);
    font-weight: 700;
}
.clinell-legacy-tab table.test th[colspan] {
    background: #06233f;
    color: #fff;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.clinell-legacy-tab hr.clinell-legacy-divider {
    border: 0;
    border-top: 1px solid #e4e7eb;
    margin: 32px 0;
}
.clinell-legacy-tab p { margin-bottom: 12px; }
.clinell-legacy-tab em { color: #2a3b50; }
.clinell-legacy-tab ol { padding-left: 22px; }
.clinell-legacy-tab ol li { margin-bottom: 8px; }

/* ---- Efikasnost tab ---------------------------------------------------- */
.clinell-efficacy-tab > p { margin-bottom: 16px; color: #4a5b6c; }
.clinell-efficacy-tab h4 {
    margin: 22px 0 8px;
    font-size: 1.02rem;
    color: #0f4675;
}
.clinell-efficacy-tab h4 span {
    font-weight: 400;
    font-size: .85rem;
    color: #7a8694;
}
.clinell-efficacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 8px;
    font-size: .92rem;
}
.clinell-efficacy-table th,
.clinell-efficacy-table td {
    text-align: left;
    padding: 9px 14px;
    border-bottom: 1px solid #e8eef4;
}
.clinell-efficacy-table thead th {
    background: #f2f7fb;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #d7e4ef;
}
.clinell-efficacy-table td:first-child { font-style: italic; color: #2a3b50; }
.clinell-efficacy-table tbody tr:hover { background: #f8fbfd; }
@media (max-width: 600px) {
    .clinell-efficacy-table th,
    .clinell-efficacy-table td { padding: 7px 9px; font-size: .85rem; }
}

/* ---- Per-product video + download (universal wipes etc.) -------------- */
.clinell-product-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 32px 0 18px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.clinell-product-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.clinell-product-download { margin: 0 0 6px; }
.clinell-product-download a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0f4675;
    text-decoration: none;
}
.clinell-product-download a::before { content: "⬇"; }
.clinell-product-download a:hover { text-decoration: underline; }

/* ---- Blog: Gama-style card grid (home.php / archive.php) -------------- */
.clinell-blog { padding: 40px 0 60px; }
.clinell-blog-header { margin-bottom: 28px; }
.clinell-blog-header__title { font-size: 2rem; color: #0f4675; margin: 0 0 14px; }
.clinell-blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.clinell-blog-filters a {
    display: inline-block; padding: 6px 16px; border: 1px solid #d7e4ef;
    border-radius: 999px; font-size: .9rem; color: #2c3e50; text-decoration: none;
    transition: border-color .15s, color .15s, background .15s;
}
.clinell-blog-filters a:hover { border-color: #3188c4; color: #3188c4; }
.clinell-blog-filters a.is-active { background: #0f4675; border-color: #0f4675; color: #fff; }

.clinell-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.clinell-blog-card {
    display: flex; flex-direction: column; background: #fff; border: 1px solid #e7eef4;
    border-radius: 10px; overflow: hidden; transition: transform .18s ease, box-shadow .18s ease;
}
.clinell-blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(49, 136, 196, .13); }
.clinell-blog-card__media { display: block; aspect-ratio: 16 / 10; background: #eef4f9; overflow: hidden; }
.clinell-blog-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.clinell-blog-card:hover .clinell-blog-card__media img { transform: scale(1.04); }
.clinell-blog-card__media-fallback {
    display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
    font-weight: 700; letter-spacing: .04em; font-size: 1.5rem; color: #fff;
    background: linear-gradient(135deg, #0f4675 0%, #2f93d4 100%);
}
.clinell-blog-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex-grow: 1; }
.clinell-blog-card__cat {
    align-self: flex-start; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
    font-weight: 600; color: #3188c4; text-decoration: none; margin-bottom: 8px;
}
.clinell-blog-card__cat:hover { color: #2670a8; }
.clinell-blog-card__title { font-size: 1.1rem; line-height: 1.32; margin: 0 0 8px; }
.clinell-blog-card__title a { color: #22303d; text-decoration: none; }
.clinell-blog-card__title a:hover { color: #3188c4; }
.clinell-blog-card__date { font-size: .8rem; color: #8595a4; margin-bottom: 10px; }
.clinell-blog-card__excerpt { font-size: .92rem; line-height: 1.55; color: #5a6b7c; margin: 0 0 16px; flex-grow: 1; }
.clinell-blog-card__more { align-self: flex-start; font-size: .88rem; font-weight: 600; color: #3188c4; text-decoration: none; }
.clinell-blog-card__more:hover { color: #2670a8; }
.clinell-blog-empty { padding: 40px 0; color: #5a6b7c; }

@media (max-width: 850px) { .clinell-blog-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 560px) { .clinell-blog-grid { grid-template-columns: 1fr; } }

.clinell-blog .navigation.pagination { margin-top: 36px; }
.clinell-blog .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.clinell-blog .page-numbers {
    display: inline-flex; min-width: 38px; height: 38px; align-items: center; justify-content: center;
    padding: 0 12px; border: 1px solid #d7e4ef; border-radius: 6px; color: #2c3e50; text-decoration: none;
}
.clinell-blog .page-numbers.current { background: #0f4675; color: #fff; border-color: #0f4675; }
.clinell-blog .page-numbers:hover:not(.current) { border-color: #3188c4; color: #3188c4; }
