/* Final consistency and interaction polish shared across the public site and admin. */
html {
  scroll-behavior: smooth;
}

/* Legal centre, policy footer and consent */
.footer-grid {
  grid-template-columns: 1.45fr repeat(4, 1fr);
}
.footer-assurance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
}
.footer-assurance > div {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  background: #103f38;
}
.footer-assurance b {
  color: #fff;
  font-size: 0.78rem;
}
.footer-assurance span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  line-height: 1.55;
}
.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}
.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom-links a:hover {
  color: #d9ef7d;
}
.developer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 17px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.61rem;
  letter-spacing: 0.025em;
}
.developer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}
.developer-credit a:hover {
  color: #d9ef7d;
  transform: translateY(-1px);
}
.developer-credit a i {
  color: #d9ef7d;
  font-size: 0.56rem;
  font-style: normal;
}
.developer-credit > b {
  margin: 0 3px;
  color: rgba(217, 239, 125, 0.45);
}
.cookie-notice {
  position: fixed;
  z-index: 1000;
  right: 22px;
  bottom: 22px;
  width: min(620px, calc(100% - 44px));
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 18px;
  border: 1px solid #dbe4df;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  color: #173c36;
  box-shadow: 0 24px 70px rgba(11, 51, 45, 0.22);
  backdrop-filter: blur(16px);
}
.cookie-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e8f2ed;
  color: #0c6c5e;
  font-weight: 800;
}
.cookie-notice b {
  font-size: 0.83rem;
}
.cookie-notice p {
  margin: 4px 0 2px;
  color: #687b76;
  font-size: 0.66rem;
  line-height: 1.5;
}
.cookie-notice a {
  color: #0b7564;
  font-size: 0.64rem;
  font-weight: 800;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-actions .btn {
  min-height: 40px;
  padding: 9px 13px;
  white-space: nowrap;
  font-size: 0.64rem;
}
.legal-page {
  background: #f5f7f2;
}
.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 86px;
  background: #0d3d36;
  color: #fff;
}
.legal-hero::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -200px;
  width: 470px;
  height: 470px;
  border: 78px solid rgba(217, 239, 125, 0.08);
  border-radius: 50%;
}
.legal-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.legal-hero-inner > div:first-child {
  max-width: 790px;
}
.legal-hero .eyebrow {
  color: #d9ef7d;
}
.legal-hero h1 {
  margin: 14px 0 13px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.065em;
}
.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.7;
}
.legal-date {
  min-width: 165px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.legal-date span,
.legal-nav > span,
.legal-contact-card span {
  display: block;
  color: #8ca09b;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.legal-date strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 0.75rem;
}
.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: start;
  gap: 70px;
}
.legal-nav {
  position: sticky;
  top: 110px;
  padding: 18px;
  border: 1px solid #dce5e0;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(18, 60, 53, 0.06);
}
.legal-nav > span {
  padding: 4px 9px 13px;
  color: #879791;
}
.legal-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 9px;
  color: #46605a;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}
