.omnie-hero {
    position: relative;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    padding: 70px 7%;
    background:
        url("../images/omnie-background.png")
        center center / cover no-repeat;
    overflow: hidden;
}

.omnie-hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 430px) minmax(360px, 560px);
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.omnie-photo {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.omnie-photo-frame {
    position: relative;
    width: min(100%, 390px);
    aspect-ratio: 1 / 1.5;
    overflow: hidden;
    border-radius: 999px 999px 10px 10px;
    background: #F6E6DA;
    box-shadow: 0 28px 60px rgba(79, 61, 50, .16);
}

.omnie-photo-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(255, 253, 252, .88);
    border-radius: 999px 999px 8px 8px;
    pointer-events: none;
}

.omnie-photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    border: 1px solid rgba(200, 155, 123, .32);
    border-radius: 999px 999px 10px 10px;
    pointer-events: none;
}

.omnie-photo-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 48%;
}

.omnie-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding-top: 10px;
}

.omnie-script {
    display: block;
    margin-bottom: 2px;
    font-family: "Allura", cursive;
    color: #A8745E;
    font-size: clamp(40px, 4vw, 68px);
    line-height: .9;
}

.omnie-content h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    color: #7A5545;
    font-size: clamp(38px, 4.2vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.omnie-heart {
    margin: 18px 0 26px;
    color: #C89B7B;
    font-size: 22px;
}

.omnie-content p {
    max-width: 520px;
    margin: 0 0 16px;
    color: #5F4738;
    font-size: 17px;
    line-height: 1.9;
}

.omnie-signature {
    margin-top: 28px;
    font-family: "Allura", cursive;
    color: #A8745E;
    font-size: 34px;
    line-height: 1;
}

.omnie-signature span {
    margin-left: 10px;
    font-family: serif;
    font-size: 22px;
}

/* =====================================
   MOJE PODEJSCIE
===================================== */

.omnie-approach {
    padding: 48px 7% 54px;
    background: #F8F1EC;
}

.omnie-section-heading {
    margin-bottom: 38px;
    text-align: center;
}

.omnie-section-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    color: #4F3D32;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.omnie-heading-heart {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.omnie-heading-heart span {
    width: 22px;
    height: 1px;
    background: rgba(200, 155, 123, .45);
}

.omnie-heading-heart strong {
    color: #C89B7B;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.omnie-approach-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.omnie-approach-item {
    position: relative;
    min-height: 184px;
    padding: 0 28px;
    text-align: center;
}

.omnie-approach-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    width: 1px;
    height: 132px;
    background: rgba(200, 155, 123, .34);
}

.omnie-approach-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0;
    background: transparent;
}

.omnie-approach-icon img {
    width: 86px;
    height: 86px;
    display: block;
    object-fit: contain;
    object-position: center;
    user-select: none;
    pointer-events: none;
}

/* Kolejnosc: serce, listek, diament, troska, gwiazdki */
.omnie-approach-item:nth-child(1) .omnie-approach-icon img {
    transform: scale(3.55);
}

.omnie-approach-item:nth-child(2) .omnie-approach-icon img {
    transform: scale(2.80);
}

.omnie-approach-item:nth-child(3) .omnie-approach-icon img {
    transform: scale(3.45);
}

.omnie-approach-item:nth-child(4) .omnie-approach-icon img {
    transform: scale(3.65);
}

.omnie-approach-item:nth-child(5) .omnie-approach-icon img {
    transform: scale(2.55);
}

.omnie-approach-item h3 {
    margin: 0 0 14px;
    color: #4F3D32;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.omnie-approach-item p {
    max-width: 180px;
    margin: 0 auto;
    color: #5F4738;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .omnie-approach-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px 0;
    }

    .omnie-approach-item:nth-child(3)::after {
        display: none;
    }
}

@media (max-width: 900px) {
    .omnie-hero {
        min-height: auto;
        padding: 48px 24px 58px;
        background-position: center center;
    }

    .omnie-hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .omnie-photo-frame {
        width: min(78vw, 330px);
        aspect-ratio: 1 / 1.5;
    }

    .omnie-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .omnie-content p {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 720px) {
    .omnie-approach {
        padding: 42px 22px 46px;
    }

    .omnie-section-heading {
        margin-bottom: 18px;
    }

    .omnie-approach-grid {
        grid-template-columns: 1fr;
    }

    .omnie-approach-item {
        min-height: auto;
        padding: 26px 0;
    }

    .omnie-approach-item:not(:last-child)::after {
        top: auto;
        right: auto;
        left: 50%;
        bottom: 0;
        width: 160px;
        height: 1px;
        transform: translateX(-50%);
    }

    .omnie-approach-item:last-child::after {
        display: none;
    }

    .omnie-approach-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 18px;
    }
    
    .omnie-approach-icon img {
        width: 78px;
        height: 78px;
    }

    .omnie-approach-item p {
        max-width: 320px;
    }
}

