.oxy-ingredient-showcase {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.oxy-ingredient-shell {
    display: grid;
    grid-template-columns: minmax(210px, 25%) 1fr;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(38, 100, 174, 0.16);
    border-radius: 36px;
    background: #ffffff;
}

.oxy-ingredient-nav {
    display: flex;
    flex-direction: column;
    padding: 30px 24px;
    background: rgba(255,255,255,0.96);
    border-right: 1px solid rgba(38, 100, 174, 0.10);
}

.oxy-ingredient-tab {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 64px;
    margin-bottom: 5px;
    padding: 18px 54px 18px 30px !important;
    border: 1px solid transparent !important;
    border-bottom-color: rgba(38, 100, 174, 0.10) !important;
    border-radius: 0 !important;
    background: transparent !important;
    cursor: pointer;
    text-align: left;
    font-family: "Raleway", sans-serif;
    font-size: clamp(16px, 1.08vw, 19px);
    font-weight: 500;
    line-height: 1.25;
    color: #2664AE !important;
    outline: none !important;
    box-shadow: none !important;
    transition:
        background 0.35s ease,
        border-radius 0.35s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.35s ease;
}

.oxy-ingredient-tab span {
    position: relative;
    z-index: 2;
    display: block;
    padding: 0;
}

.oxy-ingredient-tab::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    z-index: 2;
    width: 15px;
    height: 15px;
    transform: translateY(-50%);
    background-color: #2664AE;
    -webkit-mask-image: url("https://webshop.lionstackailab.hu/wp-content/uploads/2025/11/arrow_15796081.svg");
    mask-image: url("https://webshop.lionstackailab.hu/wp-content/uploads/2025/11/arrow_15796081.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    opacity: 0.68;
    transition:
        opacity 0.25s ease,
        background-color 0.25s ease;
}

.oxy-ingredient-tab:hover,
.oxy-ingredient-tab:focus,
.oxy-ingredient-tab:active,
.oxy-ingredient-tab:visited,
.oxy-ingredient-tab.is-active {
    color: #2BBFCE !important;
    background: linear-gradient(
        135deg,
        rgba(43, 191, 206, 0.03),
        rgba(245, 249, 253, 0.56)
    ) !important;
    border: 1px solid rgba(43, 191, 206, 0.15) !important;
    border-radius: 22px !important;
    box-shadow: none !important;
    transform: none !important;
    outline: none !important;
}

.oxy-ingredient-tab:hover::after,
.oxy-ingredient-tab:focus::after,
.oxy-ingredient-tab:active::after,
.oxy-ingredient-tab:visited::after,
.oxy-ingredient-tab.is-active::after {
    background-color: #2BBFCE !important;
    opacity: 1 !important;
}

.oxy-ingredient-tab.is-active {
    font-weight: 500 !important;
}

.oxy-ingredient-tab.is-active:hover,
.oxy-ingredient-tab.is-active:focus,
.oxy-ingredient-tab.is-active:active,
.oxy-ingredient-tab.is-active:visited {
    background: linear-gradient(
        135deg,
        rgba(43, 191, 206, 0.04),
        rgba(245, 249, 253, 0.68)
    ) !important;
    border-color: rgba(43, 191, 206, 0.18) !important;
    color: #2BBFCE !important;
    box-shadow: none !important;
    transform: none !important;
    outline: none !important;
}

.oxy-ingredient-tab:not(.is-active):has(+ .oxy-ingredient-tab:hover),
.oxy-ingredient-tab:not(.is-active):has(+ .oxy-ingredient-tab:focus),
.oxy-ingredient-tab:not(.is-active):has(+ .oxy-ingredient-tab:active),
.oxy-ingredient-tab:not(.is-active):has(+ .oxy-ingredient-tab.is-active) {
    border-bottom-color: transparent !important;
}

.oxy-ingredient-stage {
    position: relative;
    min-width: 0;
    background: #ffffff;
}

.oxy-ingredient-panel {
    display: none;
    min-height: 500px;
    grid-template-columns: minmax(360px, 48%) 1fr;
    animation: oxyIngredientFade 0.35s ease;
}

.oxy-ingredient-panel.is-active {
    display: grid;
}

@keyframes oxyIngredientFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.oxy-ingredient-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 34% 38%, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.56) 30%, transparent 56%),
        linear-gradient(100deg, #f2f9fc 0%, #edf7fb 42%, #f8fcfd 68%, #ffffff 100%);
}

