:root {
  --beige: #f3e3cf;
  --beige-light: #fff8ef;
  --salmon: #c97772;
  --salmon-dark: #9f514d;
  --gold: #b48835;
  --ink: #2b2724;
  --muted: #70665e;
  --line: rgba(180, 136, 53, 0.28);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(82, 54, 34, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--beige-light);
}

html[dir="rtl"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 8px clamp(18px, 4vw, 64px);
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  direction: ltr;
}

.brand {
  position: relative;
  z-index: 2;
  width: clamp(64px, 7vw, 84px);
  height: clamp(64px, 7vw, 84px);
  flex: 0 0 auto;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  direction: ltr;
}

.language-switcher button {
  width: 46px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1;
  box-shadow: none;
  transform: perspective(120px) rotateX(0deg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.flag {
  width: 30px;
  height: 21px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(43, 39, 36, 0.22);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.45), inset 0 -3px 4px rgba(43, 39, 36, 0.18);
  position: relative;
}

.flag::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.5), transparent 45%, rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

.flag-es {
  background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.flag-en {
  background: #012169 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 36'%3E%3Cpath fill='%23012169' d='M0 0h60v36H0z'/%3E%3Cpath stroke='%23fff' stroke-width='7' d='m0 0 60 36M60 0 0 36'/%3E%3Cpath stroke='%23c8102e' stroke-width='3.5' d='m0 0 60 36M60 0 0 36'/%3E%3Cpath stroke='%23fff' stroke-width='12' d='M30 0v36M0 18h60'/%3E%3Cpath stroke='%23c8102e' stroke-width='7' d='M30 0v36M0 18h60'/%3E%3C/svg%3E") center / cover no-repeat;
}

.flag-fr {
  background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%);
}

.flag-ar {
  background: linear-gradient(90deg, #006c35 0 100%);
  position: relative;
}

.flag-ar::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 7px;
  height: 1.5px;
  background: #fff;
}

.language-switcher button:hover,
.language-switcher button.active {
  transform: perspective(120px) rotateX(7deg) translateY(-2px);
  box-shadow: 0 10px 18px rgba(82, 54, 34, 0.16);
}

.brand img {
  width: auto;
  height: clamp(64px, 7vw, 84px);
  object-fit: contain;
  transform: scale(1.85);
  transform-origin: center;
  translate: 0 12px;
  filter: drop-shadow(0 10px 12px rgba(82, 54, 34, 0.18));
  pointer-events: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

.main-nav > a,
.nav-parent {
  position: relative;
  overflow: hidden;
  padding: 10px 15px;
  border: 1px solid rgba(180, 136, 53, 0.48);
  border-radius: 999px;
  color: #8c6725;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(247, 233, 213, 0.7)),
    rgba(255, 248, 239, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 4px 12px rgba(82, 54, 34, 0.08);
  font-weight: 750;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.main-nav > a::before,
.nav-parent::before {
  content: "";
  position: absolute;
  inset: 3px 10px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 136, 53, 0.6), transparent);
  opacity: 0.72;
}

.nav-parent {
  display: block;
}

.main-nav a:hover,
.nav-dropdown:hover .nav-parent {
  color: #fffaf2;
  border-color: #c99b43;
  background: linear-gradient(135deg, #c49a4b, #9f742a);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 8px 18px rgba(130, 88, 31, 0.22);
  text-shadow: 0 1px 1px rgba(74, 47, 19, 0.25);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: -240px;
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(270px, 360px);
  width: min(760px, 88vw);
  background: var(--white);
  border-bottom: 3px solid var(--salmon);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: 160ms ease;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-categories,
.mega-services {
  padding: 24px;
}

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

.mega-categories a,
.mega-services a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
}

.mega-categories a:hover {
  color: var(--salmon);
}

.mega-services h3 {
  margin: 0 0 8px;
  color: var(--salmon-dark);
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.mega-services strong {
  color: var(--gold);
  white-space: nowrap;
}

.hero {
  min-height: min(760px, calc(100vh - 86px));
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #2b211d;
}

.home-hero {
  padding: clamp(44px, 8vw, 100px) clamp(20px, 6vw, 88px);
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.68;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 23, 18, 0.78), rgba(33, 23, 18, 0.3));
}

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

.hero-content {
  position: relative;
  max-width: 720px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  color: inherit;
}

h1 {
  max-width: 980px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.hero-content p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 650px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.home-hero .hero-content p:not(.eyebrow) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  font-style: italic;
  line-height: 1.62;
}

.hero-actions,
.gift-form {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid rgba(180, 136, 53, 0.5);
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(82, 54, 34, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(82, 54, 34, 0.18);
  filter: brightness(1.04);
}

.button.primary {
  background: linear-gradient(135deg, var(--salmon), var(--salmon-dark));
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.62);
  color: inherit;
}

.split-section,
.image-band,
.philosophy-section,
.products-section,
.treatment-browser,
.giftcard-builder,
.contact-section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 88px);
}