@media (max-width: 560px) {
    .omnie-hero {
        padding: 34px 18px 48px;
        background-position: 52% center;
    }

    .omnie-photo-frame {
        width: min(82vw, 300px);
        aspect-ratio: 1 / 1.48;
    }

    .omnie-content h1 {
        font-size: 34px;
    }

    .omnie-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .omnie-signature {
        font-size: 30px;
    }

    .omnie-section-heading h2 {
        font-size: 23px;
        letter-spacing: 2px;
    }

    .omnie-approach-icon {
        width: 72px;
        height: 72px;
    }
    
    .omnie-approach-icon img {
        width: 72px;
        height: 72px;
    }

    .omnie-approach-item h3 {
        font-size: 12px;
    }

    .omnie-approach-item p {
        font-size: 14px;
        line-height: 1.65;
    }
}

@media (min-width: 1600px) {
    .omnie-hero {
        min-height: 760px;
        padding: 90px 8%;
        background-position: center center;
    }

    .omnie-hero-inner {
        width: min(1480px, 100%);
        grid-template-columns: minmax(420px, 520px) minmax(520px, 680px);
        gap: clamp(80px, 7vw, 140px);
    }

    .omnie-photo-frame {
        width: min(100%, 470px);
    }

    .omnie-content {
        max-width: 650px;
    }

    .omnie-content p {
        max-width: 610px;
        font-size: 18px;
    }

    .omnie-approach-grid {
        width: min(1380px, 100%);
    }
}

@media (min-width: 2200px) {
    .omnie-hero {
        min-height: 900px;
        padding: 120px 10%;
        background-position: center center;
    }

    .omnie-hero-inner {
        width: min(1760px, 100%);
        grid-template-columns: minmax(480px, 600px) minmax(620px, 760px);
        gap: 160px;
    }

    .omnie-photo-frame {
        width: min(100%, 540px);
    }

    .omnie-script {
        font-size: 74px;
    }

    .omnie-content h1 {
        font-size: 76px;
    }

    .omnie-content p {
        font-size: 19px;
        line-height: 1.95;
    }

    .omnie-approach-grid {
        width: min(1560px, 100%);
    }

    .omnie-approach-icon {
        width: 82px;
        height: 82px;
    }
}

@media (min-width: 3000px) {
    .omnie-hero {
        min-height: 1050px;
        background-position: center center;
    }

    .omnie-hero-inner {
        width: min(1960px, 100%);
    }
}

.omnie-certificates-section {
    padding: 46px 7% 56px;
    background: #F8F1EC;
}

.omnie-certificates-box {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 330px) 1fr;
    align-items: center;
    gap: 42px;
    padding: 34px 46px;
    border: 1px solid rgba(200, 155, 123, .22);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 253, 252, .96), rgba(248, 241, 236, .92));
    box-shadow: 0 18px 45px rgba(79, 61, 50, .07);
}

.omnie-certificates-heading {
    margin-bottom: 22px;
}

.omnie-certificates-heading h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    color: #4F3D32;
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.omnie-certificates-heading .omnie-heading-heart {
    justify-content: flex-start;
}

.omnie-certificates-text p {
    max-width: 310px;
    margin: 0;
    color: #5F4738;
    font-size: 14px;
    line-height: 1.85;
}

.omnie-certificates-button {
     min-height: 46px;
    margin-top: 26px;
    padding: 0 28px;
    border: 1px solid #C89B7B;
    border-radius: 999px;
    background: transparent;
    color: #8A6753;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.omnie-certificates-button:hover {
    background: #C89B7B;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(200, 143, 108, .25);
}

.omnie-certificates-slider {
    position: relative;
    min-width: 0;
    padding: 0 58px;
}

.omnie-certificates-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.certificate-item {
    display: none;
    overflow: hidden;
    border-radius: 8px;
    background: #FFFDFC;
    box-shadow: 0 12px 26px rgba(79, 61, 50, .10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.certificate-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(79, 61, 50, .14);
}

.certificate-item.is-visible {
    display: block;
}

.certificate-item img {
    width: 100%;
    aspect-ratio: 1.42 / 1;
    display: block;
    object-fit: cover;
}

.omnie-cert-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(200, 155, 123, .55);
    border-radius: 50%;
    background: rgba(255, 253, 252, .76);
    color: #C89B7B;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.omnie-cert-arrow:hover {
    background: #C89B7B;
    color: #fff;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 12px 26px rgba(200, 143, 108, .25);
}

.omnie-cert-prev {
    left: -7px;
}

.omnie-cert-next {
    right: -7px;
}

.omnie-cert-counter {
    display: none;
}

