/* [project]/src/app/(frontend)/globals.css [app-client] (css) */
:root {
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Marcellus", Georgia, "Times New Roman", serif;
  --ink: #1c1c1c;
  --ink-2: #4c4650;
  --muted: #8a8378;
  --muted-2: #8a8492;
  --brand-pink: #f0288c;
  --brand-pink-dark: #c81e74;
  --brand-blue: #3aa0e8;
  --brand-violet: #7b7fd4;
  --heading-pink: #e8308c;
  --gradient-brand: linear-gradient(90deg, #f0288c, #3aa0e8);
  --gradient-brand-3: linear-gradient(90deg, #f0288c 0%, #b94fb4 35%, #3aa0e8 100%);
  --bg: #fff;
  --bg-soft: #faf8fc;
  --bg-tint: #f0ebf3;
  --bg-sand: #f6f4f0;
  --line: #e7e2ec;
  --line-2: #d9d4dc;
  --line-warm: #ece7df;
  --success: #256029;
  --success-bg: #f0f7f0;
  --success-line: #b7d8b7;
  --gold: #e8b54a;
  --whatsapp: #25d366;
  --container: 1280px;
  --narrow: 860px;
  --gutter: 28px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-pill: 20px;
  --shadow-card: 0 10px 26px #1e0a191f;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

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

a:hover {
  color: var(--brand-pink);
}

img, video, iframe {
  max-width: 100%;
}

img {
  height: auto;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 400;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
}

.pink {
  color: var(--heading-pink);
}

.violet {
  color: var(--brand-violet);
}

.muted {
  color: var(--muted-2);
}

.strong {
  font-weight: 600;
}

.container {
  max-width: var(--container);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 auto;
}

.narrow {
  max-width: var(--narrow);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin: 0 auto;
}

.section {
  padding-top: 30px;
  padding-bottom: 8px;
}

.hp {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
}

.btn-primary, .btn-pink, .btn-dark, .btn-outline {
  cursor: pointer;
  text-align: center;
  font: 600 15px var(--font-body);
  letter-spacing: .06em;
  border-radius: var(--radius-sm);
  color: #fff;
  border: 0;
  padding: 14px 30px;
  transition: opacity .2s, background .2s;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-brand);
}

.btn-primary:hover {
  opacity: .9;
  color: #fff;
}

.btn-pink {
  background: var(--brand-pink);
}

.btn-pink:hover {
  background: var(--brand-pink-dark);
  color: #fff;
}

.btn-dark {
  background: var(--ink);
  border-radius: 0;
}

.btn-dark:hover {
  background: var(--brand-pink);
  color: #fff;
}

.btn-dark.small {
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 12.5px;
}

.btn-outline {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: #fff;
  padding: 12px 30px;
}

.btn-outline:hover {
  color: var(--brand-pink);
  border-color: var(--brand-pink);
}

button:disabled {
  opacity: .6;
  cursor: default;
}

.chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 13.5px;
  display: inline-block;
}

.chips {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.topbar {
  background: var(--gradient-brand-3);
  color: #fff;
  padding: 9px var(--gutter);
  align-items: center;
  gap: 18px;
  font-size: 14px;
  display: flex;
}

.topbar a {
  color: #fff;
}

.topbar-cta {
  letter-spacing: .03em;
  white-space: nowrap;
  text-shadow: 0 0 12px #ffffffa6;
  font-weight: 700;
}

.topbar-marquee {
  white-space: nowrap;
  text-align: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.topbar-marquee span {
  animation: 18s linear infinite tphMarquee;
  display: inline-block;
}

@keyframes tphMarquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-110%);
  }
}

