@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap");

:root {
    --green: #25a64a;
    --green-dark: #187836;
    --ink: #2f302f;
    --muted: #6d716e;
    --line: #e1e4e1;
    --soft: #f6f7f5;
    --white: #fff;
    --dark: #3c3d3c;
    --shell: 1500px;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(34, 47, 37, 0.09);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.18;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 14px;
    border: 1px solid var(--line);
    text-align: left;
}

.site-shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.site-shell--narrow {
    max-width: 1120px;
}

.site-shell--reading {
    max-width: 900px;
}

.section {
    padding: clamp(64px, 8vw, 110px) 0;
}

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

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    box-shadow:
        inset 0 0 0 0 rgba(0, 0, 0, 0),
        inset 0 0 0 rgba(255, 255, 255, 0);
    transition: background-color 0.25s ease, color 0.25s ease,
        border-color 0.25s ease, box-shadow 0.35s ease,
        transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
    box-shadow:
        inset 0 -3.75em 0 rgba(0, 0, 0, 0.24),
        inset 0 -10px 20px rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.button--dark {
    color: var(--white);
    background: var(--dark);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--dark);
}

.button--black {
    color: var(--white);
    background: #080808;
}

.button--outline {
    border-color: var(--ink);
    background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
    color: var(--white);
    border-color: var(--ink);
    background: transparent;
}

.button--small {
    min-height: 40px;
    padding-inline: 20px;
}

.text-link {
    color: var(--green);
    font-weight: 600;
}

.section-action {
    margin-top: 42px;
    text-align: center;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: #fff;
    background: #000;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
}

.site-header.is-sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.07);
}

.site-header__main {
    border-bottom: 1px solid #f0f0f0;
}

.site-header__row {
    display: grid;
    min-height: 86px;
    grid-template-columns: 150px minmax(210px, 1fr) auto auto;
    gap: clamp(18px, 2.5vw, 44px);
    align-items: center;
}

.site-logo {
    width: 112px;
    margin-left: -20px;
}

.site-logo img {
    width: 100%;
}

.header-search {
    position: relative;
    width: min(100%, 430px);
    min-width: 0;
    margin-left: auto;
}

.header-search input {
    width: 100%;
    min-width: 0;
    height: 44px;
    padding: 0 45px 0 18px;
    border: 0;
    border-bottom: 1px solid #b8bcb9;
    outline: 0;
    background: transparent;
    font-size: 1rem;
}

.header-search input:focus {
    border-color: var(--green);
}

.header-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    font-size: 1.35rem;
}

.site-header__desktop-menu .main-navigation {
    display: flex;
    gap: clamp(15px, 1.5vw, 27px);
    align-items: center;
}

.main-navigation a {
    position: relative;
    padding: 31px 0 28px;
    font-size: 0.98rem;
    font-weight: 600;
    white-space: nowrap;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    background: var(--green);
    content: "";
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.main-navigation a:hover,
.main-navigation a.is-active {
    color: var(--green);
}

.main-navigation a:hover::after,
.main-navigation a.is-active::after {
    transform: scaleX(1);
}

.language-link {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 700;
}

.category-navigation__inner {
    display: flex;
    min-height: 46px;
    gap: clamp(24px, 4vw, 64px);
    align-items: center;
    justify-content: center;
}

.category-navigation {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.category-navigation a {
    font-size: 0.94rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-navigation a:hover,
.category-navigation a.is-active {
    color: var(--green);
}

.category-navigation a.is-active {
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.mobile-drawer {
    position: fixed;
    z-index: 1100;
    inset: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer.is-open {
    visibility: visible;
    opacity: 1;
}

.mobile-drawer__panel {
    width: min(88vw, 390px);
    height: 100%;
    margin-left: auto;
    padding: 28px;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-drawer.is-open .mobile-drawer__panel {
    transform: translateX(0);
}

.mobile-drawer__top {
    display: flex;
    margin-bottom: 28px;
    align-items: center;
    justify-content: space-between;
}

.mobile-drawer__top img {
    width: 110px;
}

.mobile-drawer__top button {
    border: 0;
    background: transparent;
    font-size: 2rem;
}

.mobile-drawer .main-navigation,
.mobile-drawer__categories {
    display: flex;
    flex-direction: column;
}

.mobile-drawer .main-navigation a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
}

.mobile-drawer__categories {
    margin-top: 25px;
    gap: 12px;
    color: var(--muted);
}

/* Hero */
.home-hero {
    position: relative;
    min-height: min(70vh, 720px);
    overflow: hidden;
    background: #e8e9e5;
}

.home-hero__track,
.home-slide {
    min-height: inherit;
}

.home-slide {
    position: absolute;
    z-index: 0;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.home-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.home-slide::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 3%,
        rgba(255, 255, 255, 0.7) 34%, rgba(255, 255, 255, 0.03) 68%);
    content: "";
}

.home-slide__image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-slide__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: inherit;
    max-width: var(--shell);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.home-slide__content h1 {
    max-width: 680px;
    margin-bottom: 18px;
}

.home-slide__content > p:not(.eyebrow) {
    max-width: 570px;
    margin-bottom: 30px;
    color: #4e514f;
    font-size: 1.18rem;
}

.slider-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    transform: translateY(-50%);
    transition: color 0.25s ease, border-color 0.25s ease,
        background-color 0.25s ease, transform 0.25s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow svg,
.card-slider__arrow svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.slider-arrow--prev {
    left: 24px;
}

.slider-arrow--next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 22px;
    left: 0;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: transparent;
}

.slider-dots button.is-active {
    background: var(--ink);
}

.page-hero {
    padding: 55px 0 82px;
    background: #fff url("../img/site/header.png") center bottom / 100% auto no-repeat;
    text-align: center;
}

.page-hero h1 {
    margin: 22px 0 10px;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
}

.page-hero p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: left;
}

.breadcrumb a:hover {
    color: var(--green);
}

/* Cards and home sections */
.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: var(--radius);
}

.category-card::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
    content: "";
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card span {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 18px;
    left: 18px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.product-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e9ebe8;
    border-radius: 15px;
    background: #f8f8f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.product-card a {
    display: block;
    height: 100%;
    padding: 14px 14px 22px;
    text-align: center;
}

.product-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.04;
    margin-bottom: 16px;
    border-radius: 12px;
    background: #f8f8f7;
}

.product-card__media::before {
    position: absolute;
    inset: 0;
    background: transparent url("../img/site/productBG.png") center / cover no-repeat;
    content: "";
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card__media img {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card__back {
    opacity: 0;
}

.product-card:hover .product-card__front {
    opacity: 0;
}

.product-card:hover .product-card__back,
.product-card:hover .product-card__media::before {
    opacity: 1;
}

.product-card:hover .product-card__back {
    transform: scale(1.02);
}

.product-card__category {
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 0.82rem;
}

.product-card h2,
.product-card h3 {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 500;
}

.brand-story {
    padding: clamp(70px, 9vw, 130px) 0;
}

.brand-story__grid,
.story-row,
.certification-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(45px, 8vw, 120px);
    align-items: center;
}

.brand-story__copy {
    max-width: 620px;
}

.brand-story__grid > img,
.story-row > img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease;
}