.oxy-ingredient-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.16) 42%, rgba(255,255,255,0.72) 78%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
}

.oxy-ingredient-visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: 118%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    opacity: 0.94;
    filter: drop-shadow(0 24px 38px rgba(38, 100, 174, 0.08));
}

.oxy-ingredient-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 46px 62px 96px 76px;
    background:
        radial-gradient(circle at 96% 18%, rgba(43,191,206,0.045), transparent 34%),
        #ffffff;
    overflow: hidden;
}

.oxy-ingredient-copy::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -12%;
    width: 230px;
    height: 124%;
    background: #ffffff;
    border-radius: 58% 42% 48% 52% / 46% 54% 46% 54%;
    transform: rotate(7deg);
    z-index: 1;
    pointer-events: none;
}

.oxy-ingredient-copy::after {
    content: "";
    position: absolute;
    top: 46px;
    right: -76px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(38, 100, 174, 0.055);
    border-radius: 999px;
    pointer-events: none;
}

.oxy-ingredient-copy h3,
.oxy-ingredient-line,
.oxy-ingredient-desc {
    position: relative;
    z-index: 2;
}

.oxy-ingredient-copy h3 {
    margin: 0 0 16px;
    font-family: "Champagne", "Raleway", sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #2664AE;
}

.oxy-ingredient-line {
    width: 66px;
    height: 2px;
    margin: 0 0 26px;
    background: #2BBFCE;
}

.oxy-ingredient-desc {
    max-width: 560px;
    margin: 0;
    font-family: "Raleway", sans-serif;
    color: #6F8DA0;
}

.oxy-ingredient-desc__inner {
    overflow: hidden;
    font-family: "Raleway", sans-serif;
    font-size: clamp(15px, 1.06vw, 18px);
    font-weight: 400;
    line-height: 1.58;
    color: #6F8DA0;
    transition: max-height 0.75s cubic-bezier(.22, 1, .36, 1);
    will-change: max-height;
}

.oxy-ingredient-desc__inner p {
    margin: 0 0 16px;
    font-family: "Raleway", sans-serif;
    font-size: inherit;
    font-weight: 400;
    line-height: inherit;
    color: #6F8DA0;
}

.oxy-ingredient-desc__inner p:last-child {
    margin-bottom: 0;
}

.oxy-ingredient-desc__inner strong,
.oxy-ingredient-desc__inner b {
    font-weight: 600;
    color: #6F8DA0;
}

.oxy-ingredient-desc__button-wrap {
    display: none;
    margin-top: 12px;
}

.oxy-ingredient-desc.has-more .oxy-ingredient-desc__button-wrap {
    display: block;
}

.oxy-ingredient-desc__button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #2664AE !important;
    font-family: "Raleway", sans-serif;
    font-size: clamp(16px, 1.08vw, 19px);
    font-weight: 500;
    line-height: 1.25;
    cursor: pointer;
    box-shadow: none !important;
    outline: none !important;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.oxy-ingredient-desc__button::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.25s ease;
}

.oxy-ingredient-desc.is-open .oxy-ingredient-desc__button::after {
    transform: translateY(2px) rotate(-135deg);
}

.oxy-ingredient-desc__button:hover,
.oxy-ingredient-desc__button:focus,
.oxy-ingredient-desc__button:active,
.oxy-ingredient-desc__button:visited {
    background: transparent !important;
    color: #2BBFCE !important;
    outline: none !important;
    box-shadow: none !important;
    transform: translateY(-1px);
}

.oxy-ingredient-controls {
    position: absolute;
    right: 44px;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 16px;
}

.oxy-ingredient-arrow {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 999px !important;
    background: #2BBFCE !important;
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.oxy-ingredient-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 17px;
    height: 17px;
    background-color: #ffffff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.oxy-ingredient-prev::before {
    -webkit-mask-image: url("https://webshop.lionstackailab.hu/wp-content/uploads/2025/11/arrow_15796085.svg");
    mask-image: url("https://webshop.lionstackailab.hu/wp-content/uploads/2025/11/arrow_15796085.svg");
}

.oxy-ingredient-next::before {
    -webkit-mask-image: url("https://webshop.lionstackailab.hu/wp-content/uploads/2025/11/arrow_15796081.svg");
    mask-image: url("https://webshop.lionstackailab.hu/wp-content/uploads/2025/11/arrow_15796081.svg");
}

