:root {
	--rederma-ink: #182f37;
	--rederma-ocean: #1f3d57;
	--rederma-mist: #5f8589;
	--rederma-sage: #88a6aa;
	--rederma-cloud: #edf2f1;
	--rederma-paper: #fbfcfb;
	--rederma-border: rgba(24, 47, 55, 0.12);
	--rederma-border-strong: rgba(24, 47, 55, 0.2);
	--rederma-shadow: 0 28px 70px rgba(24, 47, 55, 0.12);
	--rederma-shadow-strong: 0 28px 90px rgba(24, 47, 55, 0.18);
	--rederma-radius: 28px;
	--rederma-radius-lg: 36px;
	--rederma-shell: min(1180px, calc(100vw - 40px));
	--rederma-header-height: 96px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background:
		radial-gradient(circle at top left, rgba(136, 166, 170, 0.2), transparent 28%),
		radial-gradient(circle at right 14%, rgba(31, 61, 87, 0.08), transparent 18%),
		linear-gradient(180deg, #fdfefe 0%, #f4f8f7 52%, #fcfdfd 100%);
	color: var(--rederma-ink);
	font-family: "Poppins", sans-serif;
	line-height: 1.7;
	margin: 0;
}

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

body.admin-bar .rederma-site-header {
	top: 32px;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--rederma-ink);
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.08;
	margin: 0;
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin: 0 0 1rem;
	padding-left: 1.2rem;
}

.site,
.site-content,
.ast-container,
.entry-content {
	margin: 0;
	padding: 0;
}

.rederma-shell {
	margin: 0 auto;
	width: var(--rederma-shell);
}

.rederma-main {
	overflow: clip;
	padding-top: calc(var(--rederma-header-height) + 28px);
	position: relative;
}

.rederma-page .entry-content {
	margin: 0;
}

.rederma-kicker {
	align-items: center;
	color: var(--rederma-ocean);
	display: inline-flex;
	font-size: 0.8rem;
	font-weight: 800;
	gap: 12px;
	letter-spacing: 0.16em;
	margin-bottom: 18px;
	text-transform: uppercase;
}

.rederma-kicker::before {
	background: linear-gradient(90deg, var(--rederma-mist), transparent);
	border-radius: 999px;
	content: "";
	height: 1px;
	width: 56px;
}

.rederma-kicker--light {
	color: rgba(255, 255, 255, 0.86);
}

.rederma-kicker--light::before {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent);
}

.rederma-button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.96rem;
	font-weight: 700;
	justify-content: center;
	min-height: 54px;
	padding: 0 26px;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.rederma-button:hover,
.rederma-button:focus-visible {
	transform: translateY(-2px);
}

.rederma-button--primary {
	background: linear-gradient(135deg, var(--rederma-ink), var(--rederma-ocean));
	box-shadow: 0 18px 40px rgba(24, 47, 55, 0.2);
	color: #fff;
}

.rederma-button--secondary {
	background: rgba(255, 255, 255, 0.78);
	border-color: var(--rederma-border);
	color: var(--rederma-ink);
}

.rederma-button--light {
	background: #fff;
	color: var(--rederma-ink);
}

.rederma-button--outline-light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.rederma-inline-link {
	align-items: center;
	color: var(--rederma-ocean);
	display: inline-flex;
	font-weight: 700;
	gap: 10px;
}

.rederma-inline-link::after {
	content: "->";
	transition: transform 0.2s ease;
}

.rederma-inline-link:hover::after {
	transform: translateX(3px);
}

.rederma-site-header {
	inset: 0 0 auto;
	padding: 18px 0;
	position: fixed;
	transition: background 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
	z-index: 100;
}

.rederma-site-header.is-scrolled,
body:not(.home) .rederma-site-header {
	background: rgba(250, 252, 251, 0.84);
	backdrop-filter: blur(18px);
	box-shadow: 0 16px 40px rgba(24, 47, 55, 0.08);
}

.rederma-header-row {
	align-items: center;
	display: grid;
	grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) auto;
	gap: 22px;
}

.rederma-brand {
	align-items: center;
	display: inline-flex;
}

.rederma-brand--lockup {
	gap: 14px;
}

