:root {
  --ink: #0b2746;
  --ink-soft: #38536b;
  --teal: #07998f;
  --teal-dark: #006c67;
  --teal-pale: #dff7f3;
  --orange: #ff7a17;
  --magenta: #e51d88;
  --green: #14853c;
  --blue: #159ddd;
  --cream: #f6fbfa;
  --white: #ffffff;
  --line: rgba(11, 39, 70, 0.12);
  --shadow: 0 24px 70px rgba(1, 64, 61, 0.14);
  --radius-lg: 38px;
  --radius-md: 26px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--orange);
  color: var(--white);
}

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

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(80px);
  pointer-events: none;
}

.ambient-one {
  width: 360px;
  height: 360px;
  top: 12%;
  left: -200px;
  background: rgba(7, 153, 143, 0.3);
}

.ambient-two {
  width: 440px;
  height: 440px;
  top: 48%;
  right: -260px;
  background: rgba(255, 122, 23, 0.18);
}

.ambient-three {
  width: 340px;
  height: 340px;
  bottom: 2%;
  left: 20%;
  background: rgba(229, 29, 136, 0.1);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  min-height: 30px;
  align-items: center;
}

.topbar a {
  color: var(--white);
  font-weight: 750;
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: 76px;
  margin-top: 10px;
  padding: 9px 12px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 45px rgba(8, 45, 65, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(11, 39, 70, 0.1);
  border-radius: 50%;
  background: var(--white);
  object-fit: cover;
}

.brand span {
  display: grid;
}

.brand strong {
  color: var(--ink);
  font-size: 1.06rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--teal-dark);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-menu > a:not(.nav-cta) {
  padding: 11px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.nav-menu > a:not(.nav-cta):hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 10px 22px rgba(7, 153, 143, 0.24);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.nav-cta:hover {
  background: var(--teal-dark);
  box-shadow: 0 14px 28px rgba(7, 153, 143, 0.28);
  transform: translateY(-2px);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 830px;
  padding: 178px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 30%, rgba(255, 122, 23, 0.12), transparent 21%),
    radial-gradient(circle at 8% 50%, rgba(7, 153, 143, 0.12), transparent 27%),
    linear-gradient(145deg, #f8fcfb 5%, #ebf8f6 56%, #fdf8f1 100%);
}

.hero::before {
  position: absolute;
  width: 440px;
  height: 440px;
  top: 142px;
  right: -160px;
  border: 1px solid rgba(7, 153, 143, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 62px rgba(7, 153, 143, 0.035),
    0 0 0 124px rgba(7, 153, 143, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.88fr);
  gap: 72px;
  align-items: center;
}

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

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 23, 0.16);
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 20px;
  color: var(--ink);
  font-size: clamp(3.45rem, 6.4vw, 6.2rem);
  font-weight: 900;
  letter-spacing: -0.064em;
  line-height: 0.92;
}

.hero h1 em {
  position: relative;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  width: 96%;
  height: 9px;
  right: 0;
  bottom: 0.03em;
  border-radius: 50%;
  background: rgba(255, 122, 23, 0.65);
  content: "";
  transform: rotate(-2deg);
}

.hero-lead {
  max-width: 630px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 23px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--teal);
  box-shadow: 0 15px 30px rgba(7, 153, 143, 0.24);
  color: var(--white);
}

.button-primary:hover {
  background: var(--teal-dark);
  box-shadow: 0 19px 34px rgba(7, 153, 143, 0.3);
}

.button-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

.button-ghost {
  border-color: rgba(11, 39, 70, 0.13);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  border-color: rgba(7, 153, 143, 0.25);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(11, 39, 70, 0.09);
}

.trust-row {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  align-items: center;
}

.trust-row > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.trust-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(7, 153, 143, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.trust-row p {
  display: grid;
  margin: 0;
}

.trust-row strong {
  font-size: 0.78rem;
}

.trust-row small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-photo {
  position: absolute;
  width: min(450px, 92%);
  height: 570px;
  top: 7px;
  right: 2%;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border-radius: 190px 190px 46px 46px;
  transform: rotate(1.5deg);
}

.hero-photo::after {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 58%, rgba(4, 31, 48, 0.82));
  content: "";
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  border-radius: 180px 180px 38px 38px;
  object-fit: cover;
  object-position: center 26%;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  color: var(--white);
}