.split-section,
.image-band,
.products-section,
.giftcard-builder,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.copy-stack,
.image-band p,
.products-section p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.image-band {
  background: var(--beige);
}

.image-band-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.image-band-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.philosophy-section {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  background: var(--white);
}

.philosophy-intro {
  position: sticky;
  top: 132px;
}

.philosophy-intro h2 {
  color: var(--salmon-dark);
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.philosophy-story {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
  background: linear-gradient(145deg, #fffaf4, #f8e8d9);
  border: 1px solid var(--line);
  box-shadow: 0 22px 58px rgba(82, 54, 34, 0.1);
}

.philosophy-story::before {
  content: "LANIAN";
  color: rgba(180, 136, 53, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.4em;
}

.philosophy-story p {
  margin: 0;
  color: #5f554e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.82;
}

.philosophy-story .philosophy-lead {
  color: var(--salmon-dark);
  font-size: clamp(1.34rem, 2.15vw, 1.72rem);
  line-height: 1.46;
}

.treatment-card,
.gift-form,
.giftcard-preview {
  background: var(--beige-light);
  border: 1px solid var(--line);
  padding: 24px;
}

.treatment-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  color: var(--salmon-dark);
  font-size: 1.45rem;
}

.treatment-card p,
.note {
  color: var(--muted);
  line-height: 1.65;
}

.note {
  margin: 28px 0 0;
  font-size: 0.95rem;
}

.skin-clinic-section {
  position: relative;
  align-items: stretch;
  background: linear-gradient(135deg, var(--white), var(--beige-light) 58%, #f8ddd2);
  overflow: hidden;
}

.skin-clinic-copy {
  align-self: center;
}

.skin-clinic-copy h2 {
  color: var(--salmon-dark);
}

.skin-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.skin-highlights article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 6px 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.skin-highlights strong {
  grid-row: span 2;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.skin-highlights span {
  color: var(--ink);
  font-weight: 800;
}

.skin-highlights p {
  margin: 0;
  font-size: 0.98rem;
}

.skin-clinic-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.skin-product-card {
  width: min(100%, 620px);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 248, 239, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

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

.product-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: 0 12px 30px rgba(82, 54, 34, 0.08);
  font-weight: 800;
}

.product-showcase a {
  display: grid;
  grid-template-rows: 112px auto auto;
  gap: 8px;
  min-height: 214px;
  padding: 14px;
  background: var(--white);
  border: 1px solid rgba(180, 136, 53, 0.18);
  box-shadow: 0 12px 30px rgba(82, 54, 34, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-showcase a:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(82, 54, 34, 0.14);
}

.product-showcase img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  background: #fbf7f1;
}

.product-showcase span {
  min-height: auto;
  display: block;
  padding: 0;
  background: transparent;
  border-left: 0;
  box-shadow: none;
  color: var(--salmon-dark);
  line-height: 1.2;
}

.product-showcase small {
  color: var(--muted);
  line-height: 1.35;
}

.page-hero {
  padding: clamp(60px, 9vw, 120px) clamp(20px, 6vw, 88px);
  background: var(--beige);
}

.page-hero.compact {
  padding-bottom: 60px;
}

.treatments-hero {
  padding-top: clamp(40px, 5vw, 62px);
  padding-bottom: clamp(34px, 4vw, 46px);
}

.treatments-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4.45rem);
}

.treatments-hero p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.55;
}

.gift-hero {
  background: linear-gradient(135deg, var(--beige), #fff6ec 58%, #f5d4c8);
}

.compact-gift-hero {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(38px, 4vw, 52px);
}

.compact-gift-hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.65rem);
}

.compact-gift-hero p:not(.eyebrow) {
  margin-bottom: 0;
}

.treatment-browser {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 28px;
  align-items: start;
}

.category-panel {
  position: sticky;
  top: 112px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.category-panel h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.category-panel button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(180, 136, 53, 0.18);
  background: transparent;
  color: var(--ink);
  padding: 14px 6px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.category-panel button.active {
  color: var(--salmon-dark);
  font-weight: 800;
}

.treatment-panel {
  min-width: 0;
}

.treatment-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 20px;
}

