:root {
    --color-navy: #0a2240;
    --color-navy-deep: #06182f;
    --color-gold: #aaa64f;
    --color-ink: #1c2430;
    --color-muted: #6f7781;
    --color-line: #e7e7e7;
    --color-soft: #f6f7f8;
    --color-white: #fff;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-card: 0 12px 35px rgba(10, 34, 64, .08);
    --container: 1200px;
    --header-height: 130px;
    --font-body: Arial, Helvetica, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body.site-body {
    margin: 0;
    color: var(--color-ink);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: clip;
}

.site-main {
    padding-top: var(--header-height);
}

body.menu-open,
body.filter-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    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,
h5,
h6 {
    margin: 0 0 .7em;
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.18;
}

p {
    margin: 0 0 1.35em;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.container--narrow {
    max-width: 860px;
}

.section {
    padding-block: 82px;
}

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

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

.skip-link {
    position: fixed;
    z-index: 10000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 4px;
}

.icon {
    width: 22px;
    height: 22px;
}

.icon-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
}

.button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 25px;
    overflow: hidden;
    border: 1px solid var(--color-navy);
    border-radius: 999px;
    color: #fff;
    background: var(--color-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.button::before {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -105%;
    left: 0;
    height: 115%;
    border-radius: 50% 50% 0 0;
    background: #000;
    content: "";
    transition: bottom .32s ease;
}

.button:hover::before,
.button:focus-visible::before {
    bottom: -8%;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.button--outline {
    color: var(--color-navy);
    background: #fff;
}

.button--outline:hover {
    color: #fff;
}

.button--light {
    border-color: #fff;
    color: var(--color-navy);
    background: #fff;
}

.button--light:hover {
    color: #fff;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 20px;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* Header */
.announcement {
    position: fixed;
    z-index: 1002;
    top: 0;
    right: 0;
    left: 0;
    height: 30px;
    overflow: hidden;
    color: #fff;
    background: var(--color-navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 30px;
    text-transform: uppercase;
}

.announcement__track {
    display: flex;
    width: max-content;
    transform: translateX(100vw);
    animation: marquee 25s linear infinite;
}

.announcement__track span {
    padding-inline: 50px;
    white-space: nowrap;
}

@keyframes marquee {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}

.site-header {
    position: fixed;
    z-index: 1000;
    top: 30px;
    right: 0;
    left: 0;
    height: 100px;
    border-bottom: 1px solid rgba(10, 34, 64, .08);
    background: rgba(255, 255, 255, .97);
    transition: box-shadow .25s ease, transform .25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 8px 30px rgba(10, 34, 64, .09);
}

.site-header__main {
    display: grid;
    height: 68px;
    grid-template-columns: 150px minmax(0, 1fr) 90px;
    align-items: center;
    gap: 16px;
}

.site-logo {
    display: flex;
    width: 120px;
    height: 64px;
    align-items: center;
}

.site-logo img {
    width: 115px;
    max-height: 62px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
}

.primary-nav a {
    position: relative;
    padding-block: 24px;
    color: #29313a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    background: var(--color-gold);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-switch {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
}

.language-switch img {
    width: 20px;
    border: 1px solid #e7e7e7;
}

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

.mobile-menu-close {
    display: none;
}

.category-nav-wrap {
    border-top: 1px solid var(--color-line);
}

.category-nav {
    display: flex;
    height: 32px;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 42px);
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav a {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: #454b52;
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
}

.category-nav a img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.category-nav a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 2px;
    background: var(--color-gold);
    content: "";
    transform: scaleX(0);
}

.category-nav a:hover::after,
.category-nav a.active::after {
    transform: scaleX(1);
}

.search-drawer {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    padding: 26px 0;
    border-top: 1px solid var(--color-line);
    background: #fff;
    box-shadow: 0 18px 32px rgba(10, 34, 64, .12);
}

.search-form {
    position: relative;
    display: flex;
}

.search-form input {
    width: 100%;
    height: 54px;
    padding: 0 60px 0 22px;
    border: 1px solid #dfe2e6;
    border-radius: 999px;
    outline: 0;
}

.search-form input:focus {
    border-color: var(--color-navy);
}

.search-form > button {
    position: absolute;
    top: 6px;
    right: 7px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--color-navy);
}

.live-search-results {
    position: absolute;
    z-index: 4;
    top: 61px;
    right: 20px;
    left: 20px;
    display: grid;
    max-height: 390px;
    overflow-y: auto;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .14);
}

.live-search-results:empty {
    display: none;
}

.live-search-results a {
    display: grid;
    min-height: 74px;
    padding: 9px 12px;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--color-line);
    font-weight: 600;
}

.live-search-results img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

/* Slider */
.slider-shell {
    position: relative;
}

.slider-track {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-y;
    cursor: grab;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
    user-select: none;
}

.slider-track img {
    user-select: none;
    -webkit-user-drag: none;
}

.hero-slider {
    width: min(calc(100% - 40px), 1440px);
    margin: 22px auto 0;
    overflow: hidden;
    border-radius: 14px;
    background: #eef0f2;
}

.hero-slide {
    display: block;
    flex: 0 0 100%;
    min-width: 100%;
    aspect-ratio: 16 / 5.3;
    scroll-snap-align: start;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(10, 34, 64, .18);
    border-radius: 50%;
    color: var(--color-navy);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 4px 16px rgba(10, 34, 64, .1);
    transform: translateY(-50%);
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.slider-arrow:hover {
    color: #fff;
    background: var(--color-navy);
    transform: translateY(-50%) scale(1.04);
}

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

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

.slider-dots {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 14px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.slider-dots button {
    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
    max-width: 6px;
    max-height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    line-height: 0;
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 0 0 1px rgba(10, 34, 64, .15);
}

.slider-dots button.active {
    width: 6px;
    border-radius: 50%;
    background: #fff;
}

.card-slider {
    margin-top: 30px;
}

.card-slider .slider-arrow--prev {
    left: -22px;
}

.card-slider .slider-arrow--next {
    right: -22px;
}

.product-slider {
    gap: 18px;
}

.product-slider .slider-item {
    flex: 0 0 calc((100% - 54px) / 4);
    scroll-snap-align: start;
}

/* Home */
.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
}

.product-card {
    min-width: 0;
}

.product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #f4f5f6;
}

.product-card__image::before {
    position: absolute;
    z-index: 0;
    right: 15%;
    bottom: 15%;
    width: 70%;
    height: 48%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170, 166, 79, .17), transparent 70%);
    content: "";
    opacity: 0;
    transform: scale(.7);
    transition: opacity .35s ease, transform .35s ease;
}