.hero-photo figcaption span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 500;
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  animation: orbit 10s linear infinite;
}

.orbit-one {
  width: 480px;
  height: 480px;
  top: 65px;
  right: -4%;
  border: 1px dashed rgba(7, 153, 143, 0.25);
}

.orbit-two {
  width: 355px;
  height: 355px;
  top: 127px;
  right: 8%;
  border: 1px solid rgba(255, 122, 23, 0.18);
  animation-direction: reverse;
  animation-duration: 13s;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  width: 238px;
  gap: 11px;
  padding: 15px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 44px rgba(6, 47, 63, 0.15);
  backdrop-filter: blur(18px);
  animation: float 4.5s ease-in-out infinite;
}

.floating-card > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.floating-card p {
  display: grid;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.45;
}

.floating-card strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.82rem;
}

.floating-card-top {
  top: 92px;
  left: -37px;
}

.floating-card-bottom {
  right: -38px;
  bottom: 57px;
  animation-delay: -2s;
}

.floating-card-bottom > span {
  background: #fff1e6;
  color: var(--orange);
  font-size: 1.25rem;
}

.hero-wave {
  position: absolute;
  height: 78px;
  right: -2%;
  bottom: -47px;
  left: -2%;
  border-radius: 50% 50% 0 0;
  background: var(--cream);
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2,
.about-copy h2,
.wholesale-content h2,
.faq-intro h2,
.final-cta h2 {
  margin: 13px 0 0;
  font-size: clamp(2.4rem, 4.5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.052em;
  line-height: 1;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: end;
}

.split-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.catalog-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 52px;
}

.catalog-shot {
  position: relative;
  height: 470px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background: #dff4f1;
  box-shadow: 0 20px 50px rgba(5, 53, 69, 0.12);
  isolation: isolate;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}

.catalog-shot:hover {
  box-shadow: 0 28px 62px rgba(5, 53, 69, 0.18);
  transform: translateY(-8px);
}

.catalog-shot::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(4, 29, 43, 0.22) 68%,
    rgba(4, 29, 43, 0.86) 100%
  );
  content: "";
  pointer-events: none;
}

.catalog-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.catalog-shot:hover img {
  transform: scale(1.035);
}

.catalog-shot-primary img,
.catalog-shot-home img {
  object-position: center center;
}

.catalog-shot-business img {
  object-position: center 46%;
}

.catalog-shot figcaption {
  position: absolute;
  z-index: 2;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: grid;
  color: var(--white);
}

.catalog-shot figcaption span {
  margin-bottom: 7px;
  color: #a9f2e9;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.catalog-shot figcaption strong {
  max-width: 320px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.catalog-shot figcaption small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.catalog-subheading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 45px;
  margin-bottom: 27px;
  padding: 0 5px;
  align-items: end;
}

.catalog-subheading h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.catalog-subheading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.72;
}

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