.treatment-panel-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.treatment-panel-head span {
  color: var(--gold);
  font-weight: 800;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.treatment-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.treatment-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.treatment-card-meta strong {
  color: var(--gold);
  font-size: 1.2rem;
}

.giftcard-builder {
  align-items: stretch;
  gap: clamp(22px, 4vw, 52px);
  background: linear-gradient(135deg, #fffaf4, #f8e7d7);
}

.gift-form {
  flex-direction: column;
  align-self: center;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(82, 54, 34, 0.1);
}

label {
  display: grid;
  gap: 8px;
  color: var(--salmon-dark);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

.giftcard-preview {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
  padding: clamp(26px, 4vw, 44px);
  background: radial-gradient(circle at 88% 12%, rgba(180, 136, 53, 0.22), transparent 28%), linear-gradient(145deg, #fffdf9, #f6e6d4);
  border: 1px solid rgba(180, 136, 53, 0.32);
  box-shadow: var(--shadow);
}

.giftcard-preview img {
  width: 126px;
  height: 126px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 999px;
}

.giftcard-preview h2 {
  color: var(--salmon-dark);
}

.gift-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin: 24px 0;
  color: var(--muted);
}

.giftcard-preview strong {
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.print-button {
  margin-top: 26px;
  align-self: flex-start;
  color: var(--salmon-dark);
}

.contact-section {
  min-height: calc(100vh - 160px);
  background: var(--beige);
}

.contact-copy h1 {
  color: var(--salmon);
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  overflow-wrap: normal;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-details a,
.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--salmon-dark);
}

.contact-details .icon {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.map-frame {
  min-height: 520px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(300px, 1.25fr) minmax(320px, 1fr) minmax(150px, 0.55fr);
  gap: clamp(28px, 4vw, 58px);
  padding: 42px clamp(20px, 6vw, 88px) 204px;
  background: var(--ink);
  color: var(--beige-light);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--beige);
}

.footer-brand,
.footer-authorized,
.footer-social {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  grid-template-columns: 108px minmax(0, 1fr);
  column-gap: 18px;
}

.footer-brand img {
  grid-row: 1 / span 2;
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 999px;
}

.footer-brand p {
  max-width: 320px;
  align-self: end;
  color: rgba(255, 248, 239, 0.78);
  line-height: 1.55;
}

.footer-brand a {
  align-self: start;
}

.footer-authorized > p,
.footer-social p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-social a {
  width: fit-content;
  transition: color 160ms ease;
}

.footer-social a:hover {
  color: var(--white);
}

.footer-social div {
  display: grid;
  gap: 9px;
}

.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 136, 53, 0.6);
  color: var(--gold);
  font-weight: 900;
  border-radius: 999px;
}

.icon {
  position: relative;
  display: inline-block;
}

.icon::before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-instagram {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5Zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7Zm5 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2.2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6ZM17.5 6a1.2 1.2 0 1 1 0 2.4 1.2 1.2 0 0 1 0-2.4Z'/%3E%3C/svg%3E");
}

.icon-whatsapp {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a9.7 9.7 0 0 1 8.4 14.6L22 22l-5.6-1.5A9.7 9.7 0 1 1 12 2Zm0 2a7.7 7.7 0 0 0-6.6 11.7l.3.5-.9 3 3.1-.8.5.3A7.7 7.7 0 1 0 12 4Zm-3 3.8c.2 0 .5 0 .7.5l.8 1.8c.1.3.1.5-.1.7l-.6.7c.7 1.4 1.8 2.5 3.2 3.2l.7-.8c.2-.2.5-.2.7-.1l1.9.9c.3.1.4.3.4.6 0 .8-.3 1.6-.9 2-.6.5-1.5.7-2.3.4-1.4-.4-3.1-1.2-4.8-2.7-1.4-1.3-2.4-2.8-2.8-4.1-.4-1.1 0-2 .5-2.6.4-.4.9-.6 1.4-.6Z'/%3E%3C/svg%3E");
}

.icon-facebook {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4.2c-.5-.1-2.2-.2-4.1-.2C9 4 6.3 6.4 6.3 6.9V11H3v4.2h3.3V24h4.1v-8.8h3.4l.6-4.2h-4V7.3c0-1.2.4-2 2.1-2H14V8Z'/%3E%3C/svg%3E");
}

.icon-phone {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 2.8 9.2 2c.8-.2 1.6.2 1.9 1l1.2 3.4c.2.7 0 1.4-.6 1.8l-1.5 1a15.2 15.2 0 0 0 4.7 4.7l1-1.5c.4-.6 1.1-.8 1.8-.6l3.4 1.2c.8.3 1.2 1.1 1 1.9l-.8 2.6c-.3.9-1.1 1.5-2 1.5C10.8 19 5 13.2 5 5c0-.9.6-1.7 1.6-2.2Z'/%3E%3C/svg%3E");
}

.icon-email {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 4h18a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm9 8 8-5.2V6l-8 5-8-5v.8l8 5.2Z'/%3E%3C/svg%3E");
}

.icon-pin {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a8 8 0 0 1 8 8c0 5.3-8 14-8 14S4 14.3 4 9a8 8 0 0 1 8-8Zm0 4.5A3.5 3.5 0 1 0 12 12a3.5 3.5 0 0 0 0-7Z'/%3E%3C/svg%3E");
}

.icon-clock {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm1 4h-2v7l5 3 1-1.7-4-2.3V6Z'/%3E%3C/svg%3E");
}

.authorization-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.authorization-logos img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(180, 136, 53, 0.42);
}