.product-card__image img {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    object-fit: contain;
    transition: opacity .35s ease, transform .45s ease;
}

.route-home .product-showcase .product-card__image img {
    padding: 0;
    transform: scale(1.18);
}

.product-card__secondary {
    opacity: 0;
}

.product-card:hover .product-card__primary {
    opacity: 0;
    transform: scale(.97);
}

.product-card:hover .product-card__secondary {
    opacity: 1;
    transform: scale(1.04);
}

.route-home .product-showcase .product-card:hover .product-card__primary {
    transform: scale(1.12);
}

.route-home .product-showcase .product-card:hover .product-card__secondary {
    transform: scale(1.24);
}

.product-card:hover .product-card__image::before {
    opacity: 1;
    transform: scale(1);
}

.product-card__action {
    position: absolute;
    z-index: 3;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--color-navy);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.product-card__action .icon {
    width: 18px;
    height: 18px;
}

.product-card:hover .product-card__action {
    opacity: 1;
    transform: translateY(0);
}

.product-card__body {
    padding: 17px 4px 5px;
    text-align: center;
}

.product-card__category {
    color: var(--color-muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 7px 0 0;
    font-size: 15px;
    line-height: 1.35;
}

.category-grid {
    display: grid;
    margin-top: 36px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    display: grid;
    min-height: 220px;
    overflow: hidden;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

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

.category-card__text {
    z-index: 2;
    padding: 28px 0 28px 28px;
}

.category-card h3 {
    margin-bottom: 5px;
    font-size: 19px;
}

.category-card span {
    color: var(--color-muted);
    font-size: 12px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.05);
    transition: transform .4s ease;
}

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

.serum-family {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 75px;
}

.serum-family__content h2 {
    max-width: 520px;
    font-size: clamp(32px, 4vw, 52px);
}

.serum-family__content p {
    max-width: 550px;
    color: var(--color-muted);
    font-size: 17px;
}

.serum-family__visual {
    position: relative;
    min-height: 510px;
}

.serum-family__visual img {
    position: absolute;
    width: 72%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.serum-family__visual img:first-child {
    top: 0;
    right: 0;
}

.serum-family__visual img:last-child {
    bottom: 0;
    left: 0;
}

.blog-grid,
.blog-archive-grid {
    display: grid;
    margin-top: 36px;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.blog-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 5px 22px rgba(10, 34, 64, .06);
}

.blog-card__image {
    display: block;
    aspect-ratio: 1.25 / 1;
    overflow: hidden;
    background: #eceff1;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

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

.blog-card__body {
    padding: 22px;
}

.blog-card time {
    color: var(--color-muted);
    font-size: 11px;
}

.blog-card h2,
.blog-card h3 {
    margin: 9px 0 14px;
    font-size: 18px;
    line-height: 1.35;
}

.blog-card p {
    color: var(--color-muted);
    font-size: 14px;
}

/* Archives */
.page-hero {
    padding-block: 85px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6, 24, 47, .96), rgba(10, 34, 64, .74)),
        url("/assets/img/uploads/2025/07/serum-ailesi-doku.jpg") center / cover;
    text-align: center;
}

.page-hero--compact {
    padding-block: 68px;
}

.page-hero h1 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(38px, 5vw, 62px);
}

