/* DDM brand logo */
.brand img {
  display: block;
  width: 156px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand img {
  width: 190px;
  height: 92px;
  filter: drop-shadow(0 8px 18px rgba(22, 183, 178, 0.12));
}
#ddm-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(29, 190, 184, 0.11), transparent 34rem),
    linear-gradient(145deg, #fff 0%, #f6fcfc 48%, #eef9fa 100%);
  transition:
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s;
}
#ddm-preloader.ddm-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ddm-loader {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(82vw, 520px);
  justify-items: center;
  transform: translateY(-2vh);
}
.ddm-logo-wrap {
  position: relative;
  display: grid;
  width: 100%;
  place-items: center;
  animation: ddm-enter 0.65s cubic-bezier(0.16, 0.8, 0.24, 1) both;
}
.ddm-loader-logo {
  display: block;
  width: min(100%, 500px);
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: saturate(1.06) contrast(1.03) drop-shadow(0 18px 32px rgba(22, 96, 120, 0.1));
  transform-origin: center;
  animation: ddm-breathe 2.4s ease-in-out infinite;
}
.ddm-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(68vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  translate: -50% -53%;
  pointer-events: none;
}
.ddm-aura::before {
  position: absolute;
  inset: 0;
  content: '';
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0 18%,
    rgba(26, 130, 204, 0.75) 25%,
    rgba(34, 183, 196, 0.88) 34%,
    rgba(37, 200, 145, 0.75) 43%,
    transparent 51% 73%,
    rgba(34, 183, 196, 0.45) 80%,
    transparent 88% 100%
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  animation: ddm-orbit 2.8s linear infinite;
  filter: drop-shadow(0 0 9px rgba(29, 174, 189, 0.34));
}
.ddm-shine {
  position: absolute;
  inset: 5% 4% 7%;
  overflow: hidden;
  border-radius: 22px;
  mix-blend-mode: screen;
  pointer-events: none;
}
.ddm-shine::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -22%;
  width: 11%;
  content: '';
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.82),
    rgba(86, 236, 218, 0.54),
    transparent
  );
  filter: blur(8px);
  transform: skewX(-13deg);
  animation: ddm-scan 2.05s cubic-bezier(0.35, 0, 0.2, 1) infinite;
}
.ddm-progress {
  width: clamp(80px, 16vw, 124px);
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(28, 111, 137, 0.09);
  animation: ddm-fade 0.3s 0.35s ease both;
}
.ddm-progress::after {
  display: block;
  width: 42%;
  height: 100%;
  content: '';
  border-radius: inherit;
  background: linear-gradient(90deg, #1b83c7, #22b7c4, #25c891);
  box-shadow: 0 0 9px rgba(34, 183, 196, 0.38);
  animation: ddm-progress 1.12s ease-in-out infinite;
}
@keyframes ddm-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(0.9) translateY(8px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes ddm-breathe {
  50% {
    transform: translateY(-3px) scale(1.006);
  }
}
@keyframes ddm-orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ddm-scan {
  0% {
    left: -22%;
    opacity: 0;
  }
  14% {
    opacity: 0.9;
  }
  72% {
    opacity: 0.76;
  }
  100% {
    left: 116%;
    opacity: 0;
  }
}
@keyframes ddm-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ddm-progress {
  0% {
    opacity: 0.35;
    transform: translateX(-110%);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.35;
    transform: translateX(270%);
  }
}
@media (max-width: 600px) {
  .brand img {
    width: 128px;
    height: 49px;
  }
  .footer-brand img {
    width: 170px;
    height: 88px;
  }
  .ddm-loader {
    width: min(92vw, 430px);
  }
  .ddm-aura {
    width: min(76vw, 290px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ddm-loader-logo,
  .ddm-aura::before,
  .ddm-shine::before,
  .ddm-progress::after {
    animation: none !important;
  }
}
.footer-brand {
  width: max-content;
  padding: 5px 10px;
  border-radius: 12px;
  background: #fff;
}
.footer-brand img {
  width: 170px;
  height: 74px;
}

/* Minimal DDM visual refresh */
:root {
  --navy: #071b2a;
  --blue: #128fbd;
  --ice: #eefafa;
  --ink: #0d1e29;
  --muted: #647681;
  --line: #dce9ec;
  --bg: #f5fafb;
  --shadow: 0 22px 60px rgba(15, 74, 92, 0.12);
}
body {
  background: #fff;
}
.announce {
  background: #071b2a;
}
.brand img {
  width: 148px;
}
.nav {
  height: 68px;
}
.hero-box {
  background: linear-gradient(135deg, #effafb 0%, #f8fcfd 55%, #edf7ff 100%);
  border: 1px solid rgba(21, 143, 189, 0.08);
  border-radius: 24px;
}
.hero h1 em,
.hero small,
.title small,
.service > div > small,
.location-head small {
  color: #10a99a;
}
.btn {
  border-radius: 12px;
}
.btn.primary {
  background: linear-gradient(110deg, #117fb9, #13aa98);
  box-shadow: 0 10px 24px rgba(18, 143, 173, 0.2);
}
.categories button,
.products > article {
  border-color: #e2ecee;
  border-radius: 17px;
  box-shadow: 0 7px 22px rgba(27, 78, 92, 0.035);
}
.categories button:hover,
.products > article:hover {
  border-color: #b9dfe2;
  transform: translateY(-2px);
  transition: 0.2s;
}
.chips button.active {
  background: #0b2836;
}
.service {
  background: #071b2a;
  border-radius: 24px;
}
.service aside {
  background: linear-gradient(145deg, #0c6e91, #14aa91);
}
.shop {
  background: #f5fafb;
}
.location-section {
  padding-top: 72px;
}
.location-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 26px;
}
.location-head small {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.location-head h2 {
  margin: 8px 0 0;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.location-head > p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}
.location-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.map-wrap {
  min-height: 430px;
  background: #eaf2f3;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}
.location-details {
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-label {
  color: #0c9d90;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.location-details h3 {
  margin: 12px 0 18px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}
.location-details address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.8;
}
.location-actions {
  display: grid;
  gap: 9px;
  margin-top: 27px;
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 20px;
}
.contact-line a {
  font-size: 0.76rem;
  font-weight: 800;
  color: #0b7e92;
}
.contact-line i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #a7b9bd;
}
footer {
  background: #061923;
}
@media (max-width: 800px) {
  .location-head {
    display: block;
  }
  .location-head > p {
    margin-top: 12px;
  }
  .location-card {
    grid-template-columns: 1fr;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }
  .location-details {
    padding: 30px 26px;
  }
}
@media (max-width: 600px) {
  .nav {
    height: 60px;
  }
  .brand img {
    width: 126px;
    height: 48px;
  }
  .hero-box {
    border-radius: 20px;
  }
  .location-section {
    padding-top: 46px;
  }
  .location-head h2 {
    font-size: 2.25rem;
  }
  .location-card {
    border-radius: 19px;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 260px;
  }
  .location-details {
    padding: 25px 20px;
  }
  .location-details h3 {
    font-size: 1.65rem;
  }
  .location-actions {
    grid-template-columns: 1fr 1fr;
  }
  .location-actions .btn {
    padding-inline: 8px;
  }
}
:root {
  --navy: #07132b;
  --blue: #356dff;
  --ice: #edf3ff;
  --ink: #101828;
  --muted: #667085;
  --line: #e5e9f1;
  --bg: #f6f8fc;
  --shadow: 0 24px 70px rgba(16, 35, 75, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  font:
    16px/1.5 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
body.locked {
  overflow: hidden;
}
button,
input,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.hidden {
  display: none !important;
}
.announce {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
}
.announce b {
  color: #a8c3ff;
}
.announce i {
  opacity: 0.4;
}
header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  z-index: 10;
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand > span {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #7fa5ff;
  font-size: 1.25rem;
}
.brand em {
  font-style: normal;
  color: var(--blue);
}
.nav nav {
  display: flex;
  gap: 30px;
  font-size: 0.86rem;
  font-weight: 700;
}
.cart-btn {
  height: 44px;
  min-width: 54px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.cart-btn b {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 0.63rem;
}
.hero {
  padding: 28px 0 12px;
}
.hero-box {
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  background: linear-gradient(135deg, #edf3ff, #fbfcff);
}
.hero-copy {
  padding: 64px 35px 60px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero small,
.title small,
.service > div > small,
.visit article > small,
.modal header small,
.drawer header small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin: 18px 0 23px;
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
}
.hero p {
  max-width: 500px;
  color: var(--muted);
  font-size: 1rem;
  margin: 0 0 28px;
}
.btn {
  border: 0;
  border-radius: 14px;
  min-height: 46px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.83rem;
  font-weight: 800;
}
.btn.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(53, 109, 255, 0.25);
}
.btn.pale {
  background: #fff;
  border: 1px solid var(--line);
}
.btn.white {
  background: #fff;
  color: var(--navy);
}
.btn.whatsapp {
  background: #e8f8f1;
  color: #087a57;
}
.hero-image {
  position: relative;
  min-height: 420px;
  background: url('https://cdn.dotpe.in/longtail/themes/8139686/uYYN8ACT.webp') center/cover;
}
.hero-image aside {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 14px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.hero-image aside small {
  font-size: 0.58rem;
}
.hero-image aside b {
  font-size: 1.12rem;
}
.hero-image aside span {
  font-size: 0.68rem;
  color: var(--muted);
}
.perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 12px 0 44px;
}
.perks article {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
}
.perks article > span {
  display: flex;
  flex-direction: column;
}
.perks b {
  font-size: 0.81rem;
}
.perks small {
  font-size: 0.68rem;
  color: var(--muted);
}
.section {
  padding: 58px 0;
}
.title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}
.title h2,
.visit h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 7px 0 0;
}
.title p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
}
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.categories button {
  min-height: 165px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
  padding: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.categories button > span {
  font-size: 2.5rem;
}
.categories b,
.categories small {
  display: block;
}
.categories b {
  font-size: 0.92rem;
}
.categories small {
  font-size: 0.68rem;
  color: var(--muted);
}
.categories i {
  position: absolute;
  right: 18px;
  bottom: 19px;
  color: var(--blue);
}
.shop {
  padding: 62px 0;
  background: var(--bg);
}
.stock {
  font-size: 0.7rem !important;
  color: #16855f !important;
}
.search {
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.search input {
  flex: 1;
  border: 0;
  outline: 0;
}
.chips {
  display: flex;
  gap: 8px;
  margin: 12px 0 22px;
}
.chips button {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}
.chips button.active {
  background: var(--navy);
  color: #fff;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.products > article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  content-visibility: auto;
  contain-intrinsic-size: 430px;
}
.visual {
  height: 180px;
  background: linear-gradient(145deg, #e9f1ff, #fff);
  display: grid;
  place-items: center;
  position: relative;
}
.visual > span {
  position: absolute;
  left: 11px;
  top: 11px;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}
.visual > b {
  font-size: 4.5rem;
}
.visual > button {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 31px;
  height: 31px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}
.details {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.details > small {
  color: var(--blue);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.details h3 {
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 7px 0 5px;
}
.details p {
  font-size: 0.67rem;
  color: var(--muted);
  margin: 0 0 12px;
}
.details > div {
  margin-top: auto;
}
.details > div b {
  font-size: 1rem;
}
.details del {
  font-size: 0.67rem;
  color: #98a2b3;
  margin-left: 7px;
}
.details > button {
  height: 41px;
  border: 0;
  border-radius: 11px;
  background: var(--ice);
  color: var(--blue);
  padding: 0 12px;
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 800;
}
.service {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 30px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.service > div {
  padding: 56px;
}
.service h2 {
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin: 12px 0 19px;
}
.service p {
  color: #aab7cb;
  max-width: 510px;
}
.service section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin: 25px 0;
}
.service section span {
  font-size: 0.78rem;
}
.service aside {
  display: grid;
  place-items: center;
  padding: 40px;
  background: linear-gradient(140deg, #164287, #3d77ff);
}
.service aside div {
  max-width: 310px;
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  color: #ffb11d;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.service aside b {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.3;
  margin: 11px 0;
}
.service aside p {
  font-size: 0.75rem;
  color: var(--muted);
}
.service aside span {
  display: block;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
}
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visit article {
  min-height: 285px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.visit article:first-child {
  background: var(--ice);
}
.visit h3 {
  font-size: 1.55rem;
}
.visit p {
  color: var(--muted);
}
.visit dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 9px;
  font-size: 0.8rem;
}
.visit dt {
  color: var(--muted);
}
.visit dd {
  margin: 0;
  font-weight: 800;
}
.visit article > a:not(.btn) {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 800;
}
footer {
  margin-top: 25px;
  padding: 48px 0;
  background: #061026;
  color: #fff;
}
.foot {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}
.foot > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.foot p,
.foot a {
  color: #9eabc0;
  font-size: 0.75rem;
}
.mobile-nav {
  display: none;
}
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 23, 0.56);
  backdrop-filter: blur(4px);
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: min(440px, 100%);
  height: 100dvh;
  background: #fff;
  z-index: 31;
  transform: translateX(100%);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.drawer.open {
  transform: none;
}
.drawer header,
.modal header {
  position: static;
  padding: 18px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer header h2,
.modal header h2 {
  font-size: 1.3rem;
  margin: 2px 0;
}
.drawer header button,
.modal header button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-size: 1.3rem;
}
.cart-list {
  flex: 1;
  overflow: auto;
  padding: 7px 20px;
}
.cart-list > article {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 11px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-list > article > div {
  background: var(--ice);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}
.cart-list h3 {
  font-size: 0.78rem;
  margin: 0;
}
.cart-list small {
  font-size: 0.61rem;
  color: var(--muted);
  display: block;
}
.cart-list section > b {
  font-size: 0.78rem;
}
.cart-list article > button {
  border: 0;
  background: none;
  color: #d54c5d;
}
.cart-list nav {
  display: flex;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 6px;
}
.cart-list nav button {
  width: 28px;
  height: 26px;
  border: 0;
  background: #fff;
}
.cart-list nav span {
  width: 24px;
  text-align: center;
  font-size: 0.66rem;
}
.empty {
  text-align: center;
  padding: 70px 15px;
  font-size: 2rem;
}
.empty h3 {
  font-size: 1rem;
}
.empty p {
  font-size: 0.75rem;
  color: var(--muted);
}
.cart-total {
  padding: 17px 21px 22px;
  border-top: 1px solid var(--line);
}
.cart-total > div {
  display: flex;
  justify-content: space-between;
}
.cart-total > small {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.cart-total .btn {
  width: 100%;
  margin-top: 7px;
}
.modal {
  position: fixed;
  z-index: 32;
  left: 50%;
  top: 50%;
  width: min(620px, calc(100% - 28px));
  max-height: 90dvh;
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.98);
  transition: 0.22s;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}
.modal form {
  padding: 20px;
}
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 800;
}
.form .wide {
  grid-column: 1/-1;
}
.form input,
.form select {
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0 11px;
  background: #fff;
}
.modal form > .btn {
  width: 100%;
  margin-top: 18px;
}
.modal form > p {
  text-align: center;
  font-size: 0.62rem;
  color: var(--muted);
}
.success {
  text-align: center;
  padding: 55px 25px;
}
.success > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: auto;
  border-radius: 50%;
  background: #e7f8f1;
  color: #0d9369;
  font-size: 1.7rem;
}
.success p {
  color: var(--muted);
  font-size: 0.8rem;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 40;
  transform: translate(-50%, 20px);
  padding: 11px 15px;
  border-radius: 11px;
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  opacity: 0;
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 900px) {
  .nav nav {
    display: none;
  }
  .hero-box {
    grid-template-columns: 1fr;
  }
  .hero-image {
    min-height: 350px;
  }
  .perks,
  .categories,
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    grid-template-columns: 1fr;
  }
  .foot {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 65px;
  }
  body {
    padding-bottom: 66px;
    background: var(--bg);
  }
  .wrap {
    width: min(100% - 24px, 1180px);
  }
  .announce {
    height: 29px;
    font-size: 0.6rem;
  }
  .nav {
    height: 61px;
  }
  .brand {
    font-size: 0.9rem;
  }
  .brand > span {
    width: 32px;
    height: 32px;
  }
  .hero {
    padding: 12px 0 6px;
  }
  .hero-box {
    display: flex;
    flex-direction: column;
    border-radius: 23px;
    min-height: 0;
  }
  .hero-image {
    order: -1;
    min-height: 228px;
  }
  .hero-image aside {
    left: 11px;
    bottom: 11px;
    padding: 10px 12px;
  }
  .hero-image aside b {
    font-size: 0.9rem;
  }
  .hero-image aside span {
    display: none;
  }
  .hero-copy {
    padding: 28px 19px 24px;
  }
  .hero h1 {
    font-size: 2.65rem;
    margin: 13px 0 16px;
  }
  .hero p {
    font-size: 0.82rem;
    line-height: 1.6;
    margin-bottom: 19px;
  }
  .hero-copy > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .btn {
    font-size: 0.7rem;
    padding: 11px;
  }
  .perks {
    padding: 4px 0 26px;
    gap: 0;
  }
  .perks article {
    padding: 10px 2px;
    font-size: 0.82rem;
  }
  .perks b {
    font-size: 0.66rem;
  }
  .perks small {
    font-size: 0.57rem;
  }
  .section,
  .shop {
    padding: 39px 0;
  }
  .title {
    display: block;
    margin-bottom: 18px;
  }
  .title h2 {
    font-size: 2rem;
  }
  .title > p {
    font-size: 0.7rem;
    margin-top: 8px;
  }
  .categories {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 9px;
    margin-right: -12px;
    padding-right: 12px;
    scrollbar-width: none;
  }
  .categories button {
    flex: 0 0 72%;
    min-height: 138px;
    padding: 16px;
    scroll-snap-align: start;
  }
  .categories button > span {
    font-size: 2rem;
  }
  .search {
    height: 47px;
  }
  .chips {
    overflow-x: auto;
    margin-inline: -12px;
    padding-inline: 12px;
    scrollbar-width: none;
  }
  .chips button {
    flex: 0 0 auto;
  }
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .products > article {
    border-radius: 17px;
  }
  .visual {
    height: 132px;
  }
  .visual > b {
    font-size: 3.2rem;
  }
  .visual > span {
    font-size: 0.5rem;
    left: 8px;
    top: 8px;
  }
  .visual > button {
    right: 8px;
    top: 8px;
    width: 27px;
    height: 27px;
  }
  .details {
    padding: 10px;
  }
  .details h3 {
    font-size: 0.73rem;
    min-height: 38px;
  }
  .details p {
    font-size: 0.56rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .details > div b {
    font-size: 0.86rem;
  }
  .details del {
    font-size: 0.56rem;
  }
  .details > button {
    height: 37px;
    font-size: 0.64rem;
    margin-top: 9px;
  }
  .service {
    border-radius: 22px;
  }
  .service > div {
    padding: 31px 21px;
  }
  .service h2 {
    font-size: 2.25rem;
  }
  .service p {
    font-size: 0.75rem;
  }
  .service section {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .service aside {
    padding: 28px;
    min-height: 270px;
  }
  .visit {
    grid-template-columns: 1fr;
  }
  .visit article {
    padding: 24px;
    min-height: 250px;
  }
  .foot {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .foot > div:first-child {
    grid-column: 1/-1;
  }
  .mobile-nav {
    position: fixed;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--line);
  }
  .mobile-nav a,
  .mobile-nav button {
    border: 0;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--muted);
    position: relative;
  }
  .mobile-nav b {
    font-size: 0.55rem;
  }
  .mobile-nav i {
    position: absolute;
    top: 5px;
    right: 18%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 0.5rem;
  }
  .drawer {
    top: auto;
    bottom: 0;
    height: min(88dvh, 760px);
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
  }
  .modal {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
  }
  .modal.open {
    transform: none;
  }
  .form {
    grid-template-columns: 1fr;
  }
  .form .wide {
    grid-column: auto;
  }
  .toast {
    bottom: 78px;
    max-width: calc(100% - 24px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Brand catalogue and real product imagery */
.brand-section {
  padding-bottom: 28px;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.brand-grid > button {
  min-height: 138px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.2s;
}
.brand-grid > button:hover,
.brand-grid > button.active {
  border-color: #87cfca;
  box-shadow: 0 15px 35px rgba(15, 106, 121, 0.09);
  transform: translateY(-2px);
}
.brand-grid > button.active {
  background: linear-gradient(145deg, #f0fbfa, #fff);
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #edf1f2;
  padding: 5px;
}
.brand-logo b {
  font-size: 1rem;
}
.brand-grid small {
  color: var(--muted);
  font-size: 0.68rem;
}
.brand-grid i {
  font-style: normal;
  color: #0b8f85;
  font-size: 0.68rem;
  font-weight: 800;
}
.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.active-filters:empty {
  display: none;
}
.active-filters span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eaf8f6;
  color: #315d61;
  border-radius: 999px;
  padding: 7px 8px 7px 11px;
  font-size: 0.66rem;
}
.active-filters button {
  border: 0;
  background: #fff;
  color: #58777a;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0;
}
.visual {
  overflow: hidden;
}
.visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 25px;
  background: #fff;
  transition: transform 0.25s;
}
.products > article:hover .visual > img {
  transform: scale(1.035);
}
@media (max-width: 900px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .brand-section {
    padding-bottom: 10px;
  }
  .brand-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 9px;
    margin-right: -12px;
    padding-right: 12px;
    scrollbar-width: none;
  }
  .brand-grid > button {
    flex: 0 0 58%;
    min-height: 125px;
    padding: 16px;
    scroll-snap-align: start;
  }
  .brand-logo img {
    width: 34px;
    height: 34px;
  }
  .visual > img {
    padding: 13px;
  }
  .active-filters {
    margin-bottom: 2px;
  }
}