.brand-story__grid > img:hover,
.story-row > img:hover,
.about-product-banner img:hover {
    transform: translateY(-8px);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.post-card {
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 38px rgba(28, 40, 31, 0.08);
}

.post-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.post-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.post-card:hover img {
    transform: scale(1.04);
}

.post-card__body {
    flex: 1;
    padding: 24px;
}

.post-card time {
    color: var(--muted);
    font-size: 0.8rem;
}

.post-card h3 {
    margin: 9px 0 11px;
}

.post-card p {
    display: -webkit-box;
    overflow: hidden;
    color: var(--muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.post-card__more {
    display: inline-block;
    color: #3f82ef;
    font-weight: 600;
}

/* Product and article sliders */
.card-slider {
    position: relative;
}

.card-slider__viewport {
    overflow: hidden;
    padding: 8px 2px 30px;
    scroll-behavior: smooth;
}

.card-slider__track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.card-slider__track > * {
    flex: 0 0 calc((100% - 72px) / 4);
}

.card-slider__arrow {
    position: absolute;
    z-index: 4;
    top: 45%;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    border: 1px solid #cdd0cd;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 7px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-50%);
    transition: color 0.25s ease, background-color 0.25s ease,
        opacity 0.25s ease, transform 0.25s ease;
}

.card-slider__arrow:hover,
.card-slider__arrow:focus-visible {
    color: #fff;
    background: var(--ink);
    transform: translateY(-50%) scale(1.05);
}

.card-slider__arrow:disabled {
    opacity: 0.3;
    cursor: default;
    transform: translateY(-50%);
}

.card-slider__arrow--prev {
    left: -23px;
}

.card-slider__arrow--next {
    right: -23px;
}

.card-slider--posts .card-slider__arrow {
    top: 40%;
}

/* About */
.about-product-banner {
    margin-top: -42px;
    padding-bottom: 45px;
}

.about-product-banner img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.story-rows {
    display: flex;
    flex-direction: column;
    gap: clamp(70px, 10vw, 130px);
}

.story-row > div {
    max-width: 650px;
}

.story-row--reverse > div {
    order: 2;
}

.story-row--reverse > img {
    order: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.values-grid article {
    padding: 10px 25px;
    text-align: center;
}

.values-grid img {
    width: 76px;
    height: 76px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.values-grid article:nth-child(1) img {
    filter: none;
}

.values-grid h3 {
    margin-bottom: 8px;
}

.values-grid p {
    color: var(--muted);
}

.certificate-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.certificate-cards article {
    min-height: 190px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.certificate-cards img {
    width: auto;
    height: 72px;
    margin-bottom: 18px;
    object-fit: contain;
}

.certificate-cards h3 {
    font-size: 0.95rem;
}

/* Home product hotspot series */
.series-showcase {
    padding-top: 30px;
}

.series-showcase__rows {
    display: flex;
    flex-direction: column;
    gap: clamp(55px, 7vw, 100px);
}

.series-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
    gap: clamp(55px, 8vw, 125px);
    align-items: center;
}

.series-row--reverse {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.series-row--reverse .hotspot-media {
    order: 2;
}

.series-row--reverse .series-row__copy {
    order: 1;
}

.hotspot-media {
    position: relative;
    overflow: visible;
    border-radius: 16px;
}

.hotspot-media > img {
    width: 100%;
    border-radius: inherit;
}

.series-row__copy {
    max-width: 600px;
}

.series-row__copy .eyebrow {
    color: #3a3a3a;
}

.series-row__copy h2 {
    margin-bottom: 13px;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.series-row__copy > p:not(.eyebrow) {
    margin: 24px 0 34px;
    font-size: 1.08rem;
}

.title-line {
    display: block;
    width: 125px;
    height: 4px;
    background: var(--ink);
}

.product-hotspot {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #d7d8d7;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transform: translate(-50%, -50%);
}

.product-hotspot > span:first-child {
    font-size: 1.45rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.25s ease;
}

.product-hotspot:hover > span:first-child,
.product-hotspot:focus-visible > span:first-child {
    transform: rotate(45deg);
}

.product-hotspot__preview {
    position: absolute;
    z-index: 10;
    bottom: calc(100% + 13px);
    left: 50%;
    display: grid;
    visibility: hidden;
    width: 210px;
    min-height: 235px;
    padding: 15px;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translate(-50%, 12px);
    transition: opacity 0.25s ease, visibility 0.25s ease,
        transform 0.25s ease;
}

.product-hotspot__preview::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    content: "";
    transform: translate(-50%, -7px) rotate(45deg);
}

.product-hotspot__preview img {
    width: 100%;
    height: 155px;
    object-fit: contain;
}

.product-hotspot__preview strong {
    align-self: end;
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.3;
}

.product-hotspot:hover .product-hotspot__preview,
.product-hotspot:focus-visible .product-hotspot__preview {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Catalog */
.catalog-filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 140px;
    gap: 14px;
}

.catalog-filters select,
.catalog-toolbar select {
    width: 100%;
    min-height: 46px;
    padding: 0 42px 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    background: #fff;
    font-size: 0.86rem;
}

.catalog-filters select:focus,
.catalog-toolbar select:focus {
    border-color: var(--green);
}

.catalog-toolbar {
    display: flex;
    margin: 26px 0;
    align-items: center;
    justify-content: space-between;
}

.catalog-toolbar > p {
    margin: 0;
    color: var(--muted);
}

.catalog-toolbar > div {
    display: flex;
    gap: 14px;
}

.catalog-show {
    display: flex;
    gap: 8px;
    align-items: center;
}

.catalog-show select {
    width: 95px;
}

.catalog-empty {
    padding: 45px 0;
    text-align: center;
}

.catalog-pagination {
    display: flex;
    margin-top: 42px;
    gap: 8px;
    justify-content: center;
}

.catalog-pagination button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
}

.catalog-pagination button.is-active {
    color: #fff;
    border-color: var(--green);
    background: var(--green);
}

/* Product detail */
.product-detail__top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: clamp(42px, 7vw, 100px);
    align-items: start;
    padding-top: 35px;
}

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

.product-gallery__main {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    min-height: 610px;
    place-items: center;
    border-radius: var(--radius);
    background: var(--soft) url("../img/site/productBG.png") center / cover no-repeat;
}

.product-gallery__main img {
    width: 100%;
    max-height: 610px;
    padding: 35px;
    object-fit: contain;
}

.product-gallery__thumbs {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-gallery__thumbs button {
    width: 82px;
    height: 82px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.product-gallery__thumbs button.is-active {
    border-color: var(--green);
}

.product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-summary {
    position: sticky;
    top: 150px;
    padding-top: 30px;
}

.product-summary h1 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.product-summary__excerpt {
    color: var(--muted);
    font-size: 1.05rem;
}

.product-summary__sku {
    margin-top: 18px;
}

.product-specs {
    margin: 25px 0;
    border-top: 1px solid var(--line);
}

.product-specs > div {
    display: grid;
    grid-template-columns: 135px 1fr;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.product-specs dt {
    font-weight: 600;
}

.product-specs dd {
    margin: 0;
    color: var(--muted);
}

.product-tabs {
    padding-top: 90px;
}

.product-tabs__buttons {
    display: flex;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    gap: 32px;
}

.product-tabs__buttons button {
    position: relative;
    padding: 16px 0;
    border: 0;
    background: transparent;
    font-weight: 600;
    white-space: nowrap;
}

.product-tabs__buttons button::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--green);
    content: "";
    transform: scaleX(0);
}

.product-tabs__buttons button.is-active {
    color: var(--green);
}

.product-tabs__buttons button.is-active::after {
    transform: scaleX(1);
}

.product-tabs__panel {
    padding-top: 38px;
}

.retailers-section {
    margin-top: 70px;
    text-align: center;
}

.retailers-section .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    justify-content: center;
}

.retailers-section .swiper-slide {
    width: 170px;
}

/* Content, blog and forms */
.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 60px;
}

.article-shell {
    width: min(calc(100% - 48px), 920px);
    margin-inline: auto;
}

.article-hero-image {
    width: 100%;
    max-height: 590px;
    margin-bottom: 38px;
    border-radius: var(--radius);
    object-fit: cover;
}

.rich-content,
.article-content {
    color: #454946;
    font-size: 1.04rem;
}

.rich-content h2,
.rich-content h3,
.rich-content h4,
.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 1.6em;
    color: var(--ink);
}

.rich-content a,
.article-content a,
.legacy-content a {
    color: var(--green-dark);
    text-decoration: underline;
}

.rich-content img,
.article-content img,
.legacy-content img {
    max-width: 100%;
}

.rich-content figure,
.article-content figure {
    margin: 30px 0;
}

.table-of-contents,
.info-note {
    margin: 28px 0;
    padding: 24px;
    border-left: 3px solid var(--green);
    border-radius: 0 10px 10px 0;
    background: var(--soft);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    position: relative;
    padding: 18px 40px 18px 0;
    font-weight: 600;
    cursor: pointer;
}

.faq-question::after {
    position: absolute;
    top: 16px;
    right: 8px;
    content: "+";
    font-size: 1.5rem;
}

.faq-item.is-open .faq-question::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding-bottom: 18px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.form-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.contact-grid {
    gap: 70px;
}

.contact-form-card,
.form-card {
    padding: clamp(26px, 4vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-page .contact-form-card {
    color: #fff;
    border-color: var(--dark);
    background: var(--dark);
}

.contact-page .contact-form-card > p:not(.eyebrow) {
    color: #ddd;
}

.contact-page .contact-form-card .eyebrow {
    color: #fff;
}

.contact-page .contact-form-card .form-grid > label > span:first-child:not(:last-child) {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
}

.contact-page .contact-form-card input,
.contact-page .contact-form-card textarea {
    border: 0;
    border-radius: 999px;
}

.contact-page .contact-form-card textarea {
    border-radius: 20px;
}

.contact-page .contact-form-card .checkbox-field input {
    width: auto;
    min-height: 0;
}

.contact-page .contact-form-card .checkbox-field a {
    text-decoration: underline;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-details article {
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--ink);
    color: var(--ink);
    background: #fff;
}

.contact-details article > span {
    color: #8cdaa1;
    font-size: 2rem;
}

.contact-details h2 {
    margin: 8px 0;
    font-size: 1.2rem;
}

.contact-details p,
.contact-details a {
    margin: 0;
    color: var(--ink);
}

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

.contact-map-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.contact-map-card__heading {
    display: flex;
    min-height: 145px;
    padding: 26px 30px;
    gap: 18px;
    align-items: center;
}

.contact-map-card__heading > span {
    font-size: 2.2rem;
}

.contact-map-card h2 {
    margin-bottom: 7px;
    font-size: 1.3rem;
}

.contact-map-card p {
    margin: 0;
    color: var(--muted);
}

.contact-map-card iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
}

.pr-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--green-dark);
    font-weight: 600;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field--wide {
    grid-column: 1 / -1;
}

.form-field input,
.form-field select,
.form-field textarea,
.form-grid label:not(.checkbox-field) input,
.form-grid label:not(.checkbox-field) select,
.form-grid label:not(.checkbox-field) textarea,
.footer-newsletter input {
    width: 100%;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid #cdd1cd;
    border-radius: 9px;
    outline: 0;
    background: #fff;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--green);
}

.form-grid > label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-grid__full {
    grid-column: 1 / -1;
}

.checkbox-field {
    flex-direction: row !important;
    align-items: flex-start;
}

.checkbox-field input {
    margin-top: 6px;
}

.form-status {
    min-height: 1.5em;
    margin-top: 10px;
    color: var(--green-dark);
}

.contact-info-card {
    padding: 35px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--dark);
}

.contact-info-card a {
    display: block;
    margin: 10px 0;
}

.quiz-card,
.legal-card,
.not-found {
    width: min(100%, 900px);
    margin-inline: auto;
}

.quiz-card {
    min-height: 330px;
    padding: clamp(28px, 4vw, 42px);
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: #3d3d3d;
}

.skin-quiz {
    background-color: #fff;
}

.quiz-start,
.quiz-result {
    display: grid;
    place-items: center;
    min-height: 250px;
    text-align: center;
}

.quiz-start h2,
.quiz-result h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}