.page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
}

.archive-toolbar {
    display: flex;
    min-height: 95px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--color-line);
}

.filter-toggle .icon {
    width: 18px;
    height: 18px;
}

.archive-toolbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--color-muted);
    font-size: 13px;
}

.sort-form select {
    min-width: 145px;
    height: 43px;
    padding: 0 35px 0 14px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: #fff;
}

.archive-layout {
    padding-block: 40px 90px;
}

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

.filter-panel {
    position: fixed;
    z-index: 1200;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(390px, 90vw);
    padding: 25px 28px 40px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 22px 0 60px rgba(10, 34, 64, .18);
}

.filter-panel[hidden] {
    display: none !important;
}

.filter-backdrop,
.filter-backdrop:hover,
.filter-backdrop:focus,
.filter-backdrop:focus-visible,
.filter-backdrop:active {
    position: fixed;
    z-index: 1190;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none !important;
    appearance: none;
    cursor: default;
}

body.filter-open .filter-backdrop {
    display: block;
}

.filter-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-line);
}

.filter-panel__head h2 {
    margin: 0;
    font-size: 24px;
}

.filter-panel fieldset {
    margin: 25px 0;
    padding: 0;
    border: 0;
}

.filter-panel legend,
.filter-search span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.filter-search {
    display: block;
    margin-top: 22px;
}

.filter-search input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--color-line);
    border-radius: 6px;
}

.radio-label {
    display: flex;
    padding-block: 5px;
    align-items: center;
    gap: 9px;
    color: #4d555e;
    font-size: 13px;
}

.filter-panel .button {
    width: 100%;
}

.filter-panel .text-link {
    display: flex;
    margin-top: 18px;
    justify-content: center;
}

.pagination {
    display: flex;
    margin-top: 55px;
    justify-content: center;
    gap: 7px;
}

.pagination a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: 50%;
    font-weight: 600;
}

.pagination a.active,
.pagination a:hover {
    border-color: var(--color-navy);
    color: #fff;
    background: var(--color-navy);
}

.empty-state,
.not-found {
    padding-block: 110px;
    text-align: center;
}

.not-found__code {
    display: block;
    color: var(--color-line);
    font-size: clamp(100px, 20vw, 220px);
    font-weight: 800;
    line-height: .8;
}

/* Product detail */
.breadcrumb-scroll {
    overflow-x: auto;
    scrollbar-width: thin;
}

.breadcrumbs {
    display: flex;
    min-width: max-content;
    padding-block: 22px;
    align-items: center;
    gap: 9px;
    color: var(--color-muted);
    font-size: 12px;
    white-space: nowrap;
}

.breadcrumbs a:hover {
    color: var(--color-navy);
}

.product-detail {
    display: grid;
    padding-block: 25px 75px;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: start;
    gap: 16px;
}

.route-product .site-main {
    background: #f4f6f8;
}

.product-gallery {
    display: grid;
    position: sticky;
    top: calc(var(--header-height) + 18px);
    min-width: 0;
    padding: 20px;
    border-radius: var(--radius-md);
    background: #fff;
    grid-template-areas: "thumbs stage";
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
}

.product-gallery__stage {
    position: relative;
    grid-area: stage;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: #fff;
}

.product-gallery__stage > img {
    width: 100%;
    height: 100%;
    padding: 4%;
    object-fit: contain;
}

.product-gallery__main-trigger {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.product-gallery__main-trigger > img {
    width: 100%;
    height: 100%;
    padding: 4%;
    object-fit: contain;
}

.product-image-modal {
    position: fixed;
    z-index: 3000;
    inset: 0;
    display: grid;
    padding: 28px;
    place-items: center;
}

.product-image-modal[hidden] {
    display: none !important;
}

.product-image-modal__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: 0;
    background: rgba(6, 18, 32, .82);
}

.product-image-modal__content {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(920px, 92vw);
    height: min(820px, 88vh);
    padding: 28px;
    place-items: center;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
}