.topbar-phones {
  white-space: nowrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.franchise-tab {
  z-index: 600;
  color: #fff;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  background: linear-gradient(#3aa0e8, #f0288c);
  border-radius: 0 6px 6px 0;
  padding: 18px 8px;
  font-size: 14px;
  font-weight: 600;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.franchise-tab:hover {
  color: #fff;
  opacity: .92;
}

.header {
  z-index: 800;
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 1px #ece7ef;
}

.header-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  display: flex;
}

.logo img {
  width: auto;
  height: 58px;
  display: block;
}

.burger {
  border: 1px solid var(--line);
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  display: none;
}

.searchbox {
  border: 1px solid #cfcad4;
  border-radius: 4px;
  flex: 340px;
  min-width: 0;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
}

.searchbox select {
  font: 15px var(--font-body);
  background: #fff;
  border: 0;
  border-right: 1px solid #e5e0ea;
  max-width: 170px;
  padding: 0 12px;
}

.searchbox input {
  font: 15px var(--font-body);
  border: 0;
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
}

.searchbox button {
  background: var(--ink);
  cursor: pointer;
  border: 0;
  padding: 0 22px;
}

.searchbox button:hover {
  background: var(--brand-pink);
}

.header-icons {
  align-items: center;
  gap: 22px;
  display: flex;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid #f0288c33;
}

.meganav {
  background: var(--gradient-brand-3);
  flex-basis: 100%;
  order: 10;
  margin: 0 -20px -14px;
  position: relative;
}

.meganav-row {
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  display: flex;
}

.meganav-row > a {
  color: #fff;
  white-space: nowrap;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
}

.meganav-row > a:hover, .meganav-row > a.is-active {
  color: #fff;
  background: #ffffff29;
}

.caret {
  opacity: .85;
  font-size: 11px;
}

.megapanel {
  z-index: 850;
  background: #fff;
  border-top: 1px solid #ece7ef;
  max-height: 70vh;
  padding: 26px 40px 18px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: auto;
  box-shadow: 0 24px 40px #1e0a1929;
}

.megapanel-cols {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  display: flex;
}

.megacol {
  flex: 170px;
  min-width: 170px;
  max-width: 230px;
}

.megacol-title {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--brand-pink);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.megacol-links {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.megacol-links a {
  color: var(--ink-2);
  font-size: 14px;
}

.megacol-links a:hover {
  color: var(--brand-pink);
}

.megapanel-foot {
  border-top: 1px solid var(--bg-tint);
  text-align: right;
  margin-top: 20px;
  padding-top: 12px;
}

.megapanel-foot a {
  color: var(--brand-pink);
  font-size: 14px;
  font-weight: 600;
}

.drawer-root {
  z-index: 950;
  position: fixed;
  inset: 0;
}

.drawer-backdrop {
  background: #140c128c;
  position: absolute;
  inset: 0;
}

.drawer {
  background: #fff;
  flex-direction: column;
  width: min(360px, 88vw);
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  box-shadow: 20px 0 60px #00000040;
}

.drawer-head {
  background: var(--gradient-brand);
  color: #fff;
  letter-spacing: .08em;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  font-weight: 600;
  display: flex;
}

.drawer-head button {
  color: #fff;
  cursor: pointer;
  background: #fff3;
  border: 0;
  border-radius: 6px;
  width: 34px;
  height: 34px;
  font-size: 18px;
}

.drawer-link {
  border-bottom: 1px solid var(--bg-tint);
  padding: 13px 18px;
  font-size: 15px;
}

.drawer-link.strong {
  font-size: 16px;
  font-weight: 600;
}

.drawer-group {
  border-bottom: 1px solid var(--bg-tint);
}

.drawer-group > button {
  width: 100%;
  font: 600 16px var(--font-body);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  background: #fff;
  border: 0;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  display: flex;
}

.drawer-sub {
  background: var(--bg-soft);
  flex-direction: column;
  gap: 14px;
  padding: 6px 18px 16px;
  display: flex;
}

.drawer-sub .megacol-links {
  gap: 8px;
}

.drawer-sub .megacol-links a {
  font-size: 14.5px;
}

.crumbs {
  color: var(--muted);
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 14px;
}

.crumbs a {
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--brand-pink);
}

.crumbs .sep {
  margin: 0 6px;
}

.crumbs .cur {
  color: var(--ink);
  font-weight: 500;
}

.section-head {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  display: flex;
}

.section-head h2 {
  font-size: 30px;
}

.section-head.lg h1, .section-head.lg h2 {
  font-size: 36px;
}

.section-link {
  color: var(--ink);
  text-underline-offset: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

.page-title {
  font-size: 36px;
}

.page-intro {
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 720px;
  margin: 14px 0 30px;
  font-size: 16px;
  line-height: 1.7;
}

.card {
  color: inherit;
  background: #fff;
  border: 1px solid #f0ebe3;
  flex-direction: column;
  transition: box-shadow .25s;
  display: flex;
}

.card:hover {
  box-shadow: var(--shadow-card);
  color: inherit;
}

.card-img {
  aspect-ratio: 1;
  background: var(--bg-sand);
  overflow: hidden;
}

.card-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .45s;
  display: block;
}

.card:hover .card-img img {
  transform: scale(1.08);
}

.card-body {
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 14px;
  display: flex;
}

.card-kicker {
  color: var(--muted-2);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12.5px;
}

.card-title {
  flex: 1;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.4;
}

.card-price {
  font-weight: 600;
}

.card-price s {
  color: var(--muted);
  margin-left: 8px;
  font-weight: 400;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
  display: grid;
}

.tile-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
  display: grid;
}