.legal-nav a i {
  font-style: normal;
}
.legal-nav a:hover,
.legal-nav a.active {
  background: #eaf4ef;
  color: #0d7564;
}
.legal-article {
  max-width: 830px;
}
.legal-article > section {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 0 0 33px;
  margin-bottom: 33px;
  border-bottom: 1px solid #dce5e0;
}
.legal-article > section > span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f1ec;
  color: #0e7464;
  font-size: 0.63rem;
  font-weight: 800;
}
.legal-article h2 {
  margin: 3px 0 9px;
  color: #173f38;
  font-size: 1.22rem;
}
.legal-article p {
  margin: 0;
  color: #647873;
  font-size: 0.86rem;
  line-height: 1.85;
}
.legal-notice {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  margin-bottom: 38px;
  padding: 21px 23px;
  border: 1px solid #cfe0d7;
  border-left: 4px solid #0d7564;
  border-radius: 13px;
  background: #edf7f2;
}
.legal-notice b {
  color: #0d7564;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal-contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 55px;
  padding: 35px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(18, 60, 53, 0.08);
}
.legal-contact-card h2 {
  margin: 7px 0;
  font-size: 1.45rem;
}
.legal-contact-actions {
  display: grid;
  gap: 9px;
}
.legal-contact-actions .btn {
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-brand {
    grid-column: span 3;
  }
  .legal-layout {
    gap: 35px;
  }
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-assurance {
    grid-template-columns: 1fr;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 14px;
  }
  .cookie-notice {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 38px 1fr;
  }
  .cookie-icon {
    width: 36px;
    height: 36px;
  }
  .cookie-actions {
    grid-column: 1/-1;
  }
  .cookie-actions .btn {
    flex: 1;
  }
  .legal-hero {
    padding: 68px 0 62px;
  }
  .legal-hero-inner {
    display: block;
  }
  .legal-date {
    margin-top: 28px;
    padding: 0;
    border: 0;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .legal-nav > span {
    grid-column: 1/-1;
  }
  .legal-article > section {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .legal-notice,
  .legal-contact-card {
    grid-template-columns: 1fr;
  }
}
body {
  overflow-x: hidden;
}
img {
  display: block;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(24, 139, 120, 0.28);
  outline-offset: 3px;
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.community-reviews,
#routine {
  scroll-margin-top: 105px;
}
.main-nav .reviews-nav-link {
  position: relative;
}
.main-nav .reviews-nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav .reviews-nav-link:hover::after {
  transform: scaleX(1);
}
.product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-card-body .product-link {
  margin-top: auto;
}
.flash-error {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #f1c8c4;
  border-radius: 9px;
  background: #fff0ee;
  color: #973a34;
  font-weight: 700;
}
.whatsapp {
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  background: #19bd70;
  color: #fff;
  font:
    800 0.9rem 'Manrope',
    sans-serif;
  box-shadow: 0 10px 28px rgba(12, 83, 64, 0.23);
}
.whatsapp img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.react-admin .danger-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #f0d5d2;
  border-radius: 8px;
  background: #fff7f6;
  color: #ae403b;
  font-size: 0.66rem;
  font-weight: 700;
  transition: 0.18s ease;
}
.react-admin .danger-link:hover {
  border-color: #c64c46;
  background: #c64c46;
  color: #fff;
}
.login-mobile-brand {
  display: none;
}
.react-admin .compact-upload-grid > label {
  min-width: 0;
  padding: 14px;
  border-color: #dfe7e3;
  background: #fff;
}
.react-admin .compact-upload-grid > label > span {
  margin-bottom: 11px;
  color: #1d3935;
  font-size: 0.76rem;
}
.react-admin .image-comparison {
  display: flex;
  align-items: stretch;
  gap: 10px;
  min-height: 101px;
  margin-bottom: 11px;
}
.react-admin .image-version {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 5px 10px;
  flex: 1;
  padding: 8px;
  border: 1px solid #e5ebe8;
  border-radius: 10px;
  background: #f9fbfa;
}
.react-admin .image-version > small {
  grid-column: 1 / -1;
  color: #80908b;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.react-admin .image-version > a,
.react-admin .image-version > img,
.react-admin .default-logo-preview {
  position: relative;
  width: 82px !important;
  height: 62px !important;
  min-width: 82px;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 8px;
  background: #e8f1ed;
}
.react-admin .image-version > a > img,
.react-admin .image-version > img {
  width: 82px !important;
  height: 62px !important;
  margin: 0 !important;
  object-fit: cover;
}
.react-admin .image-version > a > i {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(11, 41, 39, 0.88);
  color: #fff;
  font-size: 0.6rem;
  font-style: normal;
}
.react-admin .default-logo-preview {
  display: grid;
  place-items: center;
  background: #0d5b4f;
  color: #d8ef7b;
  font:
    800 1.25rem 'Manrope',
    sans-serif;
}
.react-admin .image-version > b {
  overflow: hidden;
  color: #405853;
  font:
    700 0.64rem/1.4 'DM Sans',
    sans-serif;
}
.react-admin .image-version.new-version {
  border-color: #b7d7cd;
  background: #edf8f3;
}
.react-admin .image-version.new-version > small,
.react-admin .image-version.new-version > b {
  color: #0d7564;
}
.react-admin .compact-upload-grid > label > input[type='file'] {
  width: 100%;
  height: 38px;
  padding: 4px !important;
  overflow: hidden;
  border: 1px solid #d7e1dd;
  border-radius: 9px;
  background: #fafcfb;
  color: #71807b;
  font-size: 0.66rem;
}
.react-admin .compact-upload-grid input[type='file']::file-selector-button {
  height: 28px;
  margin-right: 9px;
  padding: 0 11px;
  border: 0;
  border-radius: 7px;
  background: #e7f2ed;
  color: #0d6b5d;
  font-weight: 800;
  cursor: pointer;
}
.page-recovery {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 30px;
  background: #f4f6f1;
  color: #143b35;
  text-align: center;
}
.page-recovery > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #0d5b4f;
  color: #d8ef7b;
  font:
    800 1.35rem 'Manrope',
    sans-serif;
}
.page-recovery > p:first-of-type {
  margin: 20px 0 0;
  color: #0d7564;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.page-recovery h1 {
  margin: 8px 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.05em;
}
.page-recovery > p:last-of-type {
  margin: 0;
  color: #71817c;
}
.page-recovery > div {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.page-recovery button,
.page-recovery a {
  padding: 11px 16px;
  border: 1px solid #cfdad5;
  border-radius: 10px;
  background: #fff;
  color: #23453f;
  font-weight: 800;
}
.page-recovery button {
  border-color: #0d7564;
  background: #0d7564;
  color: #fff;
}
@media (max-width: 760px) {
  .whatsapp {
    right: 10px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    font-size: 0.75rem;
  }
  .main-nav a::after,
  .main-nav .reviews-nav-link::after {
    display: none;
  }
  .login-mobile-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 42px;
    color: #123a34;
  }
  .login-mobile-brand span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #0d5b4f;
    color: #d9f37e;
    font-weight: 800;
  }
  .react-login > main {
    align-items: start;
    padding-top: 32px;
  }
  .react-admin .image-comparison {
    flex-direction: column;
  }
}