.rederma-brand__mark {
	align-items: center;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(24, 47, 55, 0.1);
	border-radius: 20px;
	display: inline-flex;
	flex: 0 0 62px;
	height: 62px;
	justify-content: center;
	overflow: hidden;
	padding: 4px;
	width: 62px;
}

.rederma-brand__image {
	border-radius: 16px;
	height: 100%;
	object-fit: cover;
	object-position: center 22%;
	width: 100%;
}

.rederma-brand--text {
	flex-direction: column;
	gap: 3px;
	line-height: 1;
}

.rederma-brand__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.rederma-brand__title {
	font-family: "Poppins", sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1;
}

.rederma-brand__tag {
	color: rgba(24, 47, 55, 0.66);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.rederma-primary-nav {
	justify-self: center;
}

.rederma-menu,
.rederma-footer-menu {
	display: flex;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rederma-menu a,
.rederma-footer-menu a {
	font-size: 0.95rem;
	font-weight: 700;
}

.rederma-menu .current-menu-item a {
	color: var(--rederma-ocean);
}

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

.rederma-language-switcher {
	flex-shrink: 0;
	position: relative;
}

.rederma-language-switcher__toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(24, 47, 55, 0.08);
	border-radius: 999px;
	box-shadow: 0 16px 34px rgba(24, 47, 55, 0.12);
	color: var(--rederma-ink);
	cursor: pointer;
	display: inline-flex;
	gap: 10px;
	height: 46px;
	justify-content: center;
	min-width: 112px;
	padding: 0 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rederma-language-switcher__toggle:hover,
.rederma-language-switcher__toggle:focus-visible {
	border-color: rgba(24, 47, 55, 0.18);
	box-shadow: 0 20px 34px rgba(24, 47, 55, 0.16);
	transform: translateY(-1px);
}

.rederma-language-switcher__value {
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rederma-language-switcher__caret {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 6px solid var(--rederma-ocean);
	display: block;
	transition: transform 0.2s ease;
}

.rederma-language-switcher.is-open .rederma-language-switcher__caret {
	transform: rotate(180deg);
}

.rederma-language-switcher__menu {
	background: rgba(251, 252, 251, 0.98);
	border: 1px solid rgba(24, 47, 55, 0.08);
	border-radius: 22px;
	box-shadow: 0 28px 54px rgba(24, 47, 55, 0.18);
	display: grid;
	gap: 6px;
	min-width: 220px;
	opacity: 0;
	padding: 10px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: calc(100% + 10px);
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease;
	z-index: 30;
}

.rederma-language-switcher.is-open .rederma-language-switcher__menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.rederma-language-switcher__link {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 16px;
	color: var(--rederma-ink);
	display: grid;
	font-size: 0.88rem;
	font-weight: 700;
	gap: 10px;
	grid-template-columns: 22px minmax(0, 1fr) auto;
	min-height: 48px;
	padding: 0 12px;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rederma-language-switcher__link:hover,
.rederma-language-switcher__link:focus-visible {
	background: rgba(102, 136, 143, 0.1);
	border-color: rgba(24, 47, 55, 0.08);
	transform: translateY(-1px);
}

.rederma-language-switcher__link.is-current {
	background: rgba(102, 136, 143, 0.14);
	border-color: rgba(24, 47, 55, 0.08);
}

.rederma-language-switcher__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rederma-language-switcher__code {
	color: var(--rederma-ocean);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.rederma-language-switcher__flag {
	border-radius: 999px;
	box-shadow: 0 0 0 1px rgba(24, 47, 55, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.32);
	display: inline-flex;
	height: 18px;
	overflow: hidden;
	width: 18px;
}

.rederma-language-switcher__flag--tr {
	background: linear-gradient(135deg, #d62828, #c1121f);
}

.rederma-language-switcher__flag--en {
	background: linear-gradient(135deg, #1d4ed8 0%, #1d4ed8 45%, #f8fafc 45%, #f8fafc 55%, #dc2626 55%, #dc2626 100%);
}

.rederma-language-switcher__flag--ko {
	background: linear-gradient(135deg, #f8fafc 0%, #f8fafc 48%, #dc2626 48%, #dc2626 64%, #1d4ed8 64%, #1d4ed8 100%);
}

.rederma-language-switcher__flag--ar {
	background: linear-gradient(180deg, #16a34a 0%, #16a34a 50%, #f8fafc 50%, #f8fafc 100%);
}

.rederma-language-switcher__flag--es {
	background: linear-gradient(180deg, #c1121f 0%, #c1121f 28%, #f4b400 28%, #f4b400 72%, #c1121f 72%, #c1121f 100%);
}

.rederma-translate-host,
.goog-te-banner-frame,
.skiptranslate {
	height: 1px !important;
	left: -9999px !important;
	opacity: 0 !important;
	overflow: hidden !important;
	position: absolute !important;
	top: auto !important;
	width: 1px !important;
}

body {
	top: 0 !important;
}

.goog-te-gadget {
	color: transparent !important;
	font-size: 0 !important;
}

.goog-logo-link,
.goog-te-gadget span {
	display: none !important;
}

.rederma-header-phone {
	color: var(--rederma-ink);
	font-size: 0.92rem;
	font-weight: 700;
}

.rederma-menu-toggle,
.rederma-nav-close {
	background: transparent;
	border: 0;
	cursor: pointer;
	display: none;
	padding: 0;
}

.rederma-menu-toggle {
	align-items: center;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	min-height: 48px;
	min-width: 48px;
}

.rederma-menu-toggle span,
.rederma-nav-close span {
	background: var(--rederma-ink);
	border-radius: 999px;
	display: block;
	height: 2px;
	width: 24px;
}

.rederma-nav-close {
	height: 36px;
	position: relative;
	width: 36px;
}

.rederma-nav-close span {
	left: 6px;
	position: absolute;
	top: 17px;
	width: 22px;
}

.rederma-nav-close span:first-child {
	transform: rotate(45deg);
}

.rederma-nav-close span:last-child {
	transform: rotate(-45deg);
}

.rederma-primary-nav__head,
.rederma-primary-nav__actions {
	display: none;
}

.rederma-mobile-overlay {
	background: rgba(18, 31, 37, 0.4);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.2s ease;
	z-index: 90;
}

.rederma-menu-open .rederma-mobile-overlay {
	opacity: 1;
	pointer-events: auto;
}

.rederma-hero,
.rederma-page-hero {
	padding: 54px 0 42px;
	position: relative;
}

.rederma-hero::before,
.rederma-page-hero::before {
	background:
		radial-gradient(circle at top right, rgba(95, 133, 137, 0.16), transparent 34%),
		linear-gradient(135deg, rgba(31, 61, 87, 0.06), rgba(24, 47, 55, 0));
	content: "";
	inset: 0;
	position: absolute;
}

.rederma-hero__grid,
.rederma-about-preview__grid,
.rederma-process__grid,
.rederma-page-cta__inner,
.rederma-contact-grid,
.rederma-story-grid,
.rederma-region__grid {
	align-items: center;
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	position: relative;
	z-index: 1;
}

.rederma-hero__content h1,
.rederma-page-hero h1 {
	font-size: clamp(3rem, 5vw, 5.5rem);
	line-height: 0.96;
	margin-bottom: 18px;
	max-width: 11ch;
}

.rederma-hero p,
.rederma-page-hero p,
.rederma-section-heading p {
	color: rgba(24, 47, 55, 0.76);
	font-size: 1.03rem;
	line-height: 1.85;
}

.rederma-actions,
.rederma-contact-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.rederma-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.rederma-hero__badges span {
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(95, 133, 137, 0.16);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 700;
	padding: 10px 15px;
}

.rederma-hero__visual {
	align-items: end;
	display: grid;
	gap: 20px;
	justify-items: end;
	position: relative;
}

.rederma-hero__image-stack {
	display: grid;
	position: relative;
	width: min(100%, 540px);
}

.rederma-hero__image-frame,
.rederma-products-showcase__visual,
.rederma-about-preview__media,
.rederma-media-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--rederma-border);
	border-radius: calc(var(--rederma-radius) + 4px);
	box-shadow: var(--rederma-shadow);
	overflow: hidden;
	position: relative;
}

.rederma-hero__image-frame {
	min-height: 520px;
}

.rederma-hero__image-frame::after,
.rederma-products-showcase__visual::after,
.rederma-about-preview__media::after,
.rederma-media-card::after {
	background: linear-gradient(180deg, rgba(24, 47, 55, 0), rgba(24, 47, 55, 0.12));
	content: "";
	inset: 0;
	position: absolute;
}

.rederma-hero__image-frame img,
.rederma-products-showcase__visual img,
.rederma-about-preview__media img,
.rederma-media-card img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.rederma-hero__mini-card,
.rederma-hero__stamp,
.rederma-products-showcase__content {
	backdrop-filter: blur(14px);
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(24, 47, 55, 0.1);
	box-shadow: var(--rederma-shadow);
}

.rederma-hero__mini-card {
	align-items: center;
	border-radius: 24px;
	display: grid;
	gap: 16px;
	grid-template-columns: 108px minmax(0, 1fr);
	margin: -86px 0 0 auto;
	max-width: 360px;
	padding: 16px;
	position: relative;
	width: calc(100% - 36px);
	z-index: 2;
}

.rederma-hero__mini-card img {
	border-radius: 18px;
	height: 118px;
	object-fit: cover;
	width: 100%;
}

.rederma-hero__mini-card strong,
.rederma-hero__stamp strong,
.rederma-products-showcase__content h3 {
	color: var(--rederma-ink);
	display: block;
	font-size: 1.1rem;
	font-weight: 700;
	margin-bottom: 6px;
}

.rederma-hero__mini-card p,
.rederma-hero__stamp span,
.rederma-products-showcase__content p {
	color: rgba(24, 47, 55, 0.72);
	line-height: 1.7;
	margin: 0;
}

.rederma-hero__stamp {
	align-items: center;
	border-radius: 999px;
	bottom: 28px;
	display: inline-flex;
	gap: 14px;
	left: -14px;
	padding: 14px 18px 14px 14px;
	position: absolute;
	z-index: 2;
}

.rederma-hero__stamp img {
	border-radius: 16px;
	height: 52px;
	object-fit: cover;
	width: 52px;
}

.rederma-hero__stamp span {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.rederma-logo-panel,
.rederma-overview__card,
.rederma-product-card,
.rederma-floating-card,
.rederma-step,
.rederma-story-card,
.rederma-value-card,
.rederma-content-surface,
.rederma-contact-card,
.rederma-region__panel,
.rederma-stat-card,
.rederma-post-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--rederma-border);
	border-radius: var(--rederma-radius);
	box-shadow: var(--rederma-shadow);
}

.rederma-logo-panel,
.rederma-overview__card,
.rederma-product-card,
.rederma-floating-card,
.rederma-step,
.rederma-story-card,
.rederma-value-card,
.rederma-content-surface,
.rederma-contact-card,
.rederma-region__panel,
.rederma-post-card {
	padding: 28px;
}

.rederma-logo-panel {
	max-width: 470px;
	position: relative;
	width: 100%;
}

.rederma-logo-panel::after {
	border: 1px solid rgba(95, 133, 137, 0.16);
	border-radius: calc(var(--rederma-radius) - 10px);
	content: "";
	inset: 14px;
	position: absolute;
}

.rederma-logo-panel img {
	border-radius: 24px;
	margin: 0 auto 22px;
	max-width: min(100%, 320px);
	position: relative;
	z-index: 1;
}

.rederma-logo-panel__text {
	position: relative;
	text-align: center;
	z-index: 1;
}

.rederma-logo-panel__text strong {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.04em;
	margin-bottom: 4px;
}

.rederma-floating-card {
	max-width: 320px;
	transform: translateX(-24px);
}

.rederma-floating-card__label {
	color: var(--rederma-ocean);
	display: block;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.rederma-overview,
.rederma-products,
.rederma-process,
.rederma-about-preview,
.rederma-region,
.rederma-page-section,
.rederma-page-cta,
.rederma-contact-band {
	padding: 42px 0 46px;
}

.rederma-overview__grid,
.rederma-products__grid,
.rederma-values-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.rederma-products-showcase {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
	margin-bottom: 22px;
}

.rederma-products-showcase__content {
	align-content: center;
	border-radius: var(--rederma-radius);
	display: grid;
	padding: 28px;
}

.rederma-products-showcase__visual {
	min-height: 320px;
}

.rederma-card-index {
	color: rgba(31, 61, 87, 0.32);
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.rederma-overview__card h2,
.rederma-product-card h3,
.rederma-step h3,
.rederma-story-card h2,
.rederma-value-card h3,
.rederma-contact-card h2,
.rederma-region__panel h2,
.rederma-post-card h2 {
	font-size: 1.7rem;
	margin-bottom: 12px;
}

.rederma-overview__card p,
.rederma-product-card p,
.rederma-step p,
.rederma-story-card p,
.rederma-value-card p,
.rederma-contact-card p,
.rederma-region__panel p,
.rederma-content-surface p,
.rederma-content-surface li,
.rederma-post-card p {
	color: rgba(24, 47, 55, 0.78);
	line-height: 1.8;
}

.rederma-product-card {
	min-height: 220px;
	position: relative;
}

.rederma-product-card--media {
	background: rgba(255, 255, 255, 0.92);
	overflow: hidden;
	padding: 0;
}

.rederma-product-card__media {
	margin: 0;
	min-height: 250px;
	position: relative;
}

.rederma-product-card__media::after {
	background: linear-gradient(180deg, rgba(24, 47, 55, 0.04), rgba(24, 47, 55, 0.18));
	content: "";
	inset: 0;
	position: absolute;
}

.rederma-product-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.rederma-product-card__badge {
	align-items: center;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(24, 47, 55, 0.08);
	border-radius: 999px;
	color: var(--rederma-ink);
	display: inline-flex;
	font-size: 0.82rem;
	font-weight: 800;
	height: 38px;
	justify-content: center;
	left: 18px;
	letter-spacing: 0.12em;
	min-width: 38px;
	padding: 0 12px;
	position: absolute;
	top: 18px;
	z-index: 1;
}

.rederma-product-card__content {
	display: grid;
	gap: 10px;
	padding: 22px 22px 24px;
}

.rederma-product-card__content h3 {
	font-size: 1.25rem;
	margin-bottom: 0;
}

.rederma-product-card__content p {
	margin: 0;
}

.rederma-coming-card {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid var(--rederma-border);
	border-radius: var(--rederma-radius);
	box-shadow: var(--rederma-shadow);
	padding: 30px;
}

.rederma-coming-card strong {
	display: block;
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
}

.rederma-coming-card p {
	color: rgba(24, 47, 55, 0.78);
	line-height: 1.8;
	margin: 0;
}

.rederma-product-card::before {
	background: linear-gradient(180deg, rgba(95, 133, 137, 0.24), transparent);
	border-radius: 24px 24px 120px 24px;
	content: "";
	height: 78px;
	position: absolute;
	right: 0;
	top: 0;
	width: 78px;
}

.rederma-product-card--media::before {
	display: none;
}

.rederma-section-heading {
	margin-bottom: 38px;
	max-width: 720px;
}

.rederma-about-preview__media {
	min-height: 420px;
}

.rederma-about-preview__content {
	max-width: 540px;
}

.rederma-section-heading h2 {
	font-size: clamp(2rem, 3vw, 3.3rem);
	line-height: 0.98;
	margin-bottom: 14px;
}

.rederma-section-heading--light h2,
.rederma-section-heading--light p {
	color: #fff;
}

.rederma-process {
	background: linear-gradient(140deg, var(--rederma-ink), #274a55);
	color: #fff;
}

.rederma-process__steps {
	display: grid;
	gap: 18px;
}

.rederma-step {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
	box-shadow: none;
}

.rederma-step strong {
	color: rgba(255, 255, 255, 0.66);
	display: inline-block;
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin-bottom: 14px;
}

.rederma-step h3,
.rederma-step p {
	color: #fff;
}

.rederma-region__stats {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rederma-stat-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 170px;
	padding: 24px;
	text-align: center;
}

.rederma-stat-card strong {
	font-family: "Poppins", sans-serif;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

.rederma-contact-band {
	padding-bottom: 78px;
}

.rederma-contact-band__inner,
.rederma-page-cta__inner {
	align-items: center;
	background: linear-gradient(140deg, var(--rederma-ocean), var(--rederma-ink));
	border-radius: calc(var(--rederma-radius) + 6px);
	box-shadow: var(--rederma-shadow-strong);
	color: #fff;
	overflow: hidden;
	padding: 34px;
	position: relative;
}

.rederma-contact-band__inner h2,
.rederma-page-cta__inner h2 {
	color: #fff;
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1;
	margin: 0;
}

.rederma-page-hero {
	padding-bottom: 32px;
}

.rederma-page-hero .rederma-shell {
	position: relative;
	z-index: 1;
}

.rederma-page-hero::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	inset: 0;
	opacity: 0.18;
	position: absolute;
}

.rederma-page-hero--about::after {
	background-image:
		linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.72)),
		url("../images/hero-products.jpg");
}

.rederma-page-hero--contact::after {
	background-image:
		linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
		url("../images/soft-product.jpg");
}

.rederma-page-section--muted {
	background: rgba(95, 133, 137, 0.06);
}

.rederma-contact-card--accent {
	background: linear-gradient(140deg, var(--rederma-ink), var(--rederma-ocean));
	border-color: transparent;
	color: #fff;
}

.rederma-contact-card--accent h2,
.rederma-contact-card--accent p {
	color: #fff;
}

.rederma-media-card {
	min-height: 360px;
}

.rederma-media-card--compact {
	min-height: 320px;
}

.rederma-media-card--wide {
	min-height: 340px;
}

.rederma-contact-list {
	display: grid;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rederma-contact-list li {
	border-bottom: 1px solid rgba(24, 47, 55, 0.1);
	display: grid;
	gap: 6px;
	padding-bottom: 16px;
}

.rederma-contact-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.rederma-contact-list strong {
	font-size: 0.84rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.rederma-contact-note {
	background: rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	padding: 16px;
}

.rederma-content-surface > :first-child {
	margin-top: 0;
}

.rederma-content-surface > :last-child {
	margin-bottom: 0;
}

.rederma-post-card + .rederma-post-card {
	margin-top: 24px;
}

.rederma-blog-hero__stats,
.rederma-single-meta,
.rederma-blog-card__meta {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.rederma-blog-hero__stats {
	margin-top: 26px;
}

.rederma-blog-hero__stats span,
.rederma-single-meta span,
.rederma-blog-card__meta span {
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(24, 47, 55, 0.1);
	border-radius: 999px;
	color: rgba(24, 47, 55, 0.78);
	font-size: 0.84rem;
	font-weight: 700;
	padding: 9px 14px;
}

.rederma-blog-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rederma-blog-grid--archive {
	margin-top: 22px;
}

.rederma-blog-card {
	overflow: hidden;
	padding: 0;
}

.rederma-blog-card__media,
.rederma-blog-featured__media {
	display: block;
	margin: 0;
	overflow: hidden;
	position: relative;
}

.rederma-blog-card__media {
	min-height: 240px;
}

.rederma-blog-featured {
	display: grid;
	gap: 0;
	grid-template-columns: minmax(320px, 1.1fr) minmax(0, 0.9fr);
	margin-bottom: 22px;
	overflow: hidden;
	padding: 0;
}

.rederma-blog-featured__media {
	min-height: 100%;
}

.rederma-blog-card__media::after,
.rederma-blog-featured__media::after,
.rederma-single-hero-image::after {
	background: linear-gradient(180deg, rgba(24, 47, 55, 0.02), rgba(24, 47, 55, 0.18));
	content: "";
	inset: 0;
	position: absolute;
}

.rederma-blog-card__media img,
.rederma-blog-featured__media img,
.rederma-single-hero-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.rederma-blog-card__content,
.rederma-blog-featured__content {
	display: grid;
	gap: 14px;
	padding: 24px;
}

.rederma-blog-card__content h3,
.rederma-blog-featured__content h2 {
	font-size: 1.45rem;
	line-height: 1.2;
	margin: 0;
}

.rederma-blog-card__content p,
.rederma-blog-featured__content p {
	margin: 0;
}

.rederma-blog-section__footer {
	display: flex;
	justify-content: flex-start;
	margin-top: 24px;
}

.rederma-empty-state {
	text-align: center;
}

.rederma-empty-state h2,
.rederma-empty-state h3 {
	margin-bottom: 10px;
}

.rederma-single-grid {
	align-items: start;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.rederma-single-article {
	padding: 0;
	overflow: hidden;
}

.rederma-single-hero-image {
	margin: 0;
	min-height: 340px;
	overflow: hidden;
	position: relative;
}

.rederma-prose {
	padding: 30px;
}

.rederma-prose > :first-child {
	margin-top: 0;
}

.rederma-prose > :last-child {
	margin-bottom: 0;
}

.rederma-prose h2,
.rederma-prose h3,
.rederma-prose h4 {
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.18;
	margin: 1.5em 0 0.6em;
}

.rederma-prose p,
.rederma-prose li,
.rederma-prose blockquote {
	color: rgba(24, 47, 55, 0.82);
	font-size: 1rem;
	line-height: 1.9;
}

.rederma-prose ul,
.rederma-prose ol {
	margin-bottom: 1.2rem;
}

.rederma-prose a {
	color: var(--rederma-ocean);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.rederma-prose img {
	border-radius: 24px;
	margin: 24px 0;
}

.rederma-single-aside {
	display: grid;
	gap: 22px;
	position: sticky;
	top: calc(var(--rederma-header-height) + 24px);
}

.rederma-footer {
	background: linear-gradient(180deg, #183038, #12262d);
	color: rgba(255, 255, 255, 0.84);
	padding: 46px 0 24px;
}

.rederma-footer__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: 1.3fr 1fr 1fr 1fr;
}

.rederma-footer h3 {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 14px;
}

.rederma-footer a,
.rederma-footer span,
.rederma-footer p {
	color: rgba(255, 255, 255, 0.78);
}

.rederma-footer__intro .rederma-brand {
	margin-bottom: 18px;
}

.rederma-footer__intro .rederma-brand__mark {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
}

.rederma-footer__intro .rederma-brand__title,
.rederma-footer__intro .rederma-brand__tag {
	color: #fff;
}

.rederma-footer__grid > div {
	display: grid;
	align-content: start;
	gap: 10px;
}

.rederma-footer__address {
	line-height: 1.8;
}

.rederma-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 18px;
}

.rederma-floating-whatsapp {
	align-items: center;
	background: linear-gradient(135deg, var(--rederma-ocean), var(--rederma-ink));
	border-radius: 999px;
	bottom: 24px;
	box-shadow: 0 16px 38px rgba(24, 47, 55, 0.26);
	color: #fff;
	display: inline-flex;
	gap: 12px;
	justify-content: center;
	min-height: 62px;
	padding: 10px 14px 10px 18px;
	position: fixed;
	right: 24px;
	z-index: 70;
}

.rederma-floating-whatsapp__content {
	display: grid;
	gap: 2px;
	line-height: 1.1;
}

.rederma-floating-whatsapp__eyebrow {
	color: rgba(255, 255, 255, 0.76);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.rederma-floating-whatsapp__title {
	font-size: 0.98rem;
	font-weight: 700;
	white-space: nowrap;
}

.rederma-floating-whatsapp svg {
	flex: 0 0 24px;
	height: 24px;
	width: 24px;
}

#ast-scroll-top,
.ast-scroll-top,
.ast-scroll-to-top-right,
.ast-scroll-to-top-left {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

@media (max-width: 1180px) {
	.rederma-products-showcase {
		grid-template-columns: 1fr;
	}

	.rederma-products__grid,
	.rederma-region__stats,
	.rederma-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 980px) {
	.rederma-header-row {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.rederma-primary-nav {
		inset: 0 auto 0 0;
		max-width: 360px;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		transform: translateX(-100%);
		transition: transform 0.24s ease, opacity 0.24s ease;
		width: calc(100vw - 44px);
		z-index: 95;
	}

	.rederma-primary-nav.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0);
	}

	.rederma-primary-nav__panel {
		background: rgba(251, 252, 251, 0.98);
		display: grid;
		gap: 26px;
		min-height: 100vh;
		padding: 26px 22px;
	}

	.rederma-primary-nav__head,
	.rederma-primary-nav__actions {
		align-items: center;
		display: flex;
		justify-content: space-between;
	}

	.rederma-primary-nav__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.rederma-language-switcher--panel {
		width: 100%;
	}

	.rederma-language-switcher--panel .rederma-language-switcher__toggle,
	.rederma-language-switcher--panel .rederma-language-switcher__menu {
		width: 100%;
	}

	.rederma-language-switcher--panel .rederma-language-switcher__menu {
		left: 0;
		right: auto;
	}

	.rederma-nav-eyebrow {
		color: var(--rederma-ocean);
		font-size: 0.78rem;
		font-weight: 800;
		letter-spacing: 0.16em;
		text-transform: uppercase;
	}

	.rederma-menu {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
	}

	.rederma-menu a {
		font-size: 1.1rem;
	}

	.rederma-brand__title {
		font-size: 1.4rem;
	}

	.rederma-brand__tag {
		font-size: 0.62rem;
	}

	.rederma-header-phone--panel {
		font-size: 1rem;
	}

	.rederma-primary-nav .rederma-menu,
	.rederma-primary-nav .rederma-primary-nav__actions {
		justify-self: start;
	}

	.rederma-header-actions .rederma-header-phone,
	.rederma-header-actions .rederma-header-cta {
		display: none;
	}

	.rederma-menu-toggle,
	.rederma-nav-close {
		display: inline-flex;
	}

	.rederma-hero__grid,
	.rederma-about-preview__grid,
	.rederma-process__grid,
	.rederma-page-cta__inner,
	.rederma-contact-grid,
	.rederma-story-grid,
	.rederma-region__grid,
	.rederma-single-grid,
	.rederma-blog-featured {
		grid-template-columns: 1fr;
	}

	.rederma-hero__visual {
		justify-items: stretch;
	}

	.rederma-hero__image-stack {
		width: 100%;
	}

	.rederma-hero__stamp {
		left: 18px;
	}

	.rederma-floating-card {
		max-width: none;
		transform: none;
	}

	.rederma-single-aside {
		position: static;
		top: auto;
	}
}

@media (max-width: 720px) {
	body.admin-bar .rederma-site-header {
		top: 46px;
	}

	.rederma-shell {
		width: min(100vw - 24px, 100%);
	}

	.rederma-brand--lockup {
		gap: 10px;
	}

	.rederma-brand__mark {
		flex-basis: 54px;
		height: 54px;
		width: 54px;
	}

	.rederma-main {
		padding-top: calc(var(--rederma-header-height) + 18px);
	}

	.rederma-hero,
	.rederma-page-hero {
		padding-top: 34px;
	}

	.rederma-hero__content h1,
	.rederma-page-hero h1 {
		font-size: clamp(2.4rem, 10vw, 3.8rem);
		max-width: none;
	}

	.rederma-overview,
	.rederma-products,
	.rederma-process,
	.rederma-about-preview,
	.rederma-region,
	.rederma-page-section,
	.rederma-page-cta,
	.rederma-contact-band {
		padding: 30px 0 34px;
	}

	.rederma-overview__grid,
	.rederma-products__grid,
	.rederma-values-grid,
	.rederma-region__stats,
	.rederma-footer__grid,
	.rederma-blog-grid {
		grid-template-columns: 1fr;
	}

	.rederma-products-showcase__visual,
	.rederma-about-preview__media,
	.rederma-media-card,
	.rederma-hero__image-frame,
	.rederma-blog-card__media,
	.rederma-single-hero-image {
		min-height: 280px;
	}

	.rederma-product-card__media {
		min-height: 220px;
	}

	.rederma-hero__mini-card {
		grid-template-columns: 86px minmax(0, 1fr);
		margin-top: -54px;
		padding: 14px;
		width: calc(100% - 18px);
	}

	.rederma-hero__mini-card img {
		height: 96px;
	}

	.rederma-hero__stamp {
		border-radius: 24px;
		bottom: 14px;
		left: 14px;
		padding-right: 16px;
	}

	.rederma-logo-panel,
	.rederma-overview__card,
	.rederma-product-card,
	.rederma-floating-card,
	.rederma-step,
	.rederma-story-card,
	.rederma-value-card,
	.rederma-content-surface,
	.rederma-contact-card,
	.rederma-region__panel,
	.rederma-post-card,
	.rederma-contact-band__inner,
	.rederma-page-cta__inner,
	.rederma-stat-card {
		border-radius: 22px;
		padding: 22px;
	}

	.rederma-blog-card__content,
	.rederma-blog-featured__content,
	.rederma-prose {
		padding: 22px;
	}

	.rederma-footer__bottom {
		flex-direction: column;
	}

	.rederma-floating-whatsapp {
		bottom: 18px;
		height: 54px;
		justify-content: center;
		padding: 0;
		right: 18px;
		width: 54px;
	}

	.rederma-floating-whatsapp__content {
		display: none;
	}
}