.quiz-start p {
    margin: 0 0 28px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.7;
}

.quiz-progress {
    margin: 0 0 20px;
}

.quiz-progress__track {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #ddd;
}

.quiz-progress__track span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: #168cf0;
    transition: width 300ms ease;
}

.quiz-error {
    margin: 0 0 14px;
    padding: 9px 12px;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    color: #8b1e28;
    background: #f8d7da;
    text-align: center;
}

.quiz-step {
    margin: 0;
    padding: 0;
    border: 0;
}

.quiz-step[hidden],
.quiz-form[hidden],
.quiz-start[hidden],
.quiz-progress[hidden],
.quiz-result[hidden],
.quiz-error[hidden] {
    display: none;
}

.quiz-step legend {
    width: 100%;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
}

.quiz-step legend strong {
    font-weight: 700;
}

.quiz-answers {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.quiz-answer {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    margin: 0;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #252525;
    background: #f9f9f9;
    cursor: pointer;
    transition: background-color 200ms ease, transform 200ms ease;
}

.quiz-answer:hover {
    background: #f1f1f1;
    transform: scale(1.01);
}

.quiz-answer:has(input:checked) {
    border-color: #168cf0;
    background: #eef7ff;
}

.quiz-answer input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #168cf0;
}

.quiz-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin: 0 auto;
    padding: 9px 20px;
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    color: #3d3d3d;
    background: #fff;
    font: inherit;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.quiz-step > .quiz-button {
    display: flex;
}

.quiz-button:hover,
.quiz-button:focus-visible {
    color: #fff;
    background: #252525;
}