.product-image-modal__content > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image-modal__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    color: #fff;
    background: var(--color-navy);
}

body.product-modal-open {
    overflow: hidden;
}

.product-gallery__zoom {
    position: absolute;
    z-index: 4;
    inset: 0;
    border-radius: inherit;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: 220%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease;
}

.product-gallery__stage:hover .product-gallery__zoom {
    opacity: 1;
}

.product-gallery__thumbs {
    display: flex;
    min-height: 0;
    margin: 0;
    max-height: 254px;
    padding-right: 4px;
    flex-direction: column;
    gap: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
}

.product-gallery__thumb-rail {
    display: flex;
    min-width: 0;
    grid-area: thumbs;
    align-self: center;
    flex-direction: column;
    gap: 7px;
}

.product-gallery__thumb-control {
    display: grid;
    width: 100%;
    height: 28px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--color-line);
    border-radius: 7px;
    color: var(--color-navy);
    background: #fff;
}

.product-gallery__thumb-control:hover {
    color: #fff;
    background: var(--color-navy);
}

.product-gallery__thumb-control .icon {
    width: 16px;
    height: 16px;
}

.product-gallery__thumbs button {
    flex: 0 0 78px;
    height: 78px;
    padding: 4px;
    border: 1px solid var(--color-line);
    border-radius: 9px;
    background: #fff;
    scroll-snap-align: start;
}

.product-gallery__thumbs button.active {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold);
}

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

.product-summary {
    min-width: 0;
    padding: 32px;
    border-radius: var(--radius-md);
    background: #fff;
}

.product-summary h1 {
    margin-bottom: 22px;
    font-size: clamp(30px, 3.2vw, 45px);
}

.product-summary__excerpt {
    color: #515961;
    font-size: 16px;
}

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

.product-sku {
    margin-block: 25px;
    padding-block: 14px;
    border-block: 1px solid var(--color-line);
}

.product-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.product-attributes div {
    display: flex;
    min-height: 48px;
    padding: 10px 13px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 6px;
    background: var(--color-soft);
    font-size: 12px;
}

.product-attributes dt {
    font-weight: 700;
}

.product-attributes dd {
    margin: 0;
    color: var(--color-muted);
    text-align: right;
}

.product-quick-info {
    display: flex;
    margin-top: 30px;
    overflow-x: auto;
    border-bottom: 1px solid var(--color-line);
    scrollbar-width: thin;
}

.product-quick-info button {
    position: relative;
    flex: 1 0 auto;
    min-width: 135px;
    padding: 15px 12px;
    border: 0;
    color: var(--color-muted);
    background: transparent;
    font-size: 13px;
    font-weight: 600;
}

.product-quick-info button::after {
    position: absolute;
    right: 8px;
    bottom: -1px;
    left: 8px;
    height: 2px;
    background: var(--color-navy);
    content: "";
    transform: scaleX(0);
}

.product-quick-info button.active {
    color: var(--color-navy);
}

.product-quick-info button.active::after {
    transform: scaleX(1);
}

.product-tab-panel {
    padding-top: 25px;
    font-size: 14px;
}

.product-tab-panel > :first-child {
    margin-top: 0 !important;
}

.product-tab-panel img:only-child,
.product-tab-panel p:empty,
.product-tab-panel > img[width="1"] {
    display: none;
}

.product-accordion {
    margin-top: 28px;
    border-top: 1px solid var(--color-line);
}

.product-accordion__item {
    border-bottom: 1px solid var(--color-line);
}