.product-card {
  position: relative;
  min-height: 335px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 40px rgba(5, 53, 69, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card:hover {
  border-color: rgba(7, 153, 143, 0.26);
  box-shadow: 0 24px 54px rgba(5, 53, 69, 0.14);
  transform: translateY(-8px);
}

.product-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: rgba(11, 39, 70, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-drop {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 25px 25px 25px 7px;
  background: var(--product-pale);
  transform: rotate(45deg);
}

.product-drop span {
  width: 28px;
  height: 38px;
  border: 2px solid var(--product-color);
  border-radius: 50% 50% 53% 47%;
  opacity: 0.92;
  transform: rotate(-45deg);
}

.product-eyebrow {
  color: var(--product-color);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 8px 0 9px;
  color: var(--ink);
  font-size: 1.52rem;
  letter-spacing: -0.03em;
}

.product-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.68;
}

.product-card a {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--product-color);
  font-size: 0.76rem;
  font-weight: 850;
}

.product-teal {
  --product-color: #078d83;
  --product-pale: #dff7f3;
}

.product-orange {
  --product-color: #ef6b08;
  --product-pale: #fff0e4;
}

.product-green {
  --product-color: #16823a;
  --product-pale: #e5f5e8;
}

.product-magenta {
  --product-color: #d81a7d;
  --product-pale: #fce5f2;
}

.product-blue {
  --product-color: #147fb3;
  --product-pale: #e2f4fc;
}

.product-yellow {
  --product-color: #ac7600;
  --product-pale: #fff6cf;
}

.catalog-order {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  margin-top: 22px;
  padding: 29px 31px;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
}

.catalog-order::before {
  position: absolute;
  width: 260px;
  height: 260px;
  right: 18%;
  bottom: -205px;
  border: 1px solid rgba(7, 153, 143, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 35px rgba(7, 153, 143, 0.035),
    0 0 0 70px rgba(7, 153, 143, 0.02);
  content: "";
}

.catalog-order-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100px;
  height: 100px;
  padding: 7px;
  place-items: center;
  border: 1px solid rgba(7, 153, 143, 0.13);
  border-radius: 27px;
  background: rgba(223, 247, 243, 0.72);
}

.catalog-order-logo img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
}

.catalog-order-copy {
  position: relative;
  z-index: 1;
}

.catalog-order-copy h3 {
  margin: 7px 0 5px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.catalog-order-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.catalog-order-tags {
  display: flex;
  gap: 7px;
  margin-top: 13px;
  flex-wrap: wrap;
}

.catalog-order-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(7, 153, 143, 0.12);
  border-radius: 999px;
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 0.62rem;
  font-weight: 800;
}

.catalog-order-action {
  position: relative;
  z-index: 1;
}

.catalog-order-action .button {
  white-space: nowrap;
}

.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 122, 23, 0.17), transparent 24%),
    linear-gradient(135deg, #073538, #006c67);
  color: var(--white);
}

.about-section::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -260px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.025),
    0 0 0 130px rgba(255, 255, 255, 0.018);
  content: "";
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 72px;
  align-items: center;
}

.section-kicker-light {
  color: #8ee5dc;
}

.about-copy h2 {
  max-width: 500px;
}

.about-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  line-height: 1.83;
}

.about-tags {
  display: flex;
  gap: 9px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

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

.process-card {
  min-height: 230px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.process-card > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #8ee5dc;
  font-size: 0.68rem;
  font-weight: 900;
}

.process-card h3 {
  margin: 34px 0 8px;
  font-size: 1.2rem;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  line-height: 1.7;
}

.wholesale-section {
  background:
    radial-gradient(circle at 15% 65%, rgba(229, 29, 136, 0.07), transparent 22%),
    var(--cream);
}

.wholesale-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 50px;
  padding: 62px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.wholesale-card::before {
  position: absolute;
  width: 280px;
  height: 280px;
  top: -160px;
  right: -60px;
  border-radius: 50%;
  background: rgba(7, 153, 143, 0.1);
  content: "";
  filter: blur(4px);
}

.wholesale-content {
  position: relative;
  z-index: 1;
}

.wholesale-content h2 {
  max-width: 610px;
}

.wholesale-content p {
  max-width: 600px;
  margin: 22px 0 28px;
  color: var(--ink-soft);
  line-height: 1.82;
}

.wholesale-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.wholesale-points > div {
  display: flex;
  gap: 15px;
  padding: 18px;
  align-items: center;
  border: 1px solid rgba(7, 153, 143, 0.12);
  border-radius: 20px;
  background: rgba(223, 247, 243, 0.54);
}

.wholesale-points span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--white);
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 900;
}

.wholesale-points p {
  display: grid;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.wholesale-points strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.86rem;
}

.info-section {
  padding-top: 80px;
}

.centered-heading {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 46px;
  margin-left: auto;
  text-align: center;
}