.load-more {
  text-align: center;
  margin-top: 22px;
}

.scroller {
  scroll-snap-type: x proximity;
  gap: 18px;
  padding-bottom: 14px;
  display: flex;
  overflow-x: auto;
}

.scroller::-webkit-scrollbar {
  height: 8px;
}

.scroller::-webkit-scrollbar-thumb {
  background: #d9d4cc;
  border-radius: 4px;
}

.scroller-item {
  scroll-snap-align: start;
  flex: none;
}

.scroller-img {
  background: var(--bg-sand);
  border-radius: 4px;
  overflow: hidden;
}

.scroller-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 6s;
  display: block;
}

.scroller-item:hover .scroller-img img {
  transform: scale(1.06);
}

.scroller-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
}

.hero {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.hero-main {
  flex: 460px;
  min-width: 0;
  min-height: 300px;
  display: block;
  position: relative;
  overflow: hidden;
}

.hero-main img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 6s;
  display: block;
}

.hero-main:hover img {
  transform: scale(1.06);
}

.hero-shine {
  pointer-events: none;
  background: linear-gradient(105deg, #fff0 0%, #ffffff52 50%, #fff0 100%);
  width: 45%;
  animation: 5.5s ease-in-out infinite heroShine;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  transform: skewX(-18deg);
}

@keyframes heroShine {
  0%, 60% {
    left: -70%;
  }

  100% {
    left: 130%;
  }
}

.hero-caption {
  background: linear-gradient(#140a1200 0%, #140a129e 100%);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  padding: 46px 26px 20px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-caption .display {
  color: #fff;
  text-shadow: 0 2px 12px #00000073;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.2;
}

.hero-caption .btn-primary {
  letter-spacing: .08em;
  white-space: nowrap;
  padding: 11px 22px;
  font-size: 13.5px;
}

.hero-side {
  flex: 280px;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  min-width: 0;
  display: grid;
}

.hero-side a {
  min-height: 0;
  display: block;
}

.hero-side img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.cat-row {
  gap: 26px;
  padding-bottom: 16px;
  display: flex;
  overflow-x: auto;
}

.cat-tile {
  text-align: center;
  flex: none;
  width: 152px;
}

.cat-tile .cat-img {
  background: var(--bg-sand);
  border-radius: 26px;
  justify-content: center;
  align-items: center;
  width: 152px;
  height: 142px;
  display: flex;
  overflow: hidden;
}

.cat-tile img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cat-tile .cat-name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

.home-video {
  margin: 26px 0;
}

.home-video video {
  object-fit: cover;
  background: var(--ink);
  width: 100%;
  max-height: 560px;
  display: block;
}

.banner {
  max-width: var(--container);
  padding: 0 var(--gutter);
  margin: 26px auto;
  display: block;
}

.banner img {
  width: 100%;
  display: block;
}

.reviews {
  background: var(--bg-sand);
  padding: 50px var(--gutter);
  margin-top: 36px;
}

.reviews h2 {
  text-align: center;
  font-size: 30px;
}

.stars {
  text-align: center;
  color: var(--gold);
  letter-spacing: 4px;
  margin: 10px 0 4px;
  font-size: 22px;
}

.reviews-sub {
  text-align: center;
  color: #6b6357;
  margin-bottom: 30px;
  font-size: 15px;
}

.reviews-grid {
  max-width: var(--container);
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin: 0 auto;
  display: grid;
}

.review {
  background: #fff;
  padding: 26px;
  box-shadow: 0 6px 20px #1e140a0f;
}

.review .stars {
  text-align: left;
  letter-spacing: 3px;
  margin: 0 0 12px;
  font-size: 16px;
}

.review p {
  color: #4c463e;
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
}

.review-who {
  align-items: center;
  gap: 12px;
  display: flex;
}

.avatar {
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-weight: 600;
  display: flex;
}

.review-name {
  font-weight: 600;
}

.review-date {
  color: var(--muted);
  font-size: 13px;
}

.listing {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  padding-top: 34px;
  padding-bottom: 34px;
  display: flex;
}

.listing aside {
  flex: 0 0 240px;
  align-self: flex-start;
  min-width: 220px;
  max-height: calc(100vh - 170px);
  padding-right: 4px;
  position: sticky;
  top: 150px;
  overflow: auto;
}

.listing main {
  flex: 620px;
  min-width: 0;
}

.filter-title {
  letter-spacing: .04em;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 16px;
  padding-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.filter-sub {
  margin: 22px 0 10px;
  font-weight: 600;
}

.filter-sub:first-of-type {
  margin-top: 0;
}

.filter-list {
  flex-direction: column;
  gap: 7px;
  max-height: 340px;
  padding-right: 8px;
  display: flex;
  overflow: auto;
}

.filter-list a {
  color: #4c463e;
  font-size: 14px;
}

.filter-list a.is-active {
  color: var(--brand-pink);
  font-weight: 600;
}

.swatches {
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.swatch {
  border: 1px solid #00000026;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: inline-block;
}

.toolbar {
  border: 1px solid var(--line-warm);
  color: #6b6357;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 10px 16px;
  font-size: 14px;
  display: flex;
}

.brand-block {
  margin-bottom: 48px;
  scroll-margin-top: 160px;
}

.brand-block h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.brand-block .count {
  color: #6b6357;
  margin: 0 0 20px;
  font-size: 14px;
}

.video-hero {
  aspect-ratio: 16 / 6;
  background: var(--ink);
  width: 100%;
  min-height: 220px;
  position: relative;
}

.video-hero iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.subcat-hero img {
  object-fit: cover;
  width: 100%;
  max-height: 480px;
  display: block;
}

.prose {
  color: #4c463e;
  max-width: 820px;
  font-size: 15.5px;
  line-height: 1.7;
}

.prose.wide {
  max-width: none;
}

.prose h1, .prose h2, .prose h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 28px 0 12px;
  font-weight: 400;
}

.prose h1 {
  font-size: 30px;
}

.prose h2 {
  font-size: 26px;
}

.prose h3 {
  font-size: 22px;
}

.prose p {
  text-wrap: pretty;
  margin: 0 0 16px;
}

.prose a {
  color: var(--brand-pink);
  font-weight: 600;
}

.prose img {
  border-radius: var(--radius-md);
  max-width: 100%;
  height: auto;
}

.prose ul, .prose ol {
  padding-left: 22px;
}

.prose li {
  margin-bottom: 6px;
}

.prose table {
  border-collapse: collapse;
  width: 100%;
  min-width: 520px;
  font-size: 14.5px;
}

.prose .table-wrap {
  overflow-x: auto;
}

.prose th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 10px 14px;
}

.prose td {
  border: 1px solid var(--line-warm);
  padding: 10px 14px;
}

.prose tr:nth-child(2n) td {
  background: var(--bg-sand);
}

.prose strong, .prose b {
  color: var(--ink);
}

.prose iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.prose span[style] {
  font-family: inherit !important;
  font-size: inherit !important;
}

.product {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  padding-top: 10px;
  padding-bottom: 40px;
  display: flex;
}

.product-media {
  flex: 420px;
  min-width: 0;
}

.product-info {
  flex: 380px;
  min-width: 0;
}

.product-info h1 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.2;
}

.product-meta {
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.9;
}

.product-meta a {
  color: var(--brand-pink);
}

.price-box {
  background: var(--bg-sand);
  margin-bottom: 20px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.6;
}

.price-box .price {
  font-size: 24px;
  font-weight: 600;
}

.price-box .old {
  color: var(--muted);
  margin-left: 10px;
  font-size: 16px;
  text-decoration: line-through;
}

.price-box .gst {
  color: var(--muted);
  font-size: 13px;
}

.cta-row {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.gallery {
  gap: 14px;
  display: flex;
}

.gallery-thumbs {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.gallery-thumbs button {
  border: 2px solid var(--line-warm);
  background: var(--bg-sand);
  cursor: pointer;
  width: 72px;
  height: 72px;
  padding: 0;
  overflow: hidden;
}

.gallery-thumbs button.is-active {
  border-color: var(--brand-pink);
}

.gallery-thumbs img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-main {
  aspect-ratio: 1;
  background: var(--bg-sand);
  flex: 1;
  min-width: 0;
  position: relative;
}

.gallery-main img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-label {
  color: #fff;
  background: #1c1c1cbf;
  padding: 6px 12px;
  font-size: 13px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.tabs-bar {
  border-bottom: 1px solid var(--line-warm);
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.tabs-bar button {
  cursor: pointer;
  color: #4c463e;
  font: 500 15px var(--font-body);
  background: none;
  border: 0;
  padding: 12px 22px;
}

.tabs-bar button.is-active {
  background: var(--ink);
  color: #fff;
}

.tabs-panel {
  padding: 26px 0;
}

.related {
  padding-bottom: 50px;
}

.related h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.related .scroller-item {
  width: 220px;
}

.form-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  display: grid;
}

.form-grid input, .form-grid select, .form-grid textarea {
  border: 1px solid var(--line-2);
  font: 15px var(--font-body);
  background: #fff;
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid .wide {
  grid-column: 1 / 3;
}

.form-ok {
  background: var(--success-bg);
  border: 1px solid var(--success-line);
  color: var(--success);
  margin: 0;
  padding: 14px;
  font-size: 15px;
}

.form-err {
  color: #b3261e;
  margin: 0;
  font-size: 14px;
}

.form-panel {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid #ece7ef;
  padding: 28px;
}

.form-panel.sand {
  background: var(--bg-sand);
  border: 0;
  border-radius: 0;
}

.form-panel h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.modal-backdrop {
  z-index: 900;
  background: #140c1299;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: #fff;
  max-height: 92vh;
  position: relative;
  overflow: auto;
  box-shadow: 0 30px 70px #00000059;
}

.modal-close {
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  border: 0;
  width: 34px;
  height: 34px;
  font-size: 18px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.franchise-modal {
  flex-wrap: wrap;
  width: min(860px, 94vw);
  display: flex;
}

.franchise-img {
  object-fit: cover;
  flex: 280px;
  width: 320px;
  max-height: 560px;
}

.franchise-body {
  flex: 320px;
  padding: 28px 30px;
}

.franchise-body h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.enquiry-modal {
  width: min(460px, 94vw);
  padding: 28px 30px;
}

.enquiry-modal h2 {
  margin: 0 0 6px;
  font-size: 24px;
}

.enquiry-modal p {
  margin: 0 0 16px;
}

.two-col {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

.two-col > * {
  flex: 380px;
  min-width: 0;
}

.lead {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.8;
}

.lead p {
  text-wrap: pretty;
  margin: 0 0 16px;
}

.lead b {
  color: var(--ink);
}

.info-box {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid #ece7ef;
  padding: 22px 24px;
  font-size: 15.5px;
  line-height: 1.7;
}

.info-box .display {
  margin-bottom: 6px;
  font-size: 21px;
}

.stats {
  background: var(--bg-soft);
  border-top: 1px solid #ece7ef;
  border-bottom: 1px solid #ece7ef;
  margin-top: 50px;
}

.stats .container {
  text-align: center;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 26px;
  padding-top: 44px;
  padding-bottom: 44px;
  display: grid;
}

.stat-n {
  font-family: var(--font-display);
  color: var(--brand-pink);
  font-size: 46px;
}

.stat-l {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-size: 14px;
}

.store-card {
  border: 1px solid var(--line-warm);
}

.store-card iframe {
  border: 0;
  width: 100%;
  height: 240px;
  display: block;
}

.store-body {
  padding: 22px;
}

.store-body .display {
  margin-bottom: 8px;
  font-size: 22px;
}

.store-body p {
  color: #4c463e;
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
}

.store-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  display: grid;
}

.contact-lines {
  color: #4c463e;
  font-size: 15px;
  line-height: 2;
}

.contact-lines b {
  color: var(--ink);
}

.contact-lines a {
  color: var(--brand-pink);
}

.link-cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 34px;
  display: grid;
}

.link-card {
  border: 1px solid var(--bg-tint);
  padding: 26px;
  transition: box-shadow .25s;
}

.link-card:hover {
  box-shadow: var(--shadow-card);
  color: inherit;
}

.link-card .display {
  margin-bottom: 8px;
  font-size: 22px;
}

.link-card p {
  color: var(--ink-2);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.link-card .more {
  color: var(--brand-pink);
  margin-top: 14px;
  font-weight: 600;
}

.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  display: grid;
}

.gallery-grid figure {
  border: 1px solid var(--bg-tint);
  background: var(--bg-sand);
  margin: 0;
}

.gallery-grid img, .gallery-grid video {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  display: block;
}

.gallery-grid figcaption {
  color: var(--ink-2);
  padding: 10px 12px;
  font-size: 14px;
}

.work-block {
  margin-top: 40px;
}

.work-block h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.blog-layout {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 56px;
  display: flex;
}

.blog-layout main {
  flex: 640px;
  min-width: 0;
}

.blog-layout aside {
  flex: 0 0 280px;
  min-width: 240px;
}

.post-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
  display: grid;
}

.post-card .card-img {
  aspect-ratio: 16 / 10;
}

.post-card .card-body {
  gap: 8px;
  padding: 18px;
}

.post-card .card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}

.post-date {
  color: var(--muted-2);
  font-size: 13.5px;
}

.aside-title {
  border-bottom: 2px solid var(--ink);
  margin: 0 0 16px;
  padding-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.aside-links {
  flex-direction: column;
  gap: 9px;
  font-size: 15px;
  display: flex;
}

.article {
  padding-bottom: 56px;
}

.article h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.15;
}

.article .byline {
  color: var(--muted-2);
  margin-bottom: 26px;
  font-size: 14px;
}

.article .cover {
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--bg-sand);
  width: 100%;
}

.article .prose {
  color: var(--ink-2);
  max-width: none;
  margin-top: 30px;
  font-size: 16.5px;
  line-height: 1.85;
}

.toc {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid #ece7ef;
  margin-top: 26px;
  padding: 18px 22px;
  font-size: 15px;
}

.toc .display {
  margin-bottom: 8px;
  font-size: 19px;
}

.toc ol {
  margin: 0;
  padding-left: 20px;
}

.toc li {
  margin: 4px 0;
}

.toc .h3 {
  padding-left: 14px;
  font-size: 14px;
}

.callout {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid #ece7ef;
  margin-top: 30px;
  padding: 22px 24px;
}

.callout .display {
  margin-bottom: 6px;
  font-size: 21px;
}

.pager {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  display: flex;
}

.pager a, .pager span {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 14px;
}

.pager .cur {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.arch-top {
  background: var(--ink);
  color: #cfc9d4;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
  padding: 8px 32px;
  font-size: 14px;
  display: flex;
}

.arch-top a {
  color: #cfc9d4;
}

.arch-top a.strong {
  color: #fff;
}

.arch-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 32px 60px;
}

.eyebrow {
  letter-spacing: .3em;
  color: var(--brand-pink);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

.arch-hero h1 {
  max-width: 900px;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 1.08;
}

.ticker {
  white-space: nowrap;
  border-top: 1px solid #ece7ef;
  border-bottom: 1px solid #ece7ef;
  padding: 16px 0;
  overflow: hidden;
}

.ticker div {
  font-family: var(--font-display);
  color: #d8d2de;
  font-size: 30px;
  animation: 24s linear infinite archTicker;
  display: inline-block;
}

@keyframes archTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.team {
  padding: 70px 32px 30px;
}

.team h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.team p {
  max-width: 760px;
  color: var(--ink-2);
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.7;
}

.team-grid {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 44px;
  display: grid;
}

.team-card .portrait {
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 5;
  background: #f3f0f6;
  overflow: hidden;
}

.team-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .45s;
}

.team-card:hover img {
  transform: scale(1.08);
}

.team-card .name {
  font-family: var(--font-display);
  margin-top: 14px;
  font-size: 20px;
}

.team-card .role {
  color: var(--muted-2);
  margin-top: 2px;
  font-size: 14px;
}

.arch-cta {
  max-width: var(--container);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
}

.arch-cta h3 {
  max-width: 640px;
  font-size: clamp(26px, 3vw, 38px);
}

.partner-profile {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  display: flex;
}

.partner-profile .portrait {
  border-radius: var(--radius-md);
  background: #f3f0f6;
  flex: 0 0 320px;
  max-width: 100%;
  overflow: hidden;
}

.partner-profile .portrait img {
  width: 100%;
  display: block;
}

.partner-profile .bio {
  flex: 380px;
  min-width: 0;
}

.legacy-page {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.8;
}

.legacy-page h1 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 16px;
  font-size: 34px;
}

.legacy-page h2 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 30px 0 12px;
  font-size: 26px;
}