.product-accordion__button {
    display: flex;
    width: 100%;
    min-height: 58px;
    padding: 14px 2px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    color: var(--color-ink);
    background: transparent;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.product-accordion__button .icon {
    flex: 0 0 auto;
    transition: transform .2s ease;
}

.product-accordion__button.active .icon {
    transform: rotate(180deg);
}

.product-accordion__panel {
    padding: 0 0 24px;
    font-size: 13px;
}

.product-accordion__panel[hidden] {
    display: none !important;
}

.product-accordion__panel > :first-child {
    margin-top: 0 !important;
}

.section-divider {
    display: flex;
    height: 42px;
    align-items: center;
}

.section-divider::before,
.section-divider::after {
    height: 1px;
    flex: 1;
    background: var(--color-line);
    content: "";
}

.section-divider span {
    width: 42px;
    height: 42px;
    background: url("/assets/img/uploads/2025/07/cropped-favicon.png") center / 30px no-repeat;
    filter: grayscale(1);
    opacity: .55;
}

.product-long-content {
    margin-bottom: 55px;
    padding: 30px 34px 65px;
    border-radius: var(--radius-md);
    background: #fff;
}

.product-long-content > * {
    max-width: 100%;
}

.related-products {
    background: #fff;
    border-top: 1px solid var(--color-line);
}

/* Long WordPress content helpers */
.content-prose {
    color: #424a53;
}

.content-prose h2 {
    margin-top: 1.5em;
    font-size: clamp(24px, 2.8vw, 36px);
}

.content-prose h3 {
    margin-top: 1.5em;
    font-size: clamp(20px, 2.2vw, 29px);
}

.content-prose h4 {
    margin-top: 1.4em;
    font-size: 20px;
}

.content-prose a {
    color: var(--color-navy);
    font-weight: 600;
}

.content-prose img {
    border-radius: 8px;
}

.content-prose table {
    width: 100%;
    border-collapse: collapse;
}

.content-prose th,
.content-prose td {
    padding: 10px;
    border: 1px solid var(--color-line);
}

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

.col-12 {
    width: 100%;
}

.col-6 {
    width: 50%;
}

.col-4 {
    width: 33.333%;
}

.col-3 {
    width: 25%;
}

.col-2 {
    width: 16.666%;
}

.col-five {
    width: 20%;
}

.col-eight {
    width: 80%;
}

.col-sm-12 {
    width: 100%;
}

.d-flex {
    display: flex;
}

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

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

.justify-content-evenly,
.justify-content-md-evenly {
    justify-content: space-evenly;
}

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

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

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

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

.text-white {
    color: #fff !important;
}

.bg-light {
    background: #f6f7f8;
}

.bg-gray {
    background: #eceeef;
}

.bg-center {
    background-position: center !important;
}

.bg-cover {
    background-size: cover !important;
}

.border-round,
.border-rounded {
    overflow: hidden;
    border-radius: 12px;
}

.border {
    border: 1px solid var(--color-line);
}

.border-left {
    border-left: 1px solid var(--color-line);
}

.border-right {
    border-right: 1px solid var(--color-line);
}

.w-100 {
    width: 100%;
}

.w-75 {
    width: 75%;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

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

.fs-1 {
    font-size: clamp(30px, 4vw, 48px);
}

.fs-2 {
    font-size: clamp(26px, 3vw, 38px);
}

.fs-4 {
    font-size: clamp(18px, 2vw, 25px);
}

.fs-5 {
    font-size: 15px;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.px-0 {
    padding-inline: 0;
}

.px-1 {
    padding-inline: 1rem;
}

.px-2 {
    padding-inline: 2rem;
}

.px-3 {
    padding-inline: 3rem;
}

.px-4 {
    padding-inline: 4rem;
}

.px-5 {
    padding-inline: 5rem;
}

.pt-1 {
    padding-top: 1rem;
}

.pt-2 {
    padding-top: 2rem;
}

.my-1 {
    margin-block: 1rem;
}

.my-2 {
    margin-block: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.my-10px {
    margin-block: 10px;
}

.m-0 {
    margin: 0 !important;
}

.mx-auto,
.m-auto {
    margin-inline: auto;
}

.my-auto {
    margin-block: auto;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.product-long-content .row {
    min-width: 0;
}

.product-long-content .row > [class*="col-"] {
    min-width: 0;
}

.product-long-content h2,
.product-long-content h3,
.product-long-content h4 {
    line-height: 1.25;
}

.product-long-content .fs-1 {
    font-size: clamp(30px, 4vw, 48px);
}

.product-long-content .fs-2 {
    font-size: clamp(26px, 3vw, 38px);
}

.product-long-content .fs-4 {
    font-size: clamp(18px, 2vw, 25px);
}

.product-long-content .fs-5 {
    font-size: 15px;
}

.product-long-content .rsp-text {
    font-size: clamp(13px, 1.4vw, 18px);
}

.product-long-content .bg-yellow-title {
    min-height: 50px;
    background: url("/assets/img/uploads/2025/09/yellow-title.png") center / contain no-repeat;
}

@media (min-width: 769px) {
    .col-md-2 {
        width: 16.666%;
    }

    .col-md-4 {
        width: 33.333%;
    }

    .col-md-5 {
        width: 41.666%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-8 {
        width: 66.666%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.333%;
    }

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

    .px-md-1 {
        padding-inline: 1rem;
    }

    .px-md-2 {
        padding-inline: 2rem;
    }

    .px-md-3 {
        padding-inline: 3rem;
    }

    .px-md-4 {
        padding-inline: 4rem;
    }

    .px-md-5 {
        padding-inline: 5rem;
    }

    .pt-md-2 {
        padding-top: 2rem;
    }

    .mt-md-1 {
        margin-top: 1rem;
    }

    .my-md-auto {
        margin-block: auto;
    }

    .my-md-0 {
        margin-block: 0;
    }

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

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

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

/* Blog and pages */
.blog-archive-grid {
    grid-template-columns: repeat(3, 1fr);
}

.post-header {
    padding-block: 80px 40px;
    text-align: center;
}

.post-header h1 {
    font-size: clamp(38px, 5vw, 64px);
}

.post-header time {
    color: var(--color-muted);
}

.post-hero-image {
    max-height: 680px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.post-hero-image img {
    width: 100%;
    max-height: 680px;
    object-fit: cover;
}

.post-content {
    padding-block: 65px 55px;
    font-size: 17px;
}

.post-content h2,
.post-content h3 {
    scroll-margin-top: 140px;
}

.post-content ul a,
.post-content ol a {
    color: #3e3d3d;
    text-decoration: none;
}

.blog-product-slider {
    margin-block: 38px;
    padding-inline: 2px;
}

.blog-product-slider .slider-track {
    gap: 16px;
}

.blog-product-slide {
    min-width: 0;
    flex: 0 0 calc((100% - 16px) / 2);
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: 12px;
    background: #fff;
    scroll-snap-align: start;
}

.blog-product-slide > a[aria-label] {
    display: flex;
    aspect-ratio: 1 / 1;
    padding: 14px;
    align-items: center;
    justify-content: center;
    background: var(--color-soft);
}

.blog-product-slide > a[aria-label] img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
}

.post-content .blog-product-slide h3 {
    margin: 0;
    padding: 15px;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
}

.blog-product-slider .slider-arrow--prev {
    left: -22px;
}

.blog-product-slider .slider-arrow--next {
    right: -22px;
}

.post-share {
    display: flex;
    padding-bottom: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--color-line);
}

.post-share > span {
    padding-top: 24px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.post-share__icons {
    display: flex;
    padding-top: 24px;
    gap: 9px;
}

.post-share__icons a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    transition: transform .2s ease, filter .2s ease;
}

.post-share__icons a:hover {
    filter: brightness(.88);
    transform: translateY(-2px);
}

.post-share__icons .icon {
    width: 18px;
    height: 18px;
}

.post-share__icons .social-facebook {
    background: #1877f2;
}

.post-share__icons .social-twitter {
    background: #111;
}

.post-share__icons .social-pinterest {
    background: #e60023;
}

.post-share__icons .social-linkedin {
    background: #0a66c2;
}

.post-share__icons .social-telegram {
    background: #229ed9;
}

.page-content {
    max-width: 1100px;
    font-size: 16px;
}

.page-content > img {
    margin-block: 30px;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 28px;
}

.contact-card,
.contact-form-card {
    padding: 48px;
    border-radius: var(--radius-md);
}

.contact-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--color-navy);
}

.contact-card h2 {
    color: #fff;
    font-size: 32px;
}

.contact-card p {
    color: rgba(255, 255, 255, .72);
}

.contact-card > a {
    display: flex;
    margin-top: 22px;
    align-items: center;
    gap: 12px;
    font-size: 21px;
    font-weight: 700;
}

.contact-card__dots {
    position: absolute;
    top: 38px;
    right: 36px;
    width: 45px;
    height: 85px;
    opacity: .55;
    background: radial-gradient(circle, #fff 2px, transparent 3px) 0 0 / 15px 15px;
}

.contact-form-card {
    border: 1px solid var(--color-line);
}

.contact-form-card h2 {
    font-size: 32px;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form label,
.newsletter-form label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dfe2e6;
    border-radius: 7px;
    background: #fff;
    outline: 0;
}

.newsletter-form input[type="email"] {
    color: var(--color-ink);
    caret-color: var(--color-ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    border-color: var(--color-navy);
}

.contact-form textarea {
    resize: vertical;
}

.form-message {
    margin: 0;
    color: var(--color-gold);
    font-weight: 600;
}

.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.pr-button {
    display: flex;
    min-height: 48px;
    margin-top: 28px;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    background: #e4e4e4;
    font-size: 16px;
    font-weight: 700;
}

.social-links {
    display: flex;
    margin-top: 22px;
    gap: 8px;
}

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

.social-links .icon {
    width: 17px;
    height: 17px;
}

.social-links--dark a {
    color: #fff;
}

.contact-locations .section-heading {
    margin-bottom: 34px;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.location-card {
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.location-card__body {
    padding: 28px 30px 16px;
}

.location-card__body h2 {
    margin-bottom: 8px;
    font-size: 26px;
}

.location-card iframe {
    display: block;
    width: 100%;
    height: 330px;
    border: 0;
}

.pr-application-form {
    max-width: 760px;
    margin-inline: auto;
    padding: 45px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* Footer */
.site-footer {
    position: relative;
    color: rgba(255, 255, 255, .72);
    background:
        linear-gradient(rgba(6, 24, 47, .97), rgba(6, 24, 47, .97)),
        url("/assets/img/uploads/2025/07/serum-ailesi-doku.jpg") center / cover;
}

.footer-grid {
    display: grid;
    padding-block: 72px 58px;
    grid-template-columns: 1.25fr .72fr .78fr 1.5fr;
    gap: 50px;
}

.footer-brand > img {
    width: 150px;
    height: 95px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    margin-top: 18px;
    color: #fff;
    font-weight: 600;
}

.footer-brand ul {
    margin: 26px 0 0;
    padding-left: 18px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav h2,
.footer-newsletter h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 16px;
}

.footer-nav a {
    font-size: 13px;
}

.footer-newsletter h2 {
    font-size: 24px;
}

.newsletter-form {
    display: grid;
    gap: 14px;
}

.check-label {
    grid-template-columns: 18px 1fr;
    align-items: start;
    font-weight: 400 !important;
}

.check-label input {
    margin-top: 4px;
}

.site-footer .footer-kvkk-link {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom {
    padding-block: 23px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 12px;
}

.back-to-top {
    position: fixed;
    z-index: 800;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

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

.back-to-top > .icon {
    position: absolute;
    width: 19px;
    height: 19px;
}

.back-to-top__ring {
    width: 50px;
    height: 50px;
    transform: rotate(-90deg);
}

.back-to-top__ring circle {
    fill: none;
    stroke: #e2e2e2;
    stroke-width: 1.5;
}

.back-to-top__ring .progress {
    stroke: var(--color-navy);
    stroke-dasharray: 132;
    stroke-dashoffset: 132;
    transition: stroke-dashoffset .1s linear;
}

@media (max-width: 1024px) {
    :root {
        --container: 940px;
    }

    .site-header__main {
        grid-template-columns: 125px minmax(0, 1fr) 78px;
        gap: 10px;
    }

    .primary-nav {
        gap: 12px;
    }

    .primary-nav a {
        font-size: 11.5px;
    }

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

    .product-slider .slider-item {
        flex-basis: calc((100% - 36px) / 3);
    }

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

    .serum-family {
        gap: 35px;
    }

    .product-detail {
        gap: 35px;
    }

    .footer-grid {
        grid-template-columns: 1.1fr .7fr .7fr 1.3fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 98px;
    }

    body.site-body {
        font-size: 14px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding-block: 56px;
    }

    .announcement {
        height: 27px;
        line-height: 27px;
    }

    .site-header {
        top: 27px;
        height: 71px;
    }

    .site-header__main {
        height: 71px;
        grid-template-columns: 42px 1fr auto;
        gap: 7px;
    }

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

    .site-logo {
        width: 105px;
        height: 65px;
        margin-inline: auto;
    }

    .site-logo img {
        width: 102px;
        max-height: 58px;
    }

    .primary-nav {
        position: fixed;
        z-index: 1005;
        top: 0;
        bottom: 0;
        left: 0;
        display: flex;
        width: min(360px, 88vw);
        padding: 100px 30px 35px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #fff;
        box-shadow: 18px 0 55px rgba(10, 34, 64, .2);
        transform: translateX(-105%);
        transition: transform .3s ease;
    }

    .primary-nav::before {
        position: absolute;
        top: 30px;
        left: 30px;
        width: 100px;
        height: 55px;
        background: url("/assets/img/uploads/2025/07/idea-derma-logo.png") center / contain no-repeat;
        content: "";
    }

    .mobile-menu-close {
        position: absolute;
        top: 31px;
        right: 24px;
        display: grid;
        width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        place-items: center;
        border: 1px solid var(--color-line);
        border-radius: 50%;
        color: var(--color-navy);
        background: #fff;
    }

    .mobile-menu-close .icon {
        width: 20px;
        height: 20px;
    }

    .primary-nav a {
        padding-block: 16px;
        border-bottom: 1px solid var(--color-line);
        font-size: 15px;
    }

    .primary-nav a::after {
        display: none;
    }

    .menu-open .primary-nav {
        transform: translateX(0);
    }

    .category-nav-wrap {
        display: none;
    }

    .header-actions {
        gap: 0;
    }

    .header-actions .icon-button,
    .language-switch {
        width: 35px;
        height: 35px;
    }

    .language-switch img {
        width: 18px;
    }

    .search-drawer {
        top: 71px;
    }

    .hero-slider {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
    }

    .hero-slide {
        aspect-ratio: 1 / 1;
    }

    .hero-slide img {
        object-fit: cover;
    }

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

    .hero-slider .slider-arrow--prev {
        left: 8px;
    }

    .hero-slider .slider-arrow--next {
        right: 8px;
    }

    .card-slider .slider-arrow--prev {
        left: -5px;
    }

    .card-slider .slider-arrow--next {
        right: -5px;
    }

    .product-slider .slider-item {
        flex-basis: calc((100% - 14px) / 2);
    }

    .route-home .card-slider .slider-track {
        align-items: stretch;
    }

    .route-home .card-slider .product-card {
        display: flex;
        overflow: hidden;
        min-height: 100%;
        flex-direction: column;
        border: 1px solid var(--color-line);
        border-radius: 12px;
        background: #fff;
    }

    .route-home .card-slider .product-card__body {
        display: flex;
        min-height: 92px;
        padding: 13px 12px 16px;
        flex: 1;
        flex-direction: column;
        justify-content: flex-start;
    }

    .route-home .card-slider .product-card h3 {
        margin: 6px 0 0;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .product-card__action {
        width: 32px;
        height: 32px;
        opacity: 1;
        transform: none;
    }

    .product-card h3 {
        font-size: 13px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .category-card {
        min-height: 185px;
        grid-template-columns: 1fr;
        align-content: space-between;
    }

    .category-card__text {
        padding: 18px 18px 0;
        text-align: center;
    }

    .category-card h3 {
        font-size: 15px;
    }

    .category-card img {
        height: 120px;
    }

    .serum-family {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .serum-family__visual {
        min-height: 410px;
    }

    .blog-grid,
    .blog-archive-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 12px;
    }

    .blog-card__body {
        padding: 16px;
    }

    .blog-card h2,
    .blog-card h3 {
        font-size: 15px;
    }

    .archive-toolbar {
        min-height: 78px;
    }

    .archive-toolbar__right > span {
        display: none;
    }

    .product-detail {
        padding-block: 10px 55px;
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .product-detail > *,
    .product-gallery,
    .product-summary {
        width: 100%;
        min-width: 0;
    }

    .product-gallery {
        display: block;
        position: static;
        overflow: hidden;
    }

    .product-gallery__stage {
        width: 100%;
    }

    .product-gallery__thumbs {
        max-height: none;
        margin: 0;
        padding: 0 0 8px;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }

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

    .product-gallery__thumb-control {
        width: 32px;
        height: 65px;
    }

    .product-gallery__thumb-control .icon {
        transform: rotate(-90deg);
    }

    .product-summary h1 {
        font-size: 30px;
    }

    .product-gallery__zoom {
        display: none;
    }

    .product-attributes {
        grid-template-columns: 1fr 1fr;
    }

    .product-quick-info {
        margin-right: -14px;
        margin-left: -14px;
    }

    .product-quick-info button {
        min-width: 145px;
    }

    .blog-product-slide {
        flex-basis: calc((100% - 14px) / 2);
    }

    .blog-product-slider .slider-arrow--prev {
        left: -5px;
    }

    .blog-product-slider .slider-arrow--next {
        right: -5px;
    }

    .product-long-content [class*="col-md-"] {
        width: 100%;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .contact-card,
    .contact-form-card {
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 25px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .hero-slide img {
        object-position: center;
    }

    .product-slider .slider-item {
        flex-basis: 77%;
    }

    .blog-product-slide {
        flex-basis: 78%;
    }

    .product-grid,
    .blog-grid,
    .blog-archive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .category-card__text {
        padding-inline: 8px;
    }

    .category-card h3 {
        font-size: 14px;
    }

    .serum-family__visual {
        min-height: 300px;
    }

    .product-attributes,
    .form-row {
        grid-template-columns: 1fr;
    }

    .product-gallery__thumbs button {
        flex-basis: 65px;
        height: 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: auto;
    }

    .footer-brand > img {
        width: 130px;
    }
}

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

.hero-slide {
    position: relative;
}

.hero-slide > a,
.hero-slide .slider-item__link {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.hero-slide > a picture,
.hero-slide > a img,
.hero-slide .slider-item__link picture,
.hero-slide .slider-item__link img {
    width: 100%;
    height: 100%;
}

.hero-slide > a img,
.hero-slide .slider-item__link img {
    object-fit: cover;
    pointer-events: none;
}