.centered-heading p {
  max-width: 630px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

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

.info-card {
  min-height: 335px;
  padding: 34px;
  border: 1px solid rgba(11, 39, 70, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 15px 42px rgba(6, 44, 63, 0.07);
  backdrop-filter: blur(16px);
}

.info-label {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 14px 0 22px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.hours-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  padding: 13px 0;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.hours-list strong {
  color: var(--ink);
}

.info-card > small {
  display: block;
  margin-top: 16px;
  color: #758696;
  font-size: 0.7rem;
  line-height: 1.5;
}

.info-card-highlight {
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(140deg, var(--teal), var(--teal-dark));
  color: var(--white);
}

.info-card-highlight .info-label {
  color: #9af1e8;
}

.info-card-highlight h3 {
  margin-bottom: 15px;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.info-card-highlight p {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
}

.info-card-highlight a,
.map-copy a {
  display: inline-flex;
  gap: 12px;
  margin-top: 30px;
  align-items: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 850;
}

.map-card {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  padding: 0;
  overflow: hidden;
}

.map-copy {
  position: relative;
  z-index: 2;
  padding: 44px;
  background: var(--ink);
  color: var(--white);
}

.map-copy .info-label {
  color: #8ee5dc;
}

.map-copy h3 {
  margin-bottom: 12px;
}

.map-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.map-visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background:
    linear-gradient(30deg, transparent 48%, rgba(7, 153, 143, 0.09) 49%, rgba(7, 153, 143, 0.09) 51%, transparent 52%),
    linear-gradient(-27deg, transparent 48%, rgba(255, 122, 23, 0.09) 49%, rgba(255, 122, 23, 0.09) 51%, transparent 52%),
    #e7f5f2;
  background-size: 90px 90px, 120px 120px, auto;
}

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

.map-visual::before {
  width: 260px;
  height: 260px;
  top: -110px;
  right: -70px;
  background: rgba(255, 122, 23, 0.12);
}

.map-visual::after {
  width: 170px;
  height: 170px;
  right: 35%;
  bottom: -90px;
  background: rgba(7, 153, 143, 0.15);
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  top: 45%;
  left: 54%;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  box-shadow: 0 14px 25px rgba(11, 39, 70, 0.25);
  color: var(--white);
  transform: rotate(-45deg);
}

.map-pin::before {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.road-one,
.road-two,
.road-three {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 0 0 1px rgba(11, 39, 70, 0.06);
}

.road-one {
  width: 130%;
  height: 18px;
  top: 41%;
  left: -10%;
  transform: rotate(-16deg);
}

.road-two {
  width: 110%;
  height: 12px;
  top: 65%;
  left: -5%;
  transform: rotate(24deg);
}

.road-three {
  width: 12px;
  height: 135%;
  top: -15%;
  left: 31%;
  transform: rotate(10deg);
}

.faq-section {
  padding-top: 76px;
  background: linear-gradient(180deg, transparent, rgba(223, 247, 243, 0.35));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(460px, 1.1fr);
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 150px;
}

.faq-intro p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(11, 39, 70, 0.09);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(6, 44, 63, 0.055);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.faq-list details[open] {
  border-color: rgba(7, 153, 143, 0.24);
  background: var(--white);
}

.faq-list summary {
  display: flex;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--teal-dark);
  content: "+";
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -5px 24px 23px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.72;
}

.final-cta {
  padding: 45px 0 88px;
  background: linear-gradient(180deg, rgba(223, 247, 243, 0.35), transparent);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  padding: 38px 45px;
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 50%, rgba(255, 255, 255, 0.15), transparent 16%),
    linear-gradient(135deg, #0c3c41, var(--teal-dark));
  box-shadow: 0 26px 60px rgba(1, 64, 61, 0.22);
  color: var(--white);
}

.final-cta-inner::after {
  position: absolute;
  width: 190px;
  height: 190px;
  right: 18%;
  bottom: -130px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.03);
  content: "";
}

.final-cta img {
  width: 86px;
  height: 86px;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  object-fit: cover;
}

.final-cta div > span {
  color: #9af1e8;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.final-cta h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.button-light {
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.13);
  color: var(--teal-dark);
}

.button-light:hover {
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.site-footer {
  padding: 70px 0 24px;
  background: #071d32;
  color: rgba(255, 255, 255, 0.67);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 0.7fr 0.9fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand img {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 380px;
  margin: 20px 0 0;
  font-size: 0.84rem;
  line-height: 1.75;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 0.8rem;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.82rem;
}

.footer-grid a {
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #8ee5dc;
}

.footer-bottom {
  display: flex;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.69rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  min-height: 60px;
  padding: 7px 15px 7px 7px;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #20b358;
  box-shadow: 0 16px 34px rgba(18, 130, 68, 0.3);
  color: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 20px 38px rgba(18, 130, 68, 0.38);
  transform: translateY(-3px) scale(1.02);
}

.whatsapp-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.16rem;
  transform: rotate(-22deg);
}

.whatsapp-label {
  display: grid;
  min-width: 45px;
}

.whatsapp-label small {
  font-size: 0.59rem;
  opacity: 0.8;
}

.whatsapp-label strong {
  font-size: 0.87rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid [data-reveal]:nth-child(2),
.process-grid [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

.product-grid [data-reveal]:nth-child(3),
.process-grid [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

.product-grid [data-reveal]:nth-child(4),
.process-grid [data-reveal]:nth-child(4) {
  transition-delay: 0.06s;
}

.product-grid [data-reveal]:nth-child(5) {
  transition-delay: 0.14s;
}

.product-grid [data-reveal]:nth-child(6) {
  transition-delay: 0.22s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

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

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
    gap: 35px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 7vw, 5rem);
  }

  .floating-card-top {
    left: -15px;
  }

  .floating-card-bottom {
    right: -10px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
    gap: 45px;
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 92px;
  }

  .topbar {
    display: none;
  }

  .nav-shell {
    min-height: 68px;
    margin-top: 10px;
  }

  .menu-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
  }

  .menu-button {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 12px;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(11, 39, 70, 0.1);
    border-radius: 15px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-button span {
    width: 100%;
    height: 2px;
    border-radius: 9px;
    background: var(--ink);
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .menu-toggle:focus-visible + .menu-button {
    outline: 3px solid rgba(7, 153, 143, 0.25);
    outline-offset: 2px;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 50px rgba(8, 45, 65, 0.17);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease;
    backdrop-filter: blur(22px);
  }

  .menu-toggle:checked ~ .nav-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-menu > a:not(.nav-cta) {
    padding: 13px 15px;
  }

  .nav-cta {
    margin-top: 4px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 120px;
  }

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

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

  .eyebrow {
    justify-content: center;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(560px, 100%);
    min-height: 610px;
    margin-inline: auto;
  }

  .hero-photo {
    right: 50%;
    transform: translateX(50%) rotate(1.5deg);
  }

  .floating-card-top {
    left: 0;
  }

  .floating-card-bottom {
    right: 0;
  }

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

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

  .catalog-shot-primary {
    grid-column: 1 / -1;
    height: 520px;
  }

  .catalog-shot-home,
  .catalog-shot-business {
    height: 390px;
  }

  .catalog-subheading {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .catalog-order {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .catalog-order-action {
    grid-column: 1 / -1;
  }

  .catalog-order-action .button {
    width: 100%;
  }

  .about-grid,
  .wholesale-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 50px;
  }

  .wholesale-card {
    gap: 38px;
  }

  .faq-grid {
    gap: 38px;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 560px);
  }

  .nav-shell {
    padding: 7px 8px 7px 10px;
    border-radius: 20px;
  }

  .brand img {
    width: 49px;
    height: 49px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    max-width: 140px;
    overflow: hidden;
    font-size: 0.58rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    margin-top: 21px;
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.93;
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.72;
  }

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

  .button {
    width: 100%;
  }

  .trust-row {
    gap: 14px;
    align-items: stretch;
  }

  .trust-row > div {
    min-width: 0;
    flex: 1;
    padding: 11px;
    border: 1px solid rgba(11, 39, 70, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.54);
  }

  .trust-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .hero-visual {
    min-height: 510px;
  }

  .hero-photo {
    width: min(390px, 94%);
    height: 480px;
    border-radius: 150px 150px 37px 37px;
  }

  .hero-photo img {
    border-radius: 142px 142px 30px 30px;
    object-position: center 24%;
  }

  .hero-photo figcaption {
    right: 27px;
    bottom: 27px;
    left: 27px;
  }

  .hero-photo figcaption strong {
    font-size: 1.3rem;
  }

  .orbit-one {
    width: 390px;
    height: 390px;
    top: 45px;
    right: 50%;
    transform: translateX(50%);
  }

  .orbit-two {
    display: none;
  }

  .floating-card {
    width: 200px;
    padding: 11px;
  }

  .floating-card > span {
    width: 36px;
    height: 36px;
  }

  .floating-card-top {
    top: 50px;
    left: -2px;
  }

  .floating-card-bottom {
    right: -2px;
    bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading h2,
  .about-copy h2,
  .wholesale-content h2,
  .faq-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

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

  .product-card {
    min-height: 292px;
    padding: 18px;
    border-radius: 22px;
  }

  .product-number {
    top: 16px;
    right: 17px;
  }

  .product-drop {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 18px 18px 18px 6px;
  }

  .product-drop span {
    width: 21px;
    height: 29px;
  }

  .product-eyebrow {
    display: block;
    min-height: 29px;
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .product-card h3 {
    margin-top: 5px;
    font-size: 1.16rem;
  }

  .product-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card a {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.68rem;
  }

  .catalog-visual-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 13px;
    margin-bottom: 40px;
  }

  .catalog-shot {
    height: 310px;
    border-radius: 22px;
  }

  .catalog-shot-primary {
    grid-column: 1 / -1;
    height: 410px;
  }

  .catalog-shot figcaption {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .catalog-shot figcaption strong {
    font-size: 0.96rem;
  }

  .catalog-shot figcaption span {
    font-size: 0.55rem;
  }

  .catalog-subheading {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 22px;
  }

  .catalog-order {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 24px 20px;
    text-align: center;
  }

  .catalog-order-logo {
    width: 88px;
    height: 88px;
    margin-inline: auto;
  }

  .catalog-order-logo img {
    width: 74px;
    height: 74px;
  }

  .catalog-order-tags {
    justify-content: center;
  }

  .catalog-order-action {
    grid-column: auto;
  }

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

  .process-card {
    min-height: 210px;
    padding: 19px;
    border-radius: 22px;
  }

  .process-card h3 {
    margin-top: 26px;
    font-size: 1rem;
  }

  .process-card p {
    font-size: 0.71rem;
  }

  .wholesale-card {
    padding: 31px 22px;
    border-radius: 28px;
  }

  .wholesale-content p {
    font-size: 0.9rem;
  }

  .wholesale-points > div {
    padding: 14px;
  }

  .info-section {
    padding-top: 62px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    min-height: 0;
    padding: 27px 22px;
    border-radius: 23px;
  }

  .hours-list li {
    display: grid;
    gap: 3px;
  }

  .info-card-highlight h3 {
    font-size: 2.55rem;
  }

  .map-card {
    grid-column: auto;
    grid-template-columns: 1fr;
    padding: 0;
  }

  .map-copy {
    padding: 29px 24px;
  }

  .map-visual {
    min-height: 230px;
  }

  .faq-list summary {
    padding: 19px;
    font-size: 0.84rem;
  }

  .faq-list details p {
    margin: -4px 19px 20px;
  }

  .final-cta {
    padding-bottom: 65px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 30px 24px;
    text-align: center;
  }

  .final-cta img {
    width: 72px;
    height: 72px;
    margin-inline: auto;
  }

  .final-cta .button {
    width: 100%;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 56px;
    padding-right: 13px;
  }

  .whatsapp-mark {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 390px) {
  .brand small {
    display: none;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .catalog-visual-grid {
    grid-template-columns: 1fr;
  }

  .catalog-shot-primary {
    grid-column: auto;
  }

  .catalog-shot,
  .catalog-shot-primary {
    height: 380px;
  }

  .product-card {
    min-height: 285px;
  }
}

@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;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .whatsapp-float,
  .ambient {
    display: none !important;
  }

  .hero {
    padding-top: 30px;
  }
}