/* Standalone customer reviews page */
.reviews-page-hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 92px;
  background: linear-gradient(132deg, #0b3d35 0%, #0c5d50 100%);
}
.reviews-page-hero::after {
  content: '★';
  position: absolute;
  right: 4%;
  top: -80px;
  color: rgba(217, 239, 125, 0.055);
  font-size: 25rem;
  line-height: 1;
}
.reviews-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
}
.reviews-page-hero h1 {
  margin: 13px 0 16px;
  color: #fff;
  font-size: clamp(3rem, 6vw, 5.7rem);
  letter-spacing: -0.065em;
}
.reviews-page-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.96rem;
  line-height: 1.7;
}
.reviews-hero-score {
  min-width: 175px;
  display: grid;
  justify-items: end;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.reviews-hero-score strong {
  color: #fff;
  font:
    700 3.8rem/1 'Manrope',
    sans-serif;
  letter-spacing: -0.07em;
}
.reviews-hero-score > span {
  margin: 8px 0;
  color: #d9ef7d;
  letter-spacing: 0.12em;
}
.reviews-hero-score small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.reviews-page-section {
  min-height: 620px;
  padding-top: 92px;
}
@media (max-width: 720px) {
  .reviews-page-hero {
    padding: 72px 0 68px;
  }
  .reviews-page-hero-inner {
    display: block;
  }
  .reviews-hero-score {
    min-width: 0;
    justify-items: start;
    margin-top: 32px;
    padding: 0;
    border: 0;
  }
  .reviews-hero-score strong {
    font-size: 3rem;
  }
}

/* Premium contact, social and map experience */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background: linear-gradient(130deg, #0b3e36 0%, #0d5d50 100%);
}
.contact-hero::after {
  content: '';
  position: absolute;
  right: -110px;
  top: -170px;
  width: 460px;
  height: 460px;
  border: 75px solid rgba(217, 239, 125, 0.07);
  border-radius: 50%;
}
.contact-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-hero-inner > div:first-child {
  max-width: 760px;
}
.contact-hero h1 {
  max-width: 760px;
  margin: 12px 0 15px;
  color: #fff;
  font-size: clamp(3rem, 5.5vw, 5.35rem);
  letter-spacing: -0.065em;
}
.contact-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.7;
}
.contact-hero-mark {
  width: 150px;
  height: 150px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #d9ef7d;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.025);
}
.contact-hero-mark span {
  font:
    800 2.2rem/1 'Manrope',
    sans-serif;
}
.contact-hero-mark small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.contact-main-section {
  background: #f5f7f3;
}
.contact-premium-grid {
  grid-template-columns: 0.9fr 1.25fr;
  align-items: start;
  gap: 80px;
}
.contact-copy h2 {
  margin: 11px 0 12px;
  color: #143e37;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.055em;
}
.contact-intro {
  max-width: 440px;
  color: #687b75;
  line-height: 1.75;
}
.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 31px;
}
.contact-methods > a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 12px;
  border: 1px solid #dae4df;
  border-radius: 14px;
  background: #fff;
  color: #183f38;
  text-decoration: none;
  transition: 0.2s ease;
}
.contact-methods > a:hover {
  border-color: #a9c9bf;
  transform: translateX(5px);
  box-shadow: 0 11px 30px rgba(19, 65, 57, 0.08);
}
.contact-method-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e7f1ec;
  color: #0d7463;
  font-weight: 800;
}
.contact-method-icon.whatsapp-method {
  background: #20bd70;
}
.contact-method-icon img {
  width: 21px;
  height: 21px;
}
.contact-methods div {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.contact-methods small {
  color: #8b9a95;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.contact-methods b {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contact-methods > a > i {
  color: #0d7564;
  font-style: normal;
}
.social-connect {
  margin-top: 35px;
}
.social-connect > span {
  display: block;
  margin-bottom: 12px;
  color: #84948f;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.social-connect > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.social-connect a {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid #d9e3de;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(18, 61, 53, 0.055);
  transition: 0.2s ease;
}
.social-connect a:hover {
  transform: translateY(-4px);
  border-color: #b9d2ca;
  box-shadow: 0 13px 28px rgba(18, 61, 53, 0.11);
}
.social-connect img {
  width: 20px;
  height: 20px;
}
.social-connect a span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.premium-contact-form {
  position: relative;
  padding: 35px;
  border: 1px solid #dfe7e3;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 65px rgba(18, 62, 54, 0.09);
}
.contact-form-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3eae6;
}
.contact-form-head > span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #0d7463;
  color: #d9ef7d;
  font-size: 0.66rem;
  font-weight: 800;
}
.contact-form-head h2 {
  margin: 0;
  color: #153f38;
  font-size: 1.35rem;
}
.contact-form-head p {
  margin: 2px 0 0;
  color: #7d8c88;
  font-size: 0.7rem;
}
.premium-contact-form label {
  color: #31524c;
  font-size: 0.68rem;
  font-weight: 800;
}
.premium-contact-form input,
.premium-contact-form textarea {
  background: #f9fbfa;
}
.premium-contact-form .btn {
  width: 100%;
  margin-top: 7px;
}
.form-privacy {
  display: block;
  margin-top: 12px;
  color: #8a9995;
  font-size: 0.59rem;
  line-height: 1.55;
  text-align: center;
}
.contact-map-section {
  background: #fff;
}
.map-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}
.map-section-head h2 {
  margin: 9px 0 0;
  color: #143e37;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.055em;
}
.map-section-head > a {
  padding-bottom: 6px;
  border-bottom: 1px solid #9fb5ae;
  color: #0c6d5e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.map-frame {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid #dbe4df;
  border-radius: 24px;
  background: #e9efeb;
  box-shadow: 0 18px 55px rgba(19, 62, 55, 0.08);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(0.96);
}
.map-address-card {
  position: absolute;
  z-index: 2;
  left: 25px;
  bottom: 25px;
  width: min(370px, calc(100% - 50px));
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(17, 53, 47, 0.18);
  backdrop-filter: blur(12px);
}
.map-pin {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #0d7463;
  color: #d9ef7d;
}
.map-address-card div {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.map-address-card small {
  color: #0d7463;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.map-address-card b {
  color: #224941;
  font-size: 0.78rem;
}
.map-address-card p {
  margin: 0;
  color: #82918d;
  font-size: 0.64rem;
}
@media (max-width: 900px) {
  .contact-premium-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (max-width: 720px) {
  .contact-hero {
    padding: 70px 0;
  }
  .contact-hero-mark {
    display: none;
  }
  .premium-contact-form {
    padding: 23px 18px;
  }
  .map-section-head {
    display: block;
  }
  .map-section-head > a {
    display: inline-block;
    margin-top: 16px;
  }
  .map-frame {
    height: 430px;
  }
  .map-address-card {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
}

/* Refined homepage product collection */
.home-products-first .beauty-products {
  gap: 22px;
}
.home-products-first .beauty-products .product-card {
  padding: 10px;
  overflow: visible;
  border: 1px solid rgba(19, 71, 62, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 35px rgba(25, 65, 58, 0.045);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
.home-products-first .beauty-products .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 117, 100, 0.2);
  box-shadow: 0 23px 55px rgba(25, 65, 58, 0.11);
}
.home-products-first .beauty-products .product-image {
  height: 395px;
  overflow: hidden;
  border-radius: 14px;
}
.home-products-first .product-badge {
  left: 14px;
  top: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(13, 117, 100, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #0d6f60;
  box-shadow: 0 5px 18px rgba(20, 61, 54, 0.09);
  backdrop-filter: blur(8px);
}
.home-products-first .product-quick {
  left: 13px;
  right: 13px;
  bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: 10px;
  background: rgba(12, 82, 71, 0.94);
  color: #fff;
  box-shadow: 0 10px 28px rgba(7, 52, 45, 0.2);
  backdrop-filter: blur(8px);
}
.home-products-first .product-quick i {
  color: #d9ef7d;
  font-style: normal;
  font-size: 0.9rem;
}
.home-products-first .beauty-products .product-card-body {
  padding: 20px 8px 9px;
}
.home-products-first .product-meta {
  min-height: 26px;
}
.home-products-first .rating {
  padding: 5px 8px;
  border-radius: 999px;
  background: #eef4f0;
  color: #46675f;
  font-size: 0.61rem;
}
.home-products-first .beauty-products .product-card-body h3 {
  margin: 10px 0 7px;
  font-size: 1.13rem;
}
.home-products-first .beauty-products .product-card-body p {
  min-height: 45px;
  margin: 0 0 18px;
  font-size: 0.81rem;
  line-height: 1.65;
}
.home-products-first .product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding-top: 13px;
  border-top: 1px solid #e3eae6;
  color: #0d7061;
}
.home-products-first .product-link i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f0eb;
  font-size: 0.7rem;
  font-style: normal;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.home-products-first .product-card:hover .product-link i {
  transform: rotate(45deg);
  background: #d9ef7d;
}
@media (max-width: 720px) {
  .home-products-first .beauty-products .product-image {
    height: 390px;
  }
  .home-products-first .product-quick {
    transform: none;
  }
}

/* Advanced product intelligence cards */
.product-intelligence-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(207, 229, 218, 0.62), transparent 24%),
    linear-gradient(180deg, #f4f7f2 0%, #eef3ee 100%);
}
.product-intelligence-section::before {
  content: '';
  position: absolute;
  right: -130px;
  top: -160px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(15, 108, 93, 0.045);
  border-radius: 50%;
}
.product-intelligence {
  position: relative;
  z-index: 1;
}
.intelligence-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.intelligence-heading h2 {
  max-width: 700px;
  margin: 10px 0 0;
  color: #123f37;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.055em;
}
.intelligence-heading > p {
  max-width: 300px;
  margin: 0 0 5px;
  color: #71827d;
  font-size: 0.82rem;
  line-height: 1.7;
}
.advanced-info-grid {
  gap: 18px;
}
.info-grid .product-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 440px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(15, 88, 75, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(27, 69, 61, 0.075);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}
.info-grid .product-info-card::after {
  content: '';
  position: absolute;
  right: -55px;
  bottom: -60px;
  width: 150px;
  height: 150px;
  border: 30px solid rgba(13, 117, 100, 0.045);
  border-radius: 50%;
}
.info-grid .product-info-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(13, 117, 100, 0.24);
  box-shadow: 0 28px 65px rgba(27, 69, 61, 0.13);
}
.info-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #0d7564;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(13, 117, 100, 0.2);
}
.info-index {
  color: #d7dfdb;
  font:
    700 2.25rem/1 'Manrope',
    sans-serif;
  letter-spacing: -0.07em;
}
.product-info-card .kicker {
  color: #0d7564;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}
.product-info-card h3 {
  max-width: 260px;
  margin: 9px 0 24px;
  color: #153f38;
  font-size: 1.28rem;
  line-height: 1.25;
}
.product-info-card .check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-info-card .check-list li {
  display: grid;
  grid-template-columns: 29px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid #e4ebe7;
  border-radius: 11px;
  background: #f9fbfa;
  color: #34554f;
  font-size: 0.75rem;
}
.product-info-card .check-list li > span {
  width: auto;
  height: auto;
  min-width: 0;
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.5;
}
.product-info-card .check-list i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e3f1eb;
  color: #0d7564;
  font-style: normal;
  font-weight: 800;
}
.usage-card {
  background: linear-gradient(155deg, #0e4e44, #0b6758) !important;
  color: #fff;
}
.usage-card::after {
  border-color: rgba(217, 239, 125, 0.08) !important;
}
.usage-card .info-icon {
  background: #d9ef7d;
  color: #12473e;
}
.usage-card .info-index {
  color: rgba(255, 255, 255, 0.15);
}
.usage-card .kicker {
  color: #d9ef7d;
}
.usage-card h3 {
  color: #fff;
}
.usage-guidance {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 15px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
}
.usage-guidance > span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.usage-guidance b {
  color: #d9ef7d;
  font-size: 0.68rem;
}
.info-grid .usage-guidance p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.65;
}
.product-info-card > small {
  z-index: 1;
  position: static;
  display: block;
  width: 100%;
  height: auto;
  margin-top: auto;
  padding-top: 22px;
  color: #86958f;
  font-size: 0.62rem;
  line-height: 1.55;
}
.usage-card > small {
  color: rgba(255, 255, 255, 0.48);
}
.ingredient-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ingredient-chips > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px 8px 8px;
  border: 1px solid #dae7e1;
  border-radius: 999px;
  background: #f5faf7;
  color: #34564f;
  font-size: 0.69rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}
.ingredient-chips i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfeee7;
  color: #0d7564;
  font-size: 0.54rem;
  font-style: normal;
}
@media (max-width: 980px) {
  .advanced-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  .advanced-info-grid article:last-child {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .intelligence-heading {
    display: block;
  }
  .intelligence-heading > p {
    margin-top: 14px;
  }
  .advanced-info-grid {
    grid-template-columns: 1fr;
  }
  .advanced-info-grid article:last-child {
    grid-column: auto;
  }
  .info-grid .product-info-card {
    min-height: 395px;
  }
}