.floating-contact {
  position: fixed;
  right: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 30;
  display: grid;
  gap: 10px;
  direction: ltr;
}

.float-action {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px 10px 10px;
  color: var(--white);
  border: 1px solid rgba(180, 136, 53, 0.72);
  border-left: 4px solid var(--action-accent, var(--gold));
  background: linear-gradient(135deg, rgba(66, 53, 42, 0.97), rgba(39, 32, 27, 0.98));
  box-shadow: 0 16px 34px rgba(43, 39, 36, 0.3);
  font-weight: 900;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.float-action::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -30px;
  z-index: -1;
  width: 104px;
  height: 104px;
  background: url("wax.png") center / cover no-repeat;
  border-radius: 999px;
  opacity: 0.16;
  transform: rotate(-12deg);
}

.float-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(43, 39, 36, 0.28);
  filter: brightness(1.05);
}

.float-action span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.call-action {
  --action-accent: #d3a84a;
}

.whatsapp-action {
  --action-accent: #37c873;
}

.email-action {
  --action-accent: #cf7d77;
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 10px;
    padding: 7px 14px;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-content: end;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 0;
  }

  .main-nav > a,
  .nav-parent {
    width: 100%;
    min-width: 0;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-dropdown {
    min-width: 0;
  }

  .mega-menu {
    display: none !important;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:nth-child(2) {
    display: none;
  }

  .split-section,
  .image-band,
  .products-section,
  .giftcard-builder,
  .contact-section,
  .treatment-browser {
    grid-template-columns: 1fr;
  }

  .category-panel {
    position: static;
  }

  .philosophy-section {
    grid-template-columns: 1fr;
  }

  .philosophy-intro {
    position: static;
  }

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

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

  .skin-product-card {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 8px;
    min-height: 62px;
    padding: 6px 12px;
  }

.brand img {
  height: 48px;
  transform: scale(1.05);
  translate: 0 4px;
}

  .brand {
    width: 48px;
    height: 48px;
  }

  .language-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-content: end;
    gap: 4px;
  }

  .language-switcher button {
    width: 31px;
    height: 28px;
  }

  .flag {
    width: 22px;
    height: 15px;
  }

  .nav-toggle {
    display: none !important;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    font-size: 0.64rem;
  }

  .main-nav > a,
  .nav-parent {
    width: 100%;
    min-width: 0;
    padding: 7px 3px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-dropdown {
    min-width: 0;
  }

  .mega-menu {
    display: none !important;
  }

  h1 {
    font-size: clamp(2.4rem, 16vw, 4rem);
  }

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

  .image-band-photos {
    grid-template-columns: 1fr;
  }

  .treatment-panel-head,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 96px;
  }

  .footer-brand {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .footer-brand img {
    width: 82px;
    height: 82px;
  }

  .giftcard-preview {
    min-height: 440px;
  }

  .floating-contact {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .float-action {
    justify-content: center;
    min-width: 0;
    padding: 10px;
    overflow: hidden;
  }

  .float-action strong {
    min-width: 0;
    font-size: 0.72rem;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
  }

  .float-action span {
    flex: 0 0 auto;
  }
}

@media print {
  .site-header,
  .gift-form,
  .site-footer,
  .floating-contact,
  .print-button {
    display: none;
  }

  body {
    background: var(--white);
  }

  .giftcard-builder {
    display: block;
    padding: 0;
  }

  .giftcard-preview {
    min-height: 90vh;
    box-shadow: none;
  }
}