.omnie-certificates-slider.is-static .omnie-cert-arrow,
.omnie-certificates-slider.is-single .omnie-cert-arrow,
.omnie-certificates-slider.is-single .omnie-cert-counter {
    display: none !important;
}

@media (max-width: 1050px) {
    .omnie-certificates-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .omnie-certificates-text {
        text-align: center;
    }

    .omnie-certificates-heading .omnie-heading-heart {
        justify-content: center;
    }

    .omnie-certificates-text p {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    
    .omnie-cert-counter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 18px;
        color: #8A6753;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .omnie-cert-counter span {
        color: #C89B7B;
    }

    .omnie-certificates-section {
        padding: 38px 18px 46px;
    }

    .omnie-certificates-box {
        padding: 28px 18px;
    }

    .omnie-certificates-slider {
        padding: 0 44px;
    }

    .omnie-certificates-track {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .certificate-item {
        display: none;
    }

    .certificate-item.active {
        display: block;
    }

    .omnie-cert-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .omnie-cert-counter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        margin-top: 18px;
        color: #8A6753;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .omnie-cert-counter span {
        color: #C89B7B;
    }
}

@media (max-width: 480px) {
    .omnie-certificates-button {
        width: 100%;
        padding: 0 18px;
    }

    .omnie-certificates-slider {
        padding: 0 36px;
    }
}

/* =====================================
   MARKI
===================================== */

.omnie-brands-section {
    padding: 42px 7% 52px;
    background: #F8F1EC;
}

.omnie-brands-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.omnie-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: clamp(24px, 4vw, 54px);
    margin-top: 30px;
}

.omnie-brand-item {
    min-height: 78px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.omnie-brand-item img {
    max-width: 150px;
    max-height: 62px;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(1) opacity(.78);
    transition:
        filter .3s ease,
        transform .3s ease,
        opacity .3s ease;
}

.omnie-brand-item:hover img {
    filter: grayscale(0) opacity(1);
    transform: translateY(-3px);
}

@media (max-width: 1050px) {
    .omnie-brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 34px 44px;
    }
}

@media (max-width: 640px) {
    .omnie-brands-section {
        padding: 38px 22px 44px;
    }

    .omnie-brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 26px 28px;
    }

    .omnie-brand-item {
        min-height: 66px;
    }

    .omnie-brand-item img {
        max-width: 132px;
        max-height: 54px;
    }
}

/* studio */

.omnie-studio-section {
    padding: 10px 7% 70px;
    background:#F8F1EC;
}

.omnie-studio-box {
    width: min(1280px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(330px, 42%) 1fr;
    overflow: hidden;
    border: 1px solid rgba(200, 155, 123, .22);
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 253, 252, .96) 0%,
            rgba(248, 241, 236, .92) 100%
        );
    box-shadow: 0 18px 45px rgba(79, 61, 50, .07);
}

.omnie-studio-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: clamp(32px, 4vw, 58px);
}

.omnie-studio-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 22px;
    align-items: flex-start;
}

.omnie-studio-icon {
    width: 76px;
    height: 76px;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.omnie-studio-icon img {
    width: 76px;
    height: 76px;
    display: block;
    object-fit: contain;
    object-position: center;
    user-select: none;
    pointer-events: none;
}

.omnie-studio-icon-higiena img {
    transform: scale(2.5);
}

.omnie-studio-icon-jakosc img {
    transform: scale(3.25);
}

.omnie-studio-icon-pasja img {
    transform: scale(2.55);
}

.omnie-studio-padding {
    padding-left: 5px;
}

.omnie-studio-item h3 {
    margin: 0 0 8px;
    color: #4F3D32;
    font-size: 16px;
    font-weight: 700;
}

.omnie-studio-item p {
    max-width: 360px;
    margin: 0;
    color: #5F4738;
    font-size: 14px;
    line-height: 1.75;
}

.omnie-studio-image {
    min-height: 360px;
}

.omnie-studio-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 980px) {
    .omnie-studio-box {
        grid-template-columns: 1fr;
    }

    .omnie-studio-image {
        min-height: 300px;
        order: -1;
    }

    .omnie-studio-content {
        padding: 34px 28px;
    }
}

@media (max-width: 560px) {
    
    
    .omnie-studio-section {
        padding: 4px 18px 48px;
    }

    .omnie-studio-box {
        border-radius: 14px;
    }

    .omnie-studio-image {
        min-height: 220px;
    }

    .omnie-studio-content {
        gap: 24px;
        padding: 28px 20px;
    }

    .omnie-studio-item {
        grid-template-columns: 54px 1fr;
        gap: 16px;
    }

    .omnie-studio-icon {
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
    
     .omnie-studio-icon img {
        width: 58px;
        height: 58px;
    }

    .omnie-studio-item h3 {
        font-size: 15px;
    }

    .omnie-studio-item p {
        font-size: 14px;
        line-height: 1.65;
    }
}