.oxy-ingredient-arrow:hover,
.oxy-ingredient-arrow:focus,
.oxy-ingredient-arrow:active,
.oxy-ingredient-arrow:visited {
    background: #2664AE !important;
    transform: translateY(-2px) !important;
    outline: none !important;
}

.oxy-ingredient-arrow:hover::before,
.oxy-ingredient-arrow:focus::before,
.oxy-ingredient-arrow:active::before,
.oxy-ingredient-arrow:visited::before {
    background-color: #ffffff !important;
}

.oxy-ingredient-arrow:active {
    transform: translateY(0) !important;
}

.oxy-ingredient-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oxy-ingredient-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px !important;
    background: rgba(38, 100, 174, 0.12) !important;
    cursor: pointer;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.oxy-ingredient-dot:hover,
.oxy-ingredient-dot:focus,
.oxy-ingredient-dot:active,
.oxy-ingredient-dot:visited {
    border-radius: 999px !important;
    background: rgba(43, 191, 206, 0.45) !important;
    outline: none !important;
}

.oxy-ingredient-dot.is-active {
    border-radius: 999px !important;
    background: #2BBFCE !important;
    transform: scale(1.16) !important;
}

@media (max-width: 1100px) {
    .oxy-ingredient-shell {
        grid-template-columns: 240px 1fr;
    }

    .oxy-ingredient-panel {
        grid-template-columns: 46% 54%;
    }

    .oxy-ingredient-copy {
        padding: 44px 46px 92px 62px;
    }

    .oxy-ingredient-visual {
        padding: 26px;
    }

    .oxy-ingredient-visual img {
        max-width: 500px;
    }
}

@media (max-width: 900px) {
    .oxy-ingredient-shell {
        display: block;
        min-height: unset;
    }

    .oxy-ingredient-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(38, 100, 174, 0.10);
    }

    .oxy-ingredient-tab {
        flex: 0 0 auto;
        width: auto;
        min-height: 52px;
        padding: 14px 42px 14px 24px !important;
        border: 1px solid rgba(38, 100, 174, 0.10) !important;
        border-radius: 999px !important;
        white-space: nowrap;
        font-size: 16px;
    }

    .oxy-ingredient-tab span {
        padding: 0;
    }

    .oxy-ingredient-tab.is-active {
        margin: 0;
        padding: 14px 42px 14px 24px !important;
        border: 1px solid rgba(43, 191, 206, 0.15) !important;
        border-radius: 999px !important;
        background: linear-gradient(135deg, rgba(43, 191, 206, 0.03), rgba(245, 249, 253, 0.56)) !important;
    }

    .oxy-ingredient-tab::after {
        right: 18px;
    }

    .oxy-ingredient-panel {
        min-height: unset;
        grid-template-columns: 1fr;
    }

    .oxy-ingredient-visual {
        min-height: 320px;
        padding: 34px 30px 14px;
    }

    .oxy-ingredient-visual img {
        max-width: 390px;
        width: 100%;
    }

    .oxy-ingredient-copy {
        padding: 32px 34px 94px;
        text-align: center;
        align-items: center;
    }

    .oxy-ingredient-copy::before,
    .oxy-ingredient-copy::after {
        display: none;
    }

    .oxy-ingredient-line {
        margin-bottom: 22px;
    }

    .oxy-ingredient-desc {
        width: 100%;
        max-width: 620px;
        text-align: left;
    }

    .oxy-ingredient-controls {
        left: 50%;
        right: auto;
        bottom: 22px;
        transform: translateX(-50%);
    }
}

@media (max-width: 520px) {
    .oxy-ingredient-shell {
        border-radius: 30px;
    }

    .oxy-ingredient-nav {
        padding: 16px;
    }

    .oxy-ingredient-visual {
        min-height: 260px;
        padding: 30px 24px 8px;
    }

    .oxy-ingredient-visual img {
        max-width: 320px;
    }

    .oxy-ingredient-copy {
        padding: 28px 24px 90px;
    }

    .oxy-ingredient-copy h3 {
        font-size: 36px;
    }

    .oxy-ingredient-desc__inner {
        font-size: 16px;
    }

    .oxy-ingredient-desc__button {
        font-size: 17px;
    }

    .oxy-ingredient-arrow {
        width: 42px;
        height: 42px;
    }
}