.legacy-page section, .legacy-page .banner {
  margin: 0;
  padding: 0;
}

.legacy-page .banner {
  display: none;
}

.legacy-page .grid-section {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  display: grid;
}

.legacy-page .grid-item {
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  border: 1px solid #ece7ef;
  padding: 18px 20px;
}

.legacy-page .two-column {
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
}

.legacy-page .two-column > * {
  flex: 300px;
}

.legacy-page ul {
  padding-left: 22px;
}

.footer {
  margin-top: 44px;
}

.footer-rule {
  background: linear-gradient(90deg, #f0288c00 0%, #f0288c59 25%, #6a4fbf59 50%, #3aa0e859 75%, #3aa0e800 100%);
  border-radius: 1px;
  height: 2px;
}

.usp-row {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding-top: 36px;
  padding-bottom: 36px;
  display: grid;
}

.usp {
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.4;
  display: flex;
}

.usp svg {
  flex-shrink: 0;
}

.footer-cols {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  padding-top: 4px;
  display: grid;
}

.footer-col {
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  display: flex;
}

.footer-col a {
  color: #3a3a44;
}

.footer-col a:hover {
  color: var(--brand-pink);
}

.footer-col.text {
  gap: 0;
  line-height: 1.7;
}

.footer-col .h {
  margin-bottom: 6px;
  font-size: 22px;
}

.footer-col .block {
  margin-bottom: 16px;
  display: block;
}

.footer-col .cities {
  margin-bottom: 20px;
}

.footer-col .ico {
  vertical-align: -2px;
  margin-right: 4px;
}

.social {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  display: flex;
}

.footer-copy {
  text-align: center;
  color: #3a3a44;
  padding-top: 44px;
  padding-bottom: 10px;
  font-size: 16px;
}

.waves {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.wave {
  width: 200%;
  position: absolute;
  left: 0;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.w1 {
  height: 200px;
  animation: 16s linear infinite tphWaveR;
  bottom: 0;
}

.w2 {
  height: 190px;
  animation: 22s linear infinite tphWaveL;
  bottom: -10px;
}

.w3 {
  height: 180px;
  animation: 12s linear infinite tphWaveL;
  bottom: -20px;
}

@keyframes tphWaveL {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes tphWaveR {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.wa-float {
  background: var(--whatsapp);
  color: #fff;
  z-index: 700;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  display: flex;
  position: fixed;
  bottom: 22px;
  right: 22px;
  box-shadow: 0 8px 20px #0000004d;
}

.wa-float:hover {
  color: #fff;
}

.notfound {
  text-align: center;
  padding: 80px var(--gutter);
}

.notfound h1 {
  margin-bottom: 12px;
  font-size: 46px;
}

@media (max-width: 880px) {
  .burger {
    display: flex;
  }

  .meganav, .topbar-marquee {
    display: none;
  }

  .header-row {
    gap: 12px;
  }

  .logo img {
    height: 44px;
  }

  .searchbox {
    flex-basis: 100%;
    order: 5;
  }

  .searchbox select {
    max-width: 120px;
  }

  .listing aside {
    flex-basis: 100%;
    max-height: none;
    position: static;
  }

  .franchise-tab {
    display: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid .wide {
    grid-column: auto;
  }

  .gallery {
    flex-direction: column-reverse;
  }

  .gallery-thumbs {
    flex-direction: row;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .section-head h2, .section-head.lg h1, .page-title {
    font-size: 26px;
  }

  .topbar {
    gap: 10px;
    padding: 8px 12px;
    font-size: 12.5px;
  }

  .topbar-phones a:last-child {
    display: none;
  }

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

  .waves {
    height: 140px;
  }

  .arch-hero {
    padding: 50px 16px 30px;
  }

  .team {
    padding: 40px 16px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }
}

.prose table {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: block;
  overflow-x: auto;
}

.prose table tbody {
  width: 100%;
  min-width: 520px;
  display: table;
}

.legacy-page img {
  max-width: 100%;
  height: auto;
}

.legacy-page, .prose, .article {
  overflow-wrap: anywhere;
}

.card-img, .scroller-img, .cat-img, .gallery-grid figure, .team-card .portrait, .gallery-main, .gallery-thumbs button {
  background: var(--bg-sand);
}

.card-img img, .scroller-img img, .cat-img img, .gallery-grid img, .team-card img {
  object-fit: cover;
  object-position: center;
}

.scroller-img {
  aspect-ratio: 8 / 5;
  height: auto !important;
}

img.is-placeholder {
  object-fit: cover !important;
  transform: none !important;
}

/*# sourceMappingURL=src_app_%28frontend%29_globals_0r2lidu.css.map*/