:root {
  --yellow: #ffd45e;
  --yellow-soft: #fff0b5;
  --yellow-pale: #fff8dd;
  --pink: #f5a9bd;
  --pink-deep: #e97e9d;
  --pink-pale: #fff0f4;
  --cream: #fffaf0;
  --peach: #ffd8bf;
  --mint: #dcefdc;
  --lilac: #e9e0f2;
  --ink: #31271f;
  --ink-soft: #6d625a;
  --white: #ffffff;
  --green: #8fb79a;
  --line-green: #06c755;
  --shadow: 0 24px 70px rgba(116, 77, 53, 0.12);
  --radius-xl: 42px;
  --radius-lg: 28px;
  --section-pad: clamp(80px, 10vw, 140px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Anuphan", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg:not(.round-stamp svg) {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 20px;
  background: var(--pink);
  color: #3d2a25;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.announcement p {
  margin: 0;
}

.announcement a {
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 250, 240, 0.91);
  border-bottom: 1px solid rgba(49, 39, 31, 0.07);
  backdrop-filter: blur(14px);
}

.nav-shell,
.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.nav-shell {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-logo {
  width: 160px;
  height: 58px;
  display: block;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  width: 43px;
  height: 38px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}

.brand-mark .face {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 45% 45% 48% 48%;
}

.brand-mark .eye {
  width: 4px;
  height: 6px;
  background: var(--ink);
  border-radius: 100%;
}

.ear {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 12px;
  height: 17px;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 70% 70% 40% 40%;
}

.ear-left {
  left: 5px;
  transform: rotate(-24deg);
}

.ear-right {
  right: 5px;
  transform: rotate(24deg);
}

.brand-type {
  font-family: "Nunito", sans-serif;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -1.1px;
}

.brand-type span {
  color: var(--pink-deep);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 21px;
  height: 2px;
  background: var(--pink-deep);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #97877b;
  font-family: "Nunito", "Anuphan", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.language-button {
  min-width: 28px;
  padding: 5px 2px;
  border: 0;
  border-radius: 8px;
  color: #97877b;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.language-button:hover,
.language-button:focus-visible {
  color: var(--ink);
  background: var(--yellow-pale);
  outline: none;
}

.language-button.is-active {
  color: var(--ink);
  background: var(--yellow-soft);
}

.shop-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.shop-button {
  min-height: 44px;
  padding: 0 19px;
}

.shop-button:hover,
.primary-button:hover {
  transform: translateY(-2px);
  background: #4a3930;
  box-shadow: 0 10px 24px rgba(49, 39, 31, 0.18);
}

.shop-button svg {
  width: 17px;
  height: 17px;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--yellow-pale);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: linear-gradient(112deg, #fff9e9 0%, #fff7e2 56%, #ffeac3 100%);
}

.hero-soothing {
  background: linear-gradient(112deg, #fff9ed 0%, #fff2dd 52%, #ffd8c6 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 48px;
  padding: 60px 0 92px;
}

.hero-copy {
  padding-bottom: 15px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: #7a6557;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--pink-deep);
}

.hero h1,
.section-heading h2,
.intro-copy h2,
.care-copy h2,
.shop-copy h2 {
  margin: 0;
  font-family: "Anuphan", sans-serif;
  font-size: clamp(48px, 5.15vw, 74px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  color: var(--pink-deep);
}

.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -2%;
  right: -3%;
  bottom: 2px;
  height: 14px;
  background: rgba(255, 212, 94, 0.55);
  border-radius: 60% 25% 55% 20%;
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 520px;
  margin: 28px 0 31px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-button {
  min-height: 54px;
  padding: 0 24px;
  box-shadow: 0 10px 30px rgba(49, 39, 31, 0.15);
}

.text-link,
.underlined-link {
  font-size: 13px;
  font-weight: 700;
}

.text-link span,
.underlined-link span {
  margin-left: 4px;
  color: var(--pink-deep);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  color: #71645c;
  font-size: 11px;
  font-weight: 600;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust i {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-disc {
  position: absolute;
  width: 455px;
  height: 455px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: inset -30px -28px 60px rgba(236, 164, 44, 0.11);
}

.sun-disc::before,
.sun-disc::after {
  content: "";
  position: absolute;
  background: #fff5cf;
  border-radius: 50%;
}

.sun-disc::before {
  width: 65px;
  height: 65px;
  top: 50px;
  left: 50px;
}

.sun-disc::after {
  width: 27px;
  height: 27px;
  right: 68px;
  bottom: 55px;
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(420px, 78%);
  height: 480px;
  overflow: hidden;
  background: linear-gradient(150deg, #fffef9 0%, #fff4e4 100%);
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 190px 190px 36px 36px;
  box-shadow: 0 25px 70px rgba(97, 67, 37, 0.18);
  transform: rotate(2deg);
}

.hero-promo-photo {
  position: relative;
  z-index: 3;
  width: min(350px, 74%);
  height: 486px;
  overflow: hidden;
  background: #fffdf8;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 180px 180px 30px 30px;
  box-shadow: 0 25px 70px rgba(97, 67, 37, 0.2);
  transform: rotate(2deg);
}

.hero-promo-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.hero-new-badge {
  position: absolute;
  z-index: 5;
  top: 80px;
  left: 4px;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #e97e9d;
  border: 4px solid #fff8e7;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(137, 64, 86, 0.2);
  text-align: center;
  transform: rotate(-10deg);
}

.hero-new-badge span {
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-new-badge b {
  margin: 1px 0 2px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  line-height: 0.94;
}

.hero-new-badge small {
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
}

.placeholder-art {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-product-art {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  padding-bottom: 65px;
}

.product-bottle {
  position: relative;
  z-index: 3;
  width: 122px;
  height: 245px;
  background: linear-gradient(90deg, #e9a95a, #c57b35 55%, #e7a856);
  border: 2px solid rgba(83, 54, 32, 0.65);
  border-radius: 22px 22px 29px 29px;
  box-shadow: 0 20px 30px rgba(100, 55, 20, 0.24);
  transform: rotate(-5deg);
}

.bottle-cap {
  position: absolute;
  top: -38px;
  left: 20px;
  width: 80px;
  height: 45px;
  background: #f5d25f;
  border: 2px solid rgba(83, 54, 32, 0.7);
  border-radius: 13px 13px 6px 6px;
}

.bottle-label {
  position: absolute;
  inset: 56px 11px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff7d9;
  border-radius: 16px;
  color: #5f4831;
  text-align: center;
}

.bottle-label b {
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  letter-spacing: -0.5px;
}

.bottle-label small {
  margin-top: 5px;
  font-size: 8px;
}

.product-jar {
  position: relative;
  z-index: 4;
  width: 134px;
  height: 104px;
  background: linear-gradient(90deg, #f8b6c7, #ef8eaa);
  border: 2px solid rgba(103, 52, 64, 0.48);
  border-radius: 14px 14px 30px 30px;
  box-shadow: 0 20px 30px rgba(100, 55, 70, 0.18);
  transform: translate(-15px, 12px) rotate(5deg);
}

.jar-lid {
  position: absolute;
  top: -21px;
  left: -3px;
  width: 136px;
  height: 28px;
  background: #f7d45d;
  border: 2px solid rgba(83, 54, 32, 0.6);
  border-radius: 13px 13px 6px 6px;
}

.jar-label {
  position: absolute;
  inset: 17px 17px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff6d8;
  border-radius: 12px 12px 20px 20px;
  font-family: "Nunito", sans-serif;
  color: #bd6c84;
}

.leaf {
  position: absolute;
  width: 44px;
  height: 138px;
  border-radius: 100% 0 100% 0;
  background: #b6cf8a;
  transform-origin: bottom;
}

.leaf::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 130px;
  background: #7f9e63;
  bottom: -45px;
  left: 5px;
  transform: rotate(-11deg);
}

.leaf-one {
  left: 58px;
  bottom: 67px;
  transform: rotate(-28deg);
}

.leaf-two {
  right: 42px;
  bottom: 59px;
  transform: scaleX(-1) rotate(-37deg);
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(78, 55, 42, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(97, 67, 37, 0.12);
  color: #735f51;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.floating-note span {
  color: var(--pink-deep);
}

.note-one {
  top: 110px;
  left: 5px;
  transform: rotate(-7deg);
}

.note-two {
  right: -8px;
  bottom: 93px;
  transform: rotate(6deg);
}

.doodle {
  position: absolute;
  z-index: 4;
  color: #e985a0;
  font-family: serif;
}

.doodle-sparkle {
  top: 48px;
  right: 30px;
  font-size: 40px;
  transform: rotate(12deg);
}

.doodle-heart {
  top: 78px;
  left: 26px;
  font-size: 37px;
  transform: rotate(-14deg);
}

.doodle-line {
  right: 15px;
  bottom: 30px;
  color: #d7a03e;
  font-size: 50px;
  transform: rotate(-15deg);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-blob-one {
  width: 220px;
  height: 220px;
  top: -120px;
  left: -80px;
  background: rgba(245, 169, 189, 0.2);
}

.hero-blob-two {
  width: 300px;
  height: 300px;
  right: -130px;
  bottom: -70px;
  background: rgba(245, 169, 189, 0.27);
}

.hero-wave {
  position: absolute;
  z-index: 3;
  left: -2%;
  right: -2%;
  bottom: -35px;
  height: 85px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
}

.intro {
  padding: 105px 0 var(--section-pad);
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.intro-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 280px;
}

.round-stamp {
  position: relative;
  width: 104px;
  height: 104px;
  color: #bb8a73;
}

.round-stamp svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  animation: spin 22s linear infinite;
}

.round-stamp text {
  font-family: "Nunito", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
}

.round-stamp > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  font-size: 26px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.intro-copy h2,
.section-heading h2,
.shop-copy h2 {
  font-size: clamp(40px, 4.8vw, 64px);
}

h2 em {
  color: var(--pink-deep);
  font-style: normal;
}

.intro-copy > p {
  max-width: 650px;
  margin: 28px 0 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 2;
}

.underlined-link {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(49, 39, 31, 0.42);
}

.products-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: #fff3f4;
}

.products-section::before {
  content: "";
  position: absolute;
  top: 44px;
  right: 4%;
  width: 72px;
  height: 72px;
  opacity: 0.35;
  background-image: radial-gradient(#e97e9d 2px, transparent 2px);
  background-size: 13px 13px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 9px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  border: 1px solid rgba(86, 61, 46, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-number {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 20px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(49, 39, 31, 0.72);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 900;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-yellow .product-image { background: #ffe589; }
.card-pink .product-image { background: #f7c4d0; }
.card-cream .product-image { background: #f7e5cd; }
.card-peach .product-image { background: #ffd9bf; }
.card-lilac .product-image { background: #e7dced; }
.card-mint .product-image { background: #dcebd6; }

.product-image-real {
  align-items: stretch;
  background: #f3ac90 !important;
}

.product-image-real::after {
  display: none;
}

.product-image-real > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 57%;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image-real > img {
  transform: scale(1.045);
}

.product-photo-tag {
  position: absolute;
  z-index: 2;
  right: 15px;
  bottom: 15px;
  padding: 7px 10px;
  color: #6e4430;
  background: rgba(255, 250, 243, 0.86);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(79, 45, 30, 0.12);
  font-family: "Nunito", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.product-image::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 25px;
  bottom: 28px;
  background: rgba(101, 68, 42, 0.12);
  border-radius: 50%;
  filter: blur(6px);
}

.mini-bottle,
.spray-bottle,
.home-spray,
.dropper-bottle,
.balm-jar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(76, 50, 35, 0.5);
  box-shadow: 0 16px 25px rgba(85, 52, 30, 0.17);
  color: #5c4637;
  font-family: "Nunito", sans-serif;
}

.mini-bottle {
  width: 92px;
  height: 158px;
  background: linear-gradient(90deg, #c17931, #e3a558 48%, #b86b25);
  border-radius: 15px 15px 23px 23px;
  transform: rotate(-4deg);
}

.mini-bottle > span {
  position: absolute;
  top: -29px;
  width: 58px;
  height: 34px;
  background: #f9d65c;
  border: 2px solid rgba(76, 50, 35, 0.5);
  border-radius: 9px 9px 4px 4px;
}

.mini-bottle b,
.spray-bottle b,
.home-spray b,
.dropper-bottle b,
.balm-jar b {
  width: 76%;
  padding: 27px 4px;
  background: rgba(255, 250, 226, 0.9);
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
}

.botanical {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 90px;
  bottom: 46px;
  background: #9eb46d;
  border-radius: 100% 0 100% 0;
  transform-origin: bottom;
}

.botanical-a { left: 80px; transform: rotate(-32deg); }
.botanical-b { right: 73px; transform: scaleX(-1) rotate(-27deg); }

.spray-bottle,
.home-spray {
  width: 102px;
  height: 175px;
  border-radius: 16px 16px 25px 25px;
  background: linear-gradient(90deg, #f8f4ec, #fff 45%, #eadfd5);
}

.spray-top {
  position: absolute;
  top: -39px;
  left: 32px;
  width: 43px;
  height: 44px;
  background: #f1c452;
  border: 2px solid rgba(76, 50, 35, 0.5);
  border-radius: 7px 7px 3px 3px;
}

.spray-top::after {
  content: "";
  position: absolute;
  width: 31px;
  height: 11px;
  left: 17px;
  top: 3px;
  background: #f1c452;
  border: 2px solid rgba(76, 50, 35, 0.5);
  border-left: 0;
  border-radius: 0 7px 5px 0;
}

.spray-bottle b,
.home-spray b {
  padding: 18px 4px 4px;
  background: #fff5d3;
}

.spray-bottle small,
.home-spray small,
.dropper-bottle small,
.balm-jar small {
  width: 76%;
  padding: 1px 4px 17px;
  background: #fff5d3;
  color: #9b6e61;
  font-size: 7px;
  text-align: center;
}

.spray-dot {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.dot-a { width: 21px; height: 21px; right: 67px; top: 76px; }
.dot-b { width: 12px; height: 12px; right: 47px; top: 111px; }
.dot-c { width: 9px; height: 9px; right: 76px; top: 139px; }

.balm-jar {
  width: 148px;
  height: 100px;
  border-radius: 12px 12px 32px 32px;
  transform: rotate(3deg);
}

.balm-jar > span {
  position: absolute;
  top: -27px;
  width: 151px;
  height: 34px;
  background: #f4c84f;
  border: 2px solid rgba(76, 50, 35, 0.5);
  border-radius: 13px 13px 6px 6px;
}

.balm-jar b {
  padding: 18px 4px 1px;
  font-size: 11px;
}

.balm-jar small { padding-bottom: 12px; }
.blush-jar { background: #e894aa; }
.yellow-jar { background: #efb65b; transform: rotate(-3deg); }

.soft-cloud {
  position: absolute;
  width: 50px;
  height: 25px;
  background: rgba(255, 255, 255, 0.68);
  border-radius: 30px;
}

.soft-cloud::before,
.soft-cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  background: inherit;
  border-radius: 50%;
}

.soft-cloud::before { width: 28px; height: 28px; left: 8px; }
.soft-cloud::after { width: 20px; height: 20px; right: 4px; }
.cloud-a { left: 42px; top: 90px; }
.cloud-b { right: 34px; top: 62px; transform: scale(0.7); }

.bandage {
  position: absolute;
  right: 52px;
  top: 72px;
  width: 58px;
  height: 22px;
  background: #f1a884;
  border: 2px solid rgba(121, 74, 55, 0.35);
  border-radius: 7px;
  transform: rotate(33deg);
}

.bandage::after {
  content: "•••";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(97, 57, 43, 0.35);
  letter-spacing: 3px;
  font-size: 7px;
}

.spark { position: absolute; color: #fff4c8; font-style: normal; }
.spark-a { left: 54px; top: 82px; font-size: 28px; }
.spark-b { right: 64px; top: 72px; font-size: 28px; }

.home-spray { background: linear-gradient(90deg, #e4b6da, #f0d4ea 45%, #c998c3); }
.home-spray b, .home-spray small { background: #fff3cf; }
.home-shape { position: absolute; left: 54px; top: 73px; color: rgba(98, 74, 106, 0.44); font-size: 53px; font-style: normal; }

.dropper-bottle {
  width: 93px;
  height: 149px;
  background: linear-gradient(90deg, #a46738, #d39558 45%, #8d542c);
  border-radius: 17px 17px 26px 26px;
}

.dropper-bottle > span {
  position: absolute;
  top: -56px;
  width: 50px;
  height: 64px;
  background: #42362e;
  border: 2px solid #31271f;
  border-radius: 19px 19px 6px 6px;
}

.dropper-bottle b { padding: 20px 3px 2px; font-size: 11px; }
.dropper-bottle small { padding-bottom: 13px; }
.magic-star { position: absolute; color: #fff6b7; font-style: normal; }
.star-a { left: 62px; top: 68px; font-size: 25px; }
.star-b { right: 58px; top: 83px; font-size: 32px; }
.star-c { right: 89px; top: 42px; font-size: 12px; }

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 29px 25px;
}

.product-type,
.modal-type {
  margin: 0 0 9px;
  color: #b16a7d;
  font-family: "Nunito", sans-serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.product-info h3 {
  min-height: 58px;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 25px;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.product-info > p:not(.product-type) {
  margin: 14px 0 23px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.75;
}

.detail-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 13px 0 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(49, 39, 31, 0.12);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
}

.detail-button span {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  transition: transform 0.25s ease;
}

.detail-button:hover span {
  transform: translateX(4px);
}

.detail-button svg {
  width: 15px;
  height: 15px;
}

.care-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 710px;
  background: #5e6f61;
  color: #fff;
}

.care-visual {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  background: #f2b2c3;
}

.care-visual::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -130px;
  height: 330px;
  background: #ffd760;
  border-radius: 50% 50% 0 0;
}

.care-sun {
  position: absolute;
  top: 90px;
  right: 75px;
  width: 130px;
  height: 130px;
  background: #ffdc70;
  border-radius: 50%;
  box-shadow: 0 0 0 20px rgba(255, 220, 112, 0.18);
}

.rainbow {
  position: absolute;
  z-index: 2;
  left: 12%;
  bottom: 105px;
  width: 360px;
  height: 250px;
  overflow: hidden;
}

.rainbow i {
  position: absolute;
  left: 50%;
  bottom: -180px;
  border-style: solid;
  border-radius: 50%;
  transform: translateX(-50%);
}

.rainbow i:nth-child(1) { width: 430px; height: 430px; border-width: 48px; border-color: #e77b9c; }
.rainbow i:nth-child(2) { width: 330px; height: 330px; border-width: 43px; border-color: #fff4d2; }
.rainbow i:nth-child(3) { width: 240px; height: 240px; border-width: 40px; border-color: #98b99a; }

.care-heart {
  position: absolute;
  z-index: 3;
  top: 75px;
  left: 16%;
  color: #fff4dc;
  font-size: 70px;
  transform: rotate(-14deg);
}

.family-shapes {
  position: absolute;
  z-index: 4;
  right: 10%;
  bottom: 58px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.family-shapes i {
  position: relative;
  display: block;
  width: 70px;
  height: 160px;
  background: #675249;
  border-radius: 50px 50px 15px 15px;
}

.family-shapes i::before {
  content: "";
  position: absolute;
  top: -46px;
  left: 10px;
  width: 50px;
  height: 50px;
  background: #675249;
  border-radius: 50%;
}

.family-shapes i:nth-child(2) { width: 61px; height: 130px; background: #8c6b5d; }
.family-shapes i:nth-child(2)::before { width: 45px; height: 45px; left: 8px; background: #8c6b5d; }
.family-shapes i:nth-child(3) { width: 44px; height: 78px; background: #755d52; }
.family-shapes i:nth-child(3)::before { width: 36px; height: 36px; top: -33px; left: 4px; background: #755d52; }

.care-copy {
  max-width: 590px;
  align-self: center;
  padding: 80px clamp(40px, 7vw, 100px);
}

.eyebrow.light {
  color: #dbe2dc;
}

.care-copy h2 {
  font-size: clamp(44px, 4.4vw, 64px);
}

.care-copy h2 em {
  color: #ffd66a;
}

.care-copy > p:not(.eyebrow) {
  margin: 25px 0 36px;
  color: #e2e8e3;
  font-size: 14px;
  line-height: 1.9;
}

.promise-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.promise-list > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.promise-list > div > span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffd66a;
}

.promise-list p {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
}

.promise-list b {
  font-family: "Nunito", sans-serif;
  font-size: 13px;
}

.promise-list small {
  color: #cad3cc;
  font-size: 11px;
}

.shop-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  background: var(--yellow-pale);
}

.shop-section::before,
.shop-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.shop-section::before {
  width: 280px;
  height: 280px;
  top: -150px;
  right: -70px;
  border: 50px solid rgba(245, 169, 189, 0.28);
}

.shop-section::after {
  width: 110px;
  height: 110px;
  left: 6%;
  bottom: -75px;
  background: rgba(245, 169, 189, 0.4);
}

.shop-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: center;
}

.shop-copy > p:last-child {
  max-width: 390px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.shop-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.channel {
  min-height: 108px;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  align-items: center;
  gap: 13px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(77, 56, 42, 0.08);
  border-radius: 19px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 13px 35px rgba(103, 76, 48, 0.12);
}

.channel-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 15px;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.shopee .channel-icon { background: #ee4d2d; }
.lazada .channel-icon { background: linear-gradient(135deg, #302093, #f05d37); }
.line .channel-icon { background: var(--line-green); }
.line .channel-icon b { font-size: 10px; }
.email .channel-icon { background: var(--pink-deep); }

.channel > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.channel small {
  margin-bottom: 2px;
  color: #8c7d73;
  font-size: 9px;
}

.channel > span:nth-child(2) b {
  overflow-wrap: anywhere;
  font-family: "Nunito", "Anuphan", sans-serif;
  font-size: 14px;
}

.channel > svg {
  width: 19px;
  height: 19px;
  color: #88786e;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  color: #f9f1e8;
  background: #3c3029;
}

.footer-sun {
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 60px solid rgba(255, 212, 94, 0.08);
  border-radius: 50%;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr 1.25fr;
  gap: 48px;
  padding-bottom: 70px;
}

.brand-light .brand-logo { background: transparent; }
.footer-brand > p {
  margin: 20px 0 0;
  color: #bfaea2;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-nav p,
.footer-contact p {
  margin: 3px 0 8px;
  color: #ffd66a;
  font-size: 12px;
  font-weight: 700;
}

.footer-nav a,
.footer-contact a,
.footer-contact span {
  color: #c9bbb1;
  font-size: 11px;
  line-height: 1.6;
}

.footer-nav a:hover,
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9f8f84;
  font-size: 9px;
}

.footer-bottom p { margin: 0; }
.footer-bottom span { color: var(--pink); }

.floating-line {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  min-width: 116px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 9px;
  color: #fff;
  background: var(--line-green);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 111, 48, 0.22);
  transition: transform 0.25s ease;
}

.floating-line:hover { transform: translateY(-3px); }
.floating-line span {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--line-green);
  border-radius: 50%;
  font-family: "Nunito", sans-serif;
  font-size: 8px;
  font-weight: 900;
}
.floating-line b { font-size: 11px; }

.product-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.28s, opacity 0.28s ease;
}

.product-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(45, 34, 28, 0.68);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  max-height: min(700px, calc(100vh - 50px));
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: auto;
  background: var(--cream);
  border-radius: 30px;
  box-shadow: 0 30px 100px rgba(31, 22, 16, 0.32);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}

.product-modal.is-open .modal-panel { transform: translateY(0) scale(1); }

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid .product-card:nth-child(2),
.shop-links .channel:nth-child(2) { transition-delay: 0.07s; }

.product-grid .product-card:nth-child(3),
.shop-links .channel:nth-child(3) { transition-delay: 0.14s; }

.product-grid .product-card:nth-child(5),
.shop-links .channel:nth-child(4) { transition-delay: 0.07s; }

.modal-close {
  position: absolute;
  z-index: 4;
  top: 17px;
  right: 17px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(49, 39, 31, 0.08);
  cursor: pointer;
}

.modal-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-soft);
}

.modal-number {
  position: absolute;
  top: 25px;
  left: 27px;
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.modal-product-photo {
  width: min(100%, 360px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 25px 25px;
}

.modal-product-photo[hidden] {
  display: none;
}

.modal-product-photo img {
  width: 100%;
  max-height: 485px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(119, 78, 49, 0.17);
}

.modal-content {
  padding: 65px 58px 48px;
}

.modal-content h2 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.modal-description {
  margin: 20px 0 25px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.85;
}

.variant-picker {
  margin: 0 0 21px;
  padding: 17px;
  background: #fff3df;
  border-radius: 16px;
}

.variant-picker-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.variant-picker h3 {
  margin: 0;
  font-size: 12px;
}

.variant-picker-heading p {
  margin: 0;
  color: #a26d5a;
  font-size: 9px;
  font-weight: 700;
  text-align: right;
}

.variant-group + .variant-group {
  margin-top: 12px;
}

.variant-group > span {
  display: block;
  margin-bottom: 7px;
  color: #866e60;
  font-size: 9px;
  font-weight: 700;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.variant-choice {
  min-height: 29px;
  padding: 5px 10px;
  color: #6b574b;
  background: #fffaf2;
  border: 1px solid rgba(109, 80, 60, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-family: "Anuphan", sans-serif;
  font-size: 10px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.variant-choice:hover,
.variant-choice.is-selected {
  color: #fff;
  background: #e97e9d;
  border-color: #e97e9d;
}

.modal-features {
  padding: 20px 0;
  border-top: 1px solid rgba(49, 39, 31, 0.1);
  border-bottom: 1px solid rgba(49, 39, 31, 0.1);
}

.modal-features h3 {
  margin: 0 0 12px;
  font-size: 12px;
}

.modal-features ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-features li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 11px;
}

.modal-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.modal-note {
  display: flex;
  gap: 9px;
  margin: 17px 0 22px;
  padding: 12px 14px;
  color: #806f64;
  background: #f5ece2;
  border-radius: 12px;
  font-size: 9px;
  line-height: 1.6;
}

.modal-note span {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--pink);
  border-radius: 50%;
  font-family: serif;
  font-weight: 700;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-actions a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.modal-actions a:nth-child(2) { background: var(--pink-deep); }

@media (max-width: 1020px) {
  .desktop-nav { gap: 22px; }
  .language-switcher { margin-left: 12px; }
  .hero-inner { grid-template-columns: 1fr 0.9fr; gap: 12px; }
  .sun-disc { width: 380px; height: 380px; }
  .hero-card { height: 435px; }
  .hero-promo-photo { height: 438px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { min-height: 545px; }
  .care-copy { padding-left: 50px; padding-right: 50px; }
  .shop-inner { gap: 50px; }
  .channel { grid-template-columns: 44px 1fr 18px; padding: 15px; }
  .channel-icon { width: 44px; height: 44px; }
  .footer-inner { grid-template-columns: 1.5fr 0.8fr 1fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .desktop-nav,
  .desktop-shop { display: none; }
  .menu-button { display: flex; }
  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    background: rgba(255, 250, 240, 0.98);
    border-top: 1px solid rgba(49, 39, 31, 0.08);
    box-shadow: 0 20px 35px rgba(49, 39, 31, 0.1);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: 0.22s ease;
  }
  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-nav > a:not(.shop-button) {
    padding: 13px 2px;
    border-bottom: 1px solid rgba(49, 39, 31, 0.07);
    font-size: 13px;
    font-weight: 600;
  }
  .mobile-nav .shop-button { margin-top: 15px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 75px;
  }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow,
  .hero-actions,
  .hero-trust { justify-content: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-visual { height: 540px; }
  .intro-grid { grid-template-columns: 0.55fr 1.45fr; gap: 35px; }
  .section-heading { gap: 35px; }
  .care-section { grid-template-columns: 1fr; }
  .care-visual { min-height: 530px; }
  .care-copy { max-width: none; padding: 80px 9%; }
  .shop-inner { grid-template-columns: 1fr; }
  .shop-copy { text-align: center; }
  .shop-copy .eyebrow { justify-content: center; }
  .shop-copy > p:last-child { margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  :root { --radius-lg: 23px; }
  .announcement { gap: 8px; font-size: 10px; }
  .announcement p { display: none; }
  .nav-shell,
  .section-shell,
  .hero-inner { width: min(100% - 32px, 1180px); }
  .nav-shell { height: 68px; }
  .mobile-nav { top: 68px; }
  .brand-logo { width: 138px; height: 50px; }
  .language-switcher { gap: 3px; margin-left: auto; margin-right: 8px; }
  .language-button { min-width: 0; padding: 5px 1px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 57px 0 95px; }
  .hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-description { margin: 23px 0 27px; font-size: 14px; line-height: 1.85; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .primary-button { width: 100%; max-width: 320px; }
  .hero-trust { gap: 10px 13px; margin-top: 28px; }
  .hero-trust span { font-size: 9px; }
  .hero-visual { height: 430px; margin-top: 25px; }
  .sun-disc { width: 330px; height: 330px; }
  .hero-card { width: 285px; height: 380px; border-radius: 140px 140px 28px 28px; }
  .hero-promo-photo { width: 270px; height: 380px; border-radius: 140px 140px 28px 28px; }
  .hero-new-badge { top: 54px; left: -4px; width: 94px; height: 94px; }
  .hero-new-badge span { font-size: 9px; }
  .hero-new-badge b { font-size: 11px; }
  .product-bottle { width: 95px; height: 195px; }
  .bottle-cap { left: 15px; width: 63px; }
  .product-jar { width: 105px; height: 82px; }
  .jar-lid { width: 107px; }
  .note-one { left: -4px; top: 76px; }
  .note-two { right: -5px; bottom: 46px; }
  .doodle-heart { left: 0; top: 34px; }
  .doodle-sparkle { right: 0; top: 30px; }
  .intro { padding: 85px 0 90px; }
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .intro-label { min-height: auto; flex-direction: row; align-items: center; }
  .round-stamp { width: 72px; height: 72px; }
  .intro-copy h2,
  .section-heading h2,
  .shop-copy h2 { font-size: 39px; }
  .intro-copy > p { font-size: 14px; line-height: 1.9; }
  .products-section { padding: 85px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .section-heading > p { font-size: 12px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }
  .product-card { min-height: 520px; }
  .product-image { height: 275px; }
  .product-info { padding: 25px; }
  .care-visual { min-height: 420px; }
  .care-sun { width: 95px; height: 95px; top: 55px; right: 35px; }
  .rainbow { left: -9%; bottom: 55px; transform: scale(0.72); }
  .family-shapes { right: 5%; transform: scale(0.73); transform-origin: bottom right; }
  .care-heart { top: 40px; left: 10%; }
  .care-copy { padding: 72px 28px; }
  .care-copy h2 { font-size: 43px; }
  .shop-section { padding: 85px 0; }
  .shop-links { grid-template-columns: 1fr; }
  .channel { min-height: 88px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 42px 26px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-contact { grid-column: 1 / 3; }
  .footer-bottom { align-items: flex-start; gap: 10px; flex-direction: column; }
  .floating-line { right: 13px; bottom: 13px; min-width: 54px; padding: 7px; }
  .floating-line span { width: 35px; height: 35px; }
  .floating-line b { display: none; }
  .product-modal { padding: 12px; align-items: flex-end; }
  .modal-panel { grid-template-columns: 1fr; max-height: calc(100vh - 24px); border-radius: 25px; }
  .modal-visual { min-height: 245px; }
  .modal-product-photo { width: 225px; padding: 42px 0 14px; }
  .modal-product-photo img { max-height: 202px; }
  .modal-content { padding: 35px 25px 28px; }
  .modal-content h2 { font-size: 32px; padding-right: 25px; }
  .modal-close { top: 13px; right: 13px; }
  .modal-actions { flex-direction: column; }
}

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