.quiz-result {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.quiz-result__name {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.quiz-result__link {
    max-width: 100%;
    margin-bottom: 12px;
}

.quiz-restart {
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    cursor: pointer;
    transition: transform 200ms ease, font-weight 200ms ease;
}

.quiz-restart:hover {
    font-weight: 700;
    transform: translateY(-2px);
}

.not-found {
    padding: 110px 0;
    text-align: center;
}

.not-found__code {
    color: var(--green);
    font-size: clamp(5rem, 14vw, 10rem);
    font-weight: 700;
    line-height: 1;
}

.single-post__header {
    padding: 70px 0 42px;
    text-align: center;
}

.single-post__header .breadcrumb {
    margin-bottom: 34px;
}

.single-post__header h1 {
    max-width: 1000px;
    margin: 12px auto 18px;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
}

.single-post__header time {
    color: var(--muted);
}

.single-post__cover {
    margin-bottom: 55px;
}

.single-post__cover img {
    width: 100%;
    max-height: 620px;
    border-radius: var(--radius);
    object-fit: cover;
}

.single-post .article-content {
    padding-bottom: clamp(70px, 8vw, 110px);
}

/* Imported product HTML utility layer */
.legacy-content {
    overflow: hidden;
    line-height: 1.6;
}

.legacy-content .row {
    display: flex;
    flex-wrap: wrap;
}

.legacy-content .col-12 {
    width: 100%;
}

.legacy-content .col-6 {
    width: 50%;
}

.legacy-content .col-3 {
    width: 25%;
}

.legacy-content .col-2 {
    width: 16.6667%;
}

.legacy-content .d-flex {
    display: flex;
}

.legacy-content .justify-content-center {
    justify-content: center;
}

.legacy-content .align-items-center {
    align-items: center;
}

.legacy-content .text-center {
    text-align: center;
}

.legacy-content .text-left {
    text-align: left;
}

.legacy-content .text-right {
    text-align: right;
}

.legacy-content .position-relative {
    position: relative;
}

.legacy-content .position-absolute {
    position: absolute;
}

.legacy-content .w-100 {
    width: 100%;
}

.legacy-content .w-50 {
    width: 50%;
}

.legacy-content .h-100 {
    height: 100%;
}

.legacy-content .m-auto,
.legacy-content .mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.legacy-content .my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.legacy-content .mt-auto {
    margin-top: auto;
}

.legacy-content .my-1 {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.legacy-content .my-2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.legacy-content .mt-1 {
    margin-top: 0.75rem;
}

.legacy-content .mb-0 {
    margin-bottom: 0;
}

.legacy-content .p-1,
.legacy-content .px-1 {
    padding: 0.75rem;
}

.legacy-content .px-0 {
    padding-right: 0;
    padding-left: 0;
}

.legacy-content .px-3 {
    padding-right: 2rem;
    padding-left: 2rem;
}

.legacy-content .py-1 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.legacy-content .py-4 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.legacy-content .bg-light {
    background: #f7f8f6;
}

.legacy-content .bg-gray {
    background: #eceeec;
}

.legacy-content .border-round {
    overflow: hidden;
    border-radius: 16px;
}

.legacy-content .border,
.legacy-content .border-left,
.legacy-content .border-right {
    border: 1px solid var(--line);
}

.legacy-content .fw-bold {
    font-weight: 700;
}

.legacy-content .fw-lighter {
    font-weight: 300;
}

.legacy-content .fs-1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.legacy-content .fs-2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.legacy-content .fs-4 {
    font-size: 1.25rem;
}

.legacy-content .fs-5 {
    font-size: 1.05rem;
}

.legacy-content details {
    border-bottom: 1px solid var(--line);
}

.legacy-content summary {
    padding: 18px 10px;
    font-weight: 600;
    cursor: pointer;
}

.legacy-content .e-n-accordion-item-content {
    padding: 0 10px 20px;
}

.legacy-content .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.legacy-content .swiper-slide {
    width: 170px;
}

/* Support and footer */
.support-strip {
    padding: 65px 0 0;
}

.support-strip__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.support-card {
    display: flex;
    min-height: 210px;
    padding: clamp(28px, 4vw, 55px);
    border: 1px solid var(--dark);
    border-radius: 14px;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.support-card--dark {
    color: #fff;
    background: var(--dark);
}

.support-card--dark > img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.support-card h2 {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.support-card p {
    margin-bottom: 0;
    color: #dedede;
}

.support-card__phone {
    display: block;
    margin-bottom: 22px;
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: 600;
}

.site-footer {
    margin-top: 1px;
    padding: 0 0 24px;
    color: #fff;
    background: var(--dark) url("../img/site/footer.png") center bottom 50px / 100% auto no-repeat;
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-features article {
    display: flex;
    min-height: 110px;
    padding: 22px;
    gap: 15px;
    align-items: center;
}

.footer-features img {
    width: 48px;
    height: 48px;
    filter: grayscale(1) brightness(2);
    object-fit: contain;
    opacity: 0.65;
}

.footer-features h2 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.footer-features p {
    margin: 0;
    color: #bfc1bf;
    font-size: 0.82rem;
}

.footer-main {
    display: grid;
    min-height: 370px;
    grid-template-columns: 1.15fr 0.72fr 0.8fr 1.7fr;
    gap: 55px;
    padding: 55px 0;
}

.footer-brand > img {
    width: 180px;
    margin-bottom: 32px;
}

.footer-brand a {
    display: block;
    color: #c7c9c7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links h2 {
    margin-bottom: 8px;
    color: #b2b4b2;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.footer-links a {
    color: #eee;
}

.footer-links a:hover {
    color: #7bd392;
}

.footer-newsletter h2 {
    font-size: 1.5rem;
}

.footer-newsletter > form > label:first-child {
    display: block;
    margin-bottom: 4px;
}

.footer-consent {
    display: flex;
    margin: 18px 0;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.86rem;
}

.footer-consent input {
    width: auto;
    min-height: 0;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: #d0d2d0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.back-to-top {
    --progress: 0deg;
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 3px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: conic-gradient(var(--ink) var(--progress), #e1e3e1 0);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top::before {
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    background: #fff;
    content: "";
}

.back-to-top span {
    position: relative;
    font-size: 1.5rem;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .site-header__row {
        grid-template-columns: 125px minmax(170px, 1fr) auto auto;
        gap: 18px;
    }

    .site-logo {
        margin-left: 0;
    }

    .main-navigation a {
        font-size: 0.88rem;
    }

    .product-grid,
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-slider__track > * {
        flex-basis: calc((100% - 48px) / 3);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 0.7fr 0.8fr 1.35fr;
        gap: 30px;
    }
}

@media (max-width: 980px) {
    .product-gallery__zoom {
        display: none;
    }

    .site-header__row {
        min-height: 74px;
        grid-template-columns: 120px 1fr auto auto;
    }

    .site-header__desktop-menu,
    .category-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-search {
        width: min(100%, 460px);
        min-width: 0;
    }

    .home-hero {
        min-height: 560px;
    }

    .category-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-filters .button {
        grid-column: 1 / -1;
    }

    .product-detail__top,
    .brand-story__grid,
    .story-row,
    .series-row,
    .series-row--reverse,
    .certification-grid,
    .contact-grid,
    .content-layout {
        grid-template-columns: 1fr;
    }

    .story-row--reverse > div,
    .story-row--reverse > img,
    .series-row--reverse .hotspot-media,
    .series-row--reverse .series-row__copy {
        order: initial;
    }

    .series-row__copy {
        max-width: 100%;
    }

    .card-slider__track > * {
        flex-basis: calc((100% - 24px) / 2);
    }

    .product-summary {
        position: static;
    }

    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }

    .site-shell,
    .article-shell {
        width: min(calc(100% - 30px), var(--shell));
    }

    .section {
        padding: 58px 0;
    }

    .site-header__row {
        grid-template-columns: 95px 1fr auto;
        gap: 12px;
    }

    .site-logo {
        width: 95px;
    }

    .header-search input {
        height: 40px;
        font-size: 0.9rem;
    }

    .section-heading h2 {
        font-size: clamp(1.65rem, 7vw, 2rem);
        overflow-wrap: anywhere;
    }

    .language-link {
        display: none;
    }

    .home-hero {
        min-height: 510px;
    }

    .home-slide::after {
        background: rgba(255, 255, 255, 0.72);
    }

    .home-slide__content {
        align-items: center;
        text-align: center;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow--prev {
        left: 10px;
    }

    .slider-arrow--next {
        right: 10px;
    }

    .page-hero {
        padding: 35px 0 68px;
        background-size: auto 100px;
    }

    .category-grid,
    .product-grid,
    .post-grid,
    .values-grid,
    .certificate-cards,
    .support-strip__grid,
    .form-grid,
    .footer-features,
    .footer-main,
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .card-slider__track > * {
        flex-basis: 100%;
    }

    .card-slider__arrow {
        top: auto;
        bottom: -28px;
        width: 43px;
        height: 43px;
    }

    .card-slider__arrow--prev {
        left: calc(50% - 50px);
    }

    .card-slider__arrow--next {
        right: calc(50% - 50px);
    }

    .card-slider__viewport {
        padding-bottom: 48px;
    }

    .series-showcase__rows {
        gap: 80px;
    }

    .product-hotspot {
        width: 32px;
        height: 32px;
    }

    .product-hotspot__preview {
        width: 170px;
        min-height: 190px;
    }

    .product-hotspot__preview img {
        height: 115px;
    }

    .category-card {
        min-height: 250px;
    }

    .catalog-filters {
        grid-template-columns: 1fr;
    }

    .catalog-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .catalog-toolbar > div {
        width: 100%;
        flex-direction: column;
    }

    .catalog-show {
        justify-content: space-between;
    }

    .product-gallery {
        display: flex;
        flex-direction: column;
    }

    .product-gallery__main {
        min-height: 420px;
    }

    .product-gallery__thumbs {
        overflow-x: auto;
        flex-direction: row;
    }

    .product-tabs__buttons {
        gap: 22px;
    }

    .support-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-features article {
        min-height: 90px;
        padding-inline: 0;
    }

    .footer-main {
        gap: 35px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .legacy-content .col-md-6 {
        width: 100%;
    }

    .legacy-content .order-md-1,
    .legacy-content .order-md-2 {
        order: initial;
    }

    .legacy-content .position-absolute {
        position: static;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }
}

@media (min-width: 721px) {
    .legacy-content .col-md-6 {
        width: 50%;
    }

    .legacy-content .order-md-1 {
        order: 1;
    }

    .legacy-content .order-md-2 {
        order: 2;
    }

    .legacy-content .w-md-75 {
        width: 75%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* 2026 visual alignment */
.site-header__row {
    min-height: 78px;
    grid-template-columns: 140px minmax(260px, 1fr) auto 28px;
    gap: clamp(16px, 2vw, 34px);
}

.site-logo {
    width: 122px;
}

.header-search {
    width: min(100%, 460px);
}

.header-search input {
    height: 38px;
    padding: 0 44px 0 15px;
    border: 1px solid #dedfdf;
    border-radius: 999px;
    background: #fff;
    font-size: 0.94rem;
}

.header-search input:focus {
    border-color: #8b8f8b;
    box-shadow: 0 0 0 3px rgba(37, 166, 74, 0.08);
}

.header-search button {
    top: 1px;
    right: 3px;
    display: grid;
    width: 38px;
    height: 36px;
    place-items: center;
}

.header-search button svg,
.contact-info-panel svg,
.contact-map-card__heading svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.language-link {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
}

.language-link img {
    display: block;
    width: 20px;
    height: 14px;
    object-fit: cover;
}

.card-slider__track > * {
    flex-basis: calc(
        (100% - (24px * (var(--visible-cards, 4) - 1)))
        / var(--visible-cards, 4)
    );
}

/* Homepage */
.home-hero--framed {
    width: min(calc(100% - 76px), 1440px);
    min-height: 0;
    margin: 15px auto 18px;
    overflow: visible;
    border-radius: 13px;
    background: transparent;
}

.home-hero--framed .home-hero__track,
.home-hero--framed .home-slide {
    aspect-ratio: 16 / 5;
    min-height: 0;
    border-radius: 13px;
}

.home-hero--framed .home-hero__track {
    position: relative;
    overflow: hidden;
}

.home-hero--framed .home-slide {
    overflow: hidden;
}

.home-hero--framed .home-slide::after {
    display: none;
}

.home-hero--framed .home-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero--framed .slider-arrow {
    width: 54px;
    height: 54px;
    color: #fff;
    border: 0;
    background: #383a39;
    box-shadow: none;
}

.home-hero--framed .slider-arrow--prev {
    left: -27px;
}

.home-hero--framed .slider-arrow--next {
    right: -27px;
}

.home-hero--framed .slider-dots {
    bottom: 16px;
}

.home-hero--framed .slider-dots button {
    width: 12px;
    height: 12px;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.35);
}

.home-hero--framed .slider-dots button.is-active {
    background: #fff;
}

.home-feature-strip {
    padding: 19px 0 24px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
}

.home-feature-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.home-feature-strip article {
    display: flex;
    min-width: 0;
    gap: 15px;
    align-items: center;
}

.home-feature-strip img {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    object-fit: contain;
}

.home-feature-strip h2 {
    margin: 0 0 3px;
    font-size: 1.05rem;
}

.home-feature-strip p {
    margin: 0;
    color: #a0a1a0;
    font-size: 0.84rem;
    line-height: 1.35;
}

.home-category-strip {
    padding: 18px 0 68px;
}

.home-category-strip__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 25px;
}

.home-category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.06 / 1;
    padding: 18px 14px 0;
    border-radius: 18px;
    background: #f6f6f6;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-category-card:hover {
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.home-category-card h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.05rem;
}

.home-category-card img {
    position: absolute;
    right: 9px;
    bottom: 0;
    left: 9px;
    width: calc(100% - 18px);
    height: calc(100% - 48px);
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.35s ease;
}

.home-category-card:hover img {
    transform: scale(1.035);
}

.discovery-story {
    padding: 36px 0 88px;
}

.discovery-story__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(55px, 8vw, 110px);
    align-items: center;
}

.discovery-story__grid > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 13px;
    object-fit: cover;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.discovery-story__grid > img:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
    transform: translateY(-7px);
}

.discovery-story__copy {
    max-width: 500px;
}

.discovery-story__copy h2 {
    margin-bottom: 13px;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.14;
}

.title-line {
    display: block;
    width: 128px;
    height: 3px;
    margin: 0 0 27px;
    background: #3a3a3a;
}

.discovery-story__copy p {
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.discovery-story__button {
    transition: color 0.25s ease, background-color 0.25s ease,
        transform 0.25s ease;
}

.discovery-story__button:hover {
    color: #fff;
    background: var(--dark);
    transform: translateY(-1px);
}

.popular-products-section {
    padding-top: 65px;
}

.sustainability-story {
    padding: 35px 0 45px;
}

.ornament-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
}

.ornament-divider::before,
.ornament-divider::after {
    height: 1px;
    background: #d6d6d6;
    content: "";
}

.ornament-divider span {
    font-size: 1.5rem;
    line-height: 1;
}

.ornament-divider img {
    display: block;
    width: 34px;
    height: 34px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.sustainability-story__lead {
    margin: 35px 0;
    font-size: clamp(1.65rem, 2.7vw, 2.4rem);
    text-align: center;
}

.rotating-word {
    display: inline-block;
    overflow: hidden;
    padding: 1px 10px 3px;
    color: #fff;
    background: #3b3b3b;
    font-weight: 700;
    vertical-align: middle;
    transform-origin: center top;
}

.rotating-word.is-changing {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.rotating-word.is-entering {
    animation: word-drop 0.42s ease both;
}

@keyframes word-drop {
    from {
        opacity: 0;
        transform: translateY(-22px);
    }

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

.sustainability-story__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(65px, 9vw, 130px);
    align-items: center;
    padding: 68px 85px;
}

.sustainability-story__copy h2 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.15;
}

.sustainability-story__copy p {
    font-size: 1.04rem;
    line-height: 1.75;
}

.sustainability-story__grid > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 13px;
    object-fit: cover;
}

.category-product-explorer {
    padding-top: 55px;
}

.category-product-explorer__header {
    display: flex;
    margin-bottom: 38px;
    gap: 30px;
    align-items: end;
    justify-content: space-between;
}

.category-product-explorer__header h2 {
    margin: 0;
    font-size: 1.45rem;
}

.category-product-explorer__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-product-explorer__tabs button {
    min-height: 39px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px 10px 0 0;
    background: #f6f6f6;
    font-weight: 600;
}

.category-product-explorer__tabs button.is-active {
    color: #fff;
    background: #3b3b3b;
}

.category-product-explorer .product-card {
    background: #fff;
}

.category-product-explorer .product-card h3 {
    min-height: 48px;
    font-weight: 600;
}

.post-card__body h2,
.post-card__body h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.4;
}

.post-card__body > span {
    font-size: 0.9rem;
}

.post-grid--archive {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-grid--archive .post-card {
    box-shadow: none;
}

.post-grid--archive .post-card__body {
    padding: 16px 6px 22px;
}

.post-grid--archive .post-card img {
    border-radius: 13px;
}

.article-content h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.article-content h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.article-content h4 {
    font-size: 1.12rem;
}

.single-post__header {
    padding: 52px 0 36px;
}

.single-post__header h1 {
    max-width: 900px;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.17;
}

/* Product detail */
.product-detail--editorial {
    padding: 0 0 75px;
}

.product-breadcrumb {
    padding-top: 20px;
}

.product-detail--editorial .product-detail__top {
    grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
    gap: clamp(35px, 5vw, 72px);
    padding-top: 30px;
}

.product-gallery--slider {
    position: relative;
    display: block;
}

.product-gallery--slider .product-gallery__main {
    position: relative;
    display: grid;
    min-height: 0;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 13px;
    background: #fff;
}

.product-gallery--slider .product-gallery__main img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-height: none;
    padding: 28px;
    object-fit: contain;
}

.product-gallery__main {
    cursor: zoom-in;
}

.product-gallery__zoom {
    position: absolute;
    z-index: 35;
    top: 0;
    left: calc(100% + 22px);
    visibility: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid #d7d7d7;
    border-radius: 13px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 235% 235%;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.product-gallery__zoom.is-active {
    visibility: visible;
    opacity: 1;
}

.product-gallery__thumb-row {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
}

.product-gallery--slider .product-gallery__thumbs {
    display: flex;
    overflow-x: auto;
    grid-column: auto;
    grid-row: auto;
    flex-direction: row;
    padding: 2px;
    gap: 9px;
    scrollbar-width: none;
}

.product-gallery--slider .product-gallery__thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery--slider .product-gallery__thumbs button {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
}

.gallery-nav {
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
}

.gallery-nav svg {
    width: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
}

.product-detail--editorial .product-summary {
    position: static;
    padding-top: 0;
}

.product-detail--editorial .product-summary h1 {
    margin-bottom: 14px;
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
    line-height: 1.2;
}

.product-summary__excerpt {
    color: #4f5250;
    font-size: 0.94rem;
    line-height: 1.6;
}

.product-summary__excerpt ul {
    padding-left: 18px;
}

.product-summary__sku {
    margin: 13px 0;
    font-size: 0.9rem;
}

.product-specs--editorial {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 15px 0;
    border: 0;
    gap: 8px;
}

.product-specs--editorial > div {
    display: flex;
    min-width: 0;
    padding: 12px;
    border: 0;
    border-radius: 8px;
    background: #f5f5f4;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.product-specs--editorial dt,
.product-specs--editorial dd {
    font-size: 0.8rem;
}

.product-specs--editorial dd {
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
}

.skin-type-button {
    display: inline-flex;
    min-height: 35px;
    padding: 7px 13px;
    border-radius: 8px;
    color: #222;
    background: #f0f6f0;
    gap: 7px;
    align-items: center;
    font-size: 0.83rem;
    font-weight: 600;
    text-decoration: none;
}

.skin-type-button span {
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #46c266;
}

.product-certificates {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 18px;
}

.product-certificates article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
    align-items: center;
    text-align: center;
}

.product-certificates img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.product-certificates span {
    font-size: 0.72rem;
}

.product-quick-info {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 0.84rem;
}

.product-quick-info p {
    margin: 6px 0;
}

.product-summary .product-information {
    margin-top: 18px;
}

.product-divider {
    margin: 48px 0 34px;
}

.product-summary .product-tabs__buttons {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    gap: 0;
}

.product-summary .product-tabs__buttons button,
.product-summary .product-tabs__buttons a {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    padding: 15px 6px;
    border: 0;
    color: #222;
    background: transparent;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.product-summary .product-tabs__buttons button::after {
    height: 2px;
    background: #3a3a3a;
}

.product-summary .product-tabs__buttons button.is-active {
    color: #222;
}

.product-summary .product-tabs__buttons button:focus-visible,
.product-summary .product-tabs__buttons a:focus-visible {
    outline: 0;
}

.product-summary .product-tabs__buttons a:hover,
.product-summary .product-tabs__buttons a:focus-visible {
    color: #222;
}

.product-summary .product-information .product-tabs__panel {
    padding-top: 22px;
}

.product-summary .product-text-panel {
    max-width: none;
    margin: 0;
    padding: 22px 0 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.86rem;
    line-height: 1.65;
}

.product-summary .product-text-panel [style*="font-family"] {
    font-family: inherit !important;
}

.product-summary .product-text-panel [style*="font-size"] {
    font-size: inherit !important;
}

.product-summary .product-text-panel p {
    margin: 0 0 18px;
}

.product-summary .product-text-panel ul {
    margin: 0 0 18px;
    padding-left: 25px;
}

.product-summary .product-text-panel li + li {
    margin-top: 9px;
}

.product-editorial-content {
    max-width: 1080px;
    margin-inline: auto;
}

.product-rich-description {
    width: 100%;
    max-width: none;
}

.product-rich-description > .row {
    position: relative;
}

.product-rich-description > .row:first-child .position-absolute {
    display: none;
}

.product-editorial-content a,
.product-editorial-content table a,
.product-text-panel a {
    color: #111;
    text-decoration: none;
}

.product-editorial-content table {
    width: 100% !important;
    border-collapse: collapse;
    table-layout: fixed;
}

.product-editorial-content td,
.product-editorial-content th {
    padding: 10px;
    text-align: center !important;
    vertical-align: middle;
}

.product-editorial-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-inline: auto;
}

.product-text-panel {
    max-width: 900px;
    margin-inline: auto;
    padding: 35px;
    border-radius: 12px;
    background: #f7f7f6;
}

.product-text-panel h2 {
    margin: 0 0 18px;
    font-size: 1.45rem;
}

.product-text-panel p,
.product-text-panel ul {
    margin-top: 0;
}

.product-faq-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(35px, 6vw, 80px);
    align-items: center;
}

.product-faq-section__intro h2 {
    margin-bottom: 22px;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    text-align: center;
}

.product-faq-section__intro img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    border-radius: 12px;
    object-fit: cover;
}

.product-faq-section__accordion details {
    border: 1px solid #ebebeb;
    border-radius: 8px;
    background: #f7f7f7;
}

.product-faq-section__accordion details + details {
    margin-top: 7px;
}

.product-faq-section__accordion summary {
    position: relative;
    padding: 16px 46px 16px 17px;
    list-style: none;
}

.product-faq-section__accordion summary::-webkit-details-marker {
    display: none;
}

.product-faq-section__accordion summary::after {
    position: absolute;
    top: 50%;
    right: 18px;
    content: "+";
    transform: translateY(-50%);
}

.product-faq-section__accordion details[open] summary::after {
    content: "−";
}

.retailers-section {
    margin-top: 0;
    scroll-margin-top: 150px;
}

.retailers-section > header {
    margin-bottom: 34px;
    text-align: center;
}

.retailers-section > header h2 {
    margin-bottom: 6px;
    font-size: clamp(1.7rem, 2.6vw, 2.25rem);
}

.retailers-section > header p {
    color: var(--muted);
}

.retailer-slider .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: stretch;
    justify-content: flex-start;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.retailer-slider .swiper-slide {
    display: flex;
    width: auto;
    min-height: 175px;
    flex: 0 0 calc(
        (100% - (24px * (var(--visible-cards, 4) - 1)))
        / var(--visible-cards, 4)
    );
    align-items: center;
    justify-content: center;
}

.retailer-slider .swiper-slide a {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.retailer-slider .swiper-slide img {
    width: auto;
    max-width: 92%;
    height: 112px;
    object-fit: contain;
}

.product-divider img {
    width: 30px;
    height: 30px;
}

.complementary-products {
    text-align: center;
}

.complementary-products > h2 {
    margin-bottom: 28px;
    font-size: 1.7rem;
}

@media (max-width: 720px) {
    .product-summary .product-tabs__buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-summary .product-tabs__buttons button,
    .product-summary .product-tabs__buttons a {
        min-height: 48px;
        font-size: 0.82rem;
        text-align: center;
        white-space: normal;
    }
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
    gap: 25px;
    align-items: start;
}

.contact-side-stack {
    display: grid;
    gap: 18px;
}

.contact-info-panel {
    display: grid;
    padding: 28px 30px;
    border: 1px solid #333;
    border-radius: 14px;
    background: #fff;
    gap: 19px;
}

.contact-info-panel__row {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
}

.contact-info-panel__row svg {
    width: 28px;
    height: 28px;
}

.contact-info-panel__row div {
    display: flex;
    min-width: 0;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.contact-info-panel__row span {
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-info-panel__row a,
.contact-info-panel__row strong {
    color: #222;
    font-size: 1rem;
    text-align: right;
}

.contact-map-card--compact {
    box-shadow: none;
}

.contact-map-card--compact .contact-map-card__heading {
    min-height: 105px;
    padding: 18px 22px;
}

.contact-map-card--compact .contact-map-card__heading > svg {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
}

.contact-map-card--compact iframe {
    height: 230px;
}

.contact-page--redesign .contact-form-card {
    min-height: 100%;
    box-shadow: none;
}

.contact-form-intro {
    display: flex;
    min-height: 138px;
    margin-bottom: 34px;
    gap: 26px;
    align-items: center;
}

.contact-form-intro__visual {
    display: flex;
    flex: 0 0 auto;
    gap: 19px;
    align-items: center;
}

.contact-form-intro__visual img:first-child {
    width: 18px;
    height: 112px;
    object-fit: fill;
}

.contact-form-intro__visual img:last-child {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.contact-form-intro__copy {
    min-width: 0;
}

.contact-form-intro__copy h2 {
    margin: 0 0 18px;
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    font-weight: 500;
}

.contact-form-intro__copy p {
    margin: 0;
    color: #ddd;
    font-size: 1.03rem;
}

.button--light {
    color: #222;
    background: #fff;
}

.contact-page--redesign .pr-link {
    display: flex;
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    padding: 10px 18px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: #222;
    background: #e3e3e3;
    font-size: 1.12rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-page--redesign .pr-link svg {
    width: 22px;
    height: 22px;
    margin-right: 7px;
    flex: 0 0 22px;
    fill: currentColor;
}

.contact-page--redesign .pr-link:hover {
    color: #222;
    background: #f1f1f1;
    transform: translateY(-2px);
}

/* Shared support and footer */
.support-strip {
    padding: 52px 0 10px;
}

.support-card {
    min-height: 185px;
}

.site-footer {
    background-position: center bottom 62px;
    background-size: 100% auto;
}

.footer-features img {
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.48;
}

.footer-main {
    min-height: 340px;
}

/* Constrained footer artwork */
.site-footer {
    overflow: hidden;
    background: var(--dark);
}

.site-footer > .site-shell {
    position: relative;
    isolation: isolate;
}

.site-footer > .site-shell::before {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 62px;
    left: 0;
    height: 390px;
    background: transparent url("../img/site/footer.png") center bottom / 100% auto no-repeat;
    content: "";
    pointer-events: none;
}

.footer-contact-list {
    margin: 0;
    padding-left: 28px;
}

.footer-brand > img {
    margin-bottom: 20px;
}

.footer-brand > p {
    margin-bottom: 14px;
    transform: translateY(-50px);
}

.footer-contact-list li {
    padding-left: 2px;
}

.footer-contact-list {
    transform: translateY(-50px);
}

.footer-contact-list a {
    display: inline;
    color: #c7c9c7;
    font-size: 0.9rem;
    white-space: nowrap;
}

.footer-contact-list strong {
    color: #fff;
    font-weight: 600;
}

.footer-newsletter__socials {
    margin-top: 0;
    justify-content: flex-end;
    transform: translateY(-30px);
}

.footer-newsletter .form-status {
    min-height: 0;
    margin: 0;
}

.footer-newsletter__socials a {
    border: 0;
}

.footer-bottom {
    justify-content: flex-start;
}

@media (max-width: 720px) {
    .site-footer > .site-shell::before {
        bottom: 72px;
        height: 520px;
        background-size: auto 360px;
    }

    .footer-contact-list {
        padding-left: 20px;
    }

    .footer-contact-list a {
        white-space: normal;
    }

    .footer-newsletter__socials {
        justify-content: flex-start;
        transform: translateY(-10px);
    }
}

/* Navigation dropdown */
.site-header .main-navigation a,
.category-navigation a,
.mobile-drawer__categories a {
    text-transform: uppercase;
}

.main-navigation__item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.main-navigation__item > a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}

.main-navigation__chevron {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}

.main-navigation__submenu {
    position: absolute;
    z-index: 1100;
    top: calc(100% - 9px);
    left: 50%;
    display: grid;
    visibility: hidden;
    width: max-content;
    min-width: 225px;
    padding: 10px;
    border: 1px solid #eceeec;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 0.22s ease, visibility 0.22s ease,
        transform 0.22s ease;
}

.main-navigation__submenu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 14px;
    content: "";
}

.main-navigation__submenu a {
    display: block;
    padding: 10px 13px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.main-navigation__submenu a::after {
    display: none;
}

.main-navigation__submenu a:hover,
.main-navigation__submenu a:focus-visible {
    color: var(--green);
    background: #f1f8f3;
}

.main-navigation__item.has-submenu:hover .main-navigation__submenu,
.main-navigation__item.has-submenu:focus-within .main-navigation__submenu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.main-navigation__item.has-submenu:hover .main-navigation__chevron,
.main-navigation__item.has-submenu:focus-within .main-navigation__chevron {
    transform: rotate(180deg);
}

.main-navigation a.is-current {
    color: var(--green);
}

.main-navigation__item > a.is-current::after {
    transform: scaleX(1);
}

.mobile-drawer .main-navigation__item {
    display: block;
}

.mobile-drawer .main-navigation__submenu,
.mobile-drawer .main-navigation__chevron {
    display: none;
}

/* Stable rotating labels */
.sustainability-story__lead .rotating-word {
    width: 178px;
}

.sustainability-story__copy h2 .rotating-word {
    width: 210px;
}

.rotating-word {
    display: inline-flex;
    height: 1.3em;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

.rotating-word__text {
    display: block;
    width: 100%;
    text-align: center;
}

.rotating-word__text.is-changing {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.rotating-word__text.is-entering {
    animation: word-drop 0.42s ease both;
}

/* Hotspot pulse */
.product-hotspot {
    isolation: isolate;
}

.product-hotspot::before,
.product-hotspot::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: inherit;
    content: "";
    pointer-events: none;
    animation: hotspot-wave 2.5s ease-out infinite;
}

.product-hotspot::after {
    animation-delay: 1.25s;
}

@keyframes hotspot-wave {
    0% {
        opacity: 0.9;
        transform: scale(0.9);
    }

    80%,
    100% {
        opacity: 0;
        transform: scale(1.85);
    }
}

/* Support strip icons */
.support-card {
    min-height: 210px;
}

.support-card__visual {
    display: flex;
    height: 112px;
    flex: 0 0 auto;
    gap: 23px;
    align-items: center;
}

.support-card__visual img:first-child {
    width: 22px;
    height: 108px;
    object-fit: contain;
}

.support-card__visual img:last-child {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.support-card--dark > div:last-child {
    flex: 1 1 auto;
}

.support-card__phone {
    display: inline-flex;
    gap: 9px;
    align-items: center;
}

.support-card__phone svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-card .button {
    display: inline-flex;
    gap: 7px;
    align-items: center;
}

.support-card .button img {
    width: 23px;
    height: 23px;
    object-fit: contain;
}

@media (max-width: 720px) {
    .support-card__visual {
        height: auto;
    }

    .support-card__visual img:first-child {
        height: 84px;
    }

    .sustainability-story__lead .rotating-word {
        width: 154px;
    }

    .sustainability-story__copy h2 .rotating-word {
        width: 184px;
    }
}

/* Pointer-drag controls for every homepage slider */
.home-hero__track,
.card-slider__viewport {
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.home-hero__track img,
.card-slider__viewport img {
    -webkit-user-drag: none;
    user-select: none;
}

.home-hero__track.is-dragging,
.card-slider__viewport.is-dragging {
    cursor: grabbing;
}

.home-hero__track.is-dragging .home-slide.is-active {
    transition: none;
}

.home-slide.is-drag-neighbor {
    z-index: 2;
    visibility: visible;
    opacity: 1;
}

.card-slider__viewport.is-dragging .card-slider__track {
    transition: none;
}

/* Blog contents links */
.article-content .table-of-contents a,
.rich-content .table-of-contents a {
    color: #3e3d3d;
    text-decoration: none;
}

.article-content .table-of-contents a:hover,
.rich-content .table-of-contents a:hover {
    color: #3e3d3d;
    text-decoration: none;
}

/* Contact details matching the reference card */
.contact-info-panel {
    min-height: 180px;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 26px;
    align-content: center;
    align-items: center;
}

.contact-info-panel__dots {
    width: 18px;
    height: 112px;
    object-fit: fill;
    filter: brightness(0.24);
}

.contact-info-panel__content {
    display: grid;
    min-width: 0;
    gap: 18px;
}

.contact-info-panel__row {
    display: flex;
    min-width: 0;
    gap: 10px;
    align-items: center;
}

.contact-info-panel__row svg {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    stroke-width: 1.9;
}

.contact-info-panel__row a {
    min-width: 0;
    color: #303235;
    font-size: clamp(1.25rem, 2.35vw, 1.9rem);
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
    text-align: left;
    text-decoration: none;
}

@media (max-width: 720px) {
    .footer-brand > p,
    .footer-contact-list {
        transform: translateY(-24px);
    }

    .contact-info-panel {
        grid-template-columns: 18px minmax(0, 1fr);
        padding: 24px 20px;
        gap: 18px;
    }

    .contact-info-panel__dots {
        width: 16px;
        height: 100px;
    }

    .contact-info-panel__row {
        flex-direction: row;
        align-items: center;
        gap: 9px;
    }

    .contact-info-panel__row a {
        font-size: 1.05rem;
        text-align: left;
    }

    .contact-form-intro {
        min-height: 112px;
        gap: 16px;
    }

    .contact-form-intro__visual {
        gap: 13px;
    }

    .contact-form-intro__visual img:first-child {
        width: 15px;
        height: 92px;
    }

    .contact-form-intro__visual img:last-child {
        width: 52px;
        height: 52px;
    }

    .contact-form-intro__copy h2 {
        margin-bottom: 10px;
    }

    .contact-page--redesign .pr-link {
        font-size: 1rem;
    }
}

@media (max-width: 1200px) {
    .home-feature-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-category-strip__grid {
        gap: 16px;
    }

    .sustainability-story__grid {
        padding-inline: 35px;
    }

    .product-detail--editorial .product-detail__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .site-header__row {
        grid-template-columns: 110px minmax(150px, 1fr) auto auto;
    }

    .site-logo {
        width: 108px;
        margin-left: 0;
    }

    .home-category-strip__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .discovery-story__grid,
    .sustainability-story__grid,
    .product-detail--editorial .product-detail__top,
    .product-faq-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .discovery-story__copy {
        max-width: 680px;
    }

    .sustainability-story__grid {
        padding: 50px 0;
    }

    .sustainability-story__grid > img {
        grid-row: 1;
    }

    .category-product-explorer__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-side-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-info-panel {
        grid-column: 1 / -1;
    }

    .post-grid--archive {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    html {
        overflow-x: clip;
        scrollbar-width: none;
    }

    html::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    body {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    .site-header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

    .site-header__row {
        grid-template-columns: 88px minmax(100px, 1fr) auto;
    }

    .site-logo {
        width: 88px;
    }

    .header-search input {
        height: 38px;
        font-size: 0.82rem;
    }

    .home-hero--framed {
        width: 100vw;
        max-width: none;
        margin: 0;
        border-radius: 0;
    }

    .home-hero--framed .home-hero__track,
    .home-hero--framed .home-slide {
        height: clamp(155px, calc(35vw + 20px), 272px);
        aspect-ratio: auto;
        border-radius: 0;
    }

    .home-hero--framed .home-slide__image {
        object-fit: fill;
    }

    .home-hero--framed .slider-arrow {
        width: 38px;
        height: 38px;
    }

    .home-hero--framed .slider-arrow--prev {
        left: 10px;
    }

    .home-hero--framed .slider-arrow--next {
        right: 10px;
    }

    .home-hero--framed .slider-dots {
        bottom: 8px;
    }

    .home-hero--framed .slider-dots button {
        width: 8px;
        height: 8px;
    }

    .home-feature-strip__grid,
    .home-category-strip__grid,
    .contact-side-stack,
    .post-grid--archive {
        grid-template-columns: 1fr;
    }

    .home-feature-strip__grid {
        gap: 20px;
    }

    .home-feature-strip article {
        max-width: 320px;
        margin-inline: auto;
        width: 100%;
    }

    .home-category-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px;
    }

    .home-category-card {
        aspect-ratio: 1 / 1.08;
    }

    .discovery-story {
        padding-bottom: 60px;
    }

    .discovery-story__grid {
        gap: 35px;
    }

    .sustainability-story__lead {
        line-height: 1.75;
    }

    .category-product-explorer__tabs {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-product-explorer__tabs button {
        padding-inline: 9px;
        border-radius: 8px;
        font-size: 0.78rem;
    }

    .product-specs--editorial {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-certificates {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-gallery--slider .product-gallery__main {
        min-height: 0;
    }

    .product-gallery__thumb-row {
        grid-template-columns: 32px minmax(0, 1fr) 32px;
    }

    .gallery-nav {
        width: 32px;
        height: 32px;
    }

    .product-faq-section {
        gap: 30px;
    }

    .contact-info-panel {
        grid-column: auto;
        padding: 22px;
    }

    .contact-info-panel__row div {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .contact-info-panel__row a,
    .contact-info-panel__row strong {
        text-align: left;
    }
}

.home-slide__picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.home-slide__picture .home-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 720px) {
    .home-hero--framed {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
        border-radius: 0;
    }

    .home-hero--framed .home-hero__track,
    .home-hero--framed .home-slide {
        aspect-ratio: 9 / 8;
        border-radius: 0;
    }

    .home-slide__picture .home-slide__image {
        object-fit: cover;
    }
}

.home-slide__image--mobile-second{
    display:none !important;
}

@media (max-width:720px){

    .home-slide__image--desktop-second{
        display:none !important;
    }

    .home-slide__image--mobile-second{
        display:block !important;
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:contain;
        object-position:center;
    }

}

@media (max-width: 720px) {
    .home-hero.home-hero--framed {
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .home-hero.home-hero--framed .home-hero__track,
    .home-hero.home-hero--framed .home-slide {
        height: calc(100vw * 960 / 1080) !important;
        min-height: calc(100vw * 960 / 1080) !important;
        max-height: none !important;
        aspect-ratio: auto !important;
    }

    .home-hero.home-hero--framed .home-slide__image--mobile,
    .home-hero.home-hero--framed .home-slide__image--mobile-second {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        
    }
}

.catalog-filter-toggle {
    display: none;
}

@media (max-width: 720px) {

    .catalog-filter-toggle {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        padding: 10px 18px;
        border: 1px solid #2f302f;
        border-radius: 999px;
        color: #fff;
        background: #2f302f;
        font-weight: 600;
        cursor: pointer;
    }

    .catalog-filters {
        display: none !important;
        grid-template-columns: 1fr !important;
        gap: 12px;
        margin-bottom: 22px;
        padding: 18px;
        border: 1px solid #e1e4e1;
        border-radius: 14px;
        background: #f6f7f5;
    }

    .catalog-filters.is-open {
        display: grid !important;
    }

    .catalog-filters label,
    .catalog-filters select,
    .catalog-filters .button {
        width: 100%;
    }
}

@media (max-width: 720px) {

    .page-hero--catalog{
        padding-bottom: 16px !important;
        margin-bottom: 0 !important;
    }

    .catalog.section{
        padding-top: 8px !important;
    }

    .catalog-filter-toggle{
        margin-top: 0 !important;
        margin-bottom: 16px !important;
    }

}

@media (max-width: 720px) {
    .product-breadcrumb {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;

        width: 100%;
        max-width: 100%;

        gap: 8px;
        padding-bottom: 8px;

        white-space: nowrap;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .product-breadcrumb > * {
        flex: 0 0 auto;
    }

    .product-breadcrumb::-webkit-scrollbar {
        height: 5px;
    }

    .product-breadcrumb::-webkit-scrollbar-track {
        background: #eeeeee;
        border-radius: 20px;
    }

    .product-breadcrumb::-webkit-scrollbar-thumb {
        background: #777777;
        border-radius: 20px;
    }
}

#newsletterEmail[type="email"] {
    color: #3C3D3C !important;
}

.contact-page .contact-form-card input:not([type="checkbox"]),
.contact-page .contact-form-card textarea {
    color: #75778B;
}

.contact-page .contact-form-card input::placeholder,
.contact-page .contact-form-card textarea::placeholder {
    color: #75778B;
    opacity: 1;
}