:root {
  --blue: #087bd3;
  --blue-dark: #075da5;
  --blue-deep: #063f70;
  --cyan: #11b8df;
  --teal: #11a7a2;
  --pale: #eaf8ff;
  --surface: #f7fbfd;
  --white: #ffffff;
  --text: #102b3b;
  --muted: #647b88;
  --line: #dcecf3;
  --shadow: 0 18px 55px rgba(9, 81, 126, .11);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(215, 234, 243, .9);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 225px; }
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 14px; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 17px; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: var(--muted); font-size: 11px; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 30px; margin-left: auto; }
.desktop-nav a { color: #3e5866; font-size: 14px; font-weight: 650; }
.desktop-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-contact, .cart-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 750;
}
.header-contact { padding: 0 18px; color: white; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.cart-link { padding: 0 12px; border: 1px solid var(--line); background: white; }
.cart-link svg { width: 19px; }
.cart-link b { min-width: 21px; height: 21px; display: grid; place-items: center; border-radius: 99px; color: white; background: var(--blue); font-size: 11px; }

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  background: #dff6ff url("/theme-assets/static/images/hero-aquatic.webp") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 120px;
  background: url("/theme-assets/static/images/wave-divider.webp") center bottom / 100% 190px no-repeat;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; padding-block: 90px 150px; }
.hero-copy { width: min(600px, 52%); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 99px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(8, 123, 211, .15);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero h1 { max-width: 620px; margin: 20px 0 16px; font-size: clamp(44px, 5vw, 72px); line-height: 1.03; letter-spacing: -.055em; color: #073f67; }
.hero p { max-width: 550px; margin: 0; color: #315f74; font-size: 17px; }
.hero-buttons, .store-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); box-shadow: 0 12px 28px rgba(8, 123, 211, .23); }
.button.secondary { color: var(--blue-dark); background: rgba(255, 255, 255, .78); border-color: rgba(8, 123, 211, .2); }
.button.white { color: var(--blue-dark); background: white; }
.button.outline { color: var(--blue-dark); background: white; border-color: #b9dce9; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; color: #416a79; font-size: 12px; font-weight: 700; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(17, 167, 162, .12); }

.quick-access { position: relative; z-index: 3; margin-top: -28px; }
.quick-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.quick-card {
  min-height: 94px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 38px rgba(17, 85, 119, .09);
  transition: transform .2s ease, border-color .2s ease;
}
.quick-card:hover { transform: translateY(-4px); border-color: #9dd9ee; }
.quick-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: var(--blue); background: var(--pale); }
.quick-icon svg { width: 24px; }
.quick-card > span:nth-child(2) { min-width: 0; display: grid; }
.quick-card small { color: var(--muted); font-size: 10px; }
.quick-card strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.quick-card > b { color: var(--blue); }

.section { padding: 100px 0; }
.section-heading { margin-bottom: 38px; }
.section-heading.centered { max-width: 660px; margin-inline: auto; text-align: center; }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading h2, .consultation h2, .store-copy h2 { margin: 13px 0 8px; font-size: clamp(30px, 3vw, 45px); line-height: 1.15; letter-spacing: -.04em; }
.section-heading p, .store-copy p { margin: 0; color: var(--muted); }
.text-link { color: var(--blue); font-size: 14px; font-weight: 800; white-space: nowrap; }
.text-link span { margin-left: 6px; }
.categories { padding-top: 86px; background: white url("/theme-assets/static/images/bubbles.webp") center / min(800px, 80vw) auto no-repeat; }
.category-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.category-card {
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #d5edf7;
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(145deg, rgba(247, 253, 255, .96), rgba(230, 248, 255, .92));
  transition: transform .22s ease, box-shadow .22s ease;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.category-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 13px; border-radius: 18px; color: var(--blue); background: white; box-shadow: 0 9px 24px rgba(8, 123, 211, .11); }
.category-icon svg { width: 30px; }
.category-card strong { position: relative; font-size: 14px; }
.category-card small { position: relative; color: var(--muted); font-size: 11px; }
.category-bubble { position: absolute; border-radius: 50%; border: 1px solid rgba(17, 184, 223, .2); background: rgba(255, 255, 255, .36); }
.category-bubble.one { width: 90px; height: 90px; top: -35px; right: -22px; }
.category-bubble.two { width: 34px; height: 34px; left: 16px; bottom: 13px; }

.products { background: var(--surface); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid #deebf0; border-radius: 20px; background: white; transition: transform .22s ease, box-shadow .22s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-image { aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; background: #eff8fb; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-image > span { color: #8fb2c2; font-weight: 800; }
.product-info { min-height: 145px; padding: 17px; display: flex; flex-direction: column; }
.product-info small { color: var(--blue); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.product-info h3 { margin: 5px 0 13px; font-size: 15px; line-height: 1.4; }
.product-info > span { margin-top: auto; color: var(--muted); font-size: 10px; }
.product-info > strong { color: var(--blue-dark); font-size: 18px; }
.empty-state { padding: 55px 24px; border: 1px dashed #bddbe7; border-radius: 20px; text-align: center; background: white; }
.empty-state p { margin: 7px 0 0; color: var(--muted); }

.consultation { overflow: hidden; color: white; background: linear-gradient(125deg, #075796, #078ac6 58%, #10aebe); }
.consultation-inner { min-height: 410px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; position: relative; }
.consultation-copy { position: relative; z-index: 2; padding: 70px 0; }
.consultation .eyebrow.light { color: white; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.12); }
.consultation h2 { max-width: 620px; margin-top: 18px; font-size: clamp(34px, 4vw, 51px); }
.consultation p { max-width: 570px; color: rgba(255,255,255,.79); }
.consultation img { align-self: end; justify-self: end; width: min(580px, 50vw); max-height: 400px; object-fit: contain; object-position: right bottom; }

.offline-store { background: white; }
.store-card {
  min-height: 450px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #f0faff);
  box-shadow: var(--shadow);
}
.store-copy { padding: 62px; }
.store-copy address { margin-top: 22px; padding: 18px 20px; border-left: 4px solid var(--cyan); border-radius: 0 12px 12px 0; color: #365c6d; background: white; font-style: normal; }
.store-meta { display: flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--muted); font-size: 13px; }
.store-meta svg { width: 21px; color: var(--blue); }
.store-visual { position: relative; overflow: hidden; background: radial-gradient(circle at center, rgba(255,255,255,.95) 0 9%, transparent 10%), repeating-radial-gradient(circle at 50% 50%, rgba(20,167,206,.15) 0 2px, transparent 3px 48px), linear-gradient(145deg, #c9f0fb, #68c9e8); }
.map-pin { width: 100px; height: 100px; display: grid; place-items: center; position: absolute; left: 50%; top: 50%; z-index: 2; transform: translate(-50%, -50%); border-radius: 50%; color: white; background: linear-gradient(145deg, var(--blue), var(--cyan)); box-shadow: 0 20px 45px rgba(7, 95, 165, .3); }
.map-pin svg { width: 48px; }
.store-ripple { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; transform: translate(-50%,-50%); }
.store-ripple.one { width: 240px; height: 240px; }
.store-ripple.two { width: 390px; height: 390px; }

.site-footer { color: #d5e8f0; background: #062f4a; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; padding-block: 70px 50px; }
.footer-brand img { width: 62px; height: 62px; object-fit: contain; padding: 6px; border-radius: 16px; background: white; }
.footer-brand strong { display: block; margin-top: 15px; color: white; font-size: 18px; }
.footer-brand p { max-width: 340px; margin: 8px 0 0; color: #9fc0cf; font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong { margin-bottom: 5px; color: white; }
.footer-links a { color: #a9c9d7; font-size: 13px; }
.footer-links a:hover { color: white; }
.copyright { padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #8cabb9; font-size: 12px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .quick-grid, .category-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-copy { width: 58%; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; gap: 10px; }
  .brand { min-width: 0; margin-right: auto; }
  .brand img { width: 44px; height: 44px; }
  .brand span { display: none; }
  .header-contact { padding-inline: 13px; }
  .cart-link span { display: none; }
  .hero { min-height: 690px; align-items: start; background-position: 63% center; }
  .hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(223,246,255,.98) 0 50%, rgba(223,246,255,.35) 75%, transparent); }
  .hero::after { height: 85px; background-size: auto 125px; }
  .hero-inner { padding-block: 58px 250px; }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(39px, 12vw, 54px); }
  .hero p { font-size: 15px; }
  .hero-buttons .button { width: 100%; }
  .quick-access { margin-top: -20px; }
  .quick-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .quick-card { min-height: 82px; grid-template-columns: 40px minmax(0,1fr); padding: 12px; }
  .quick-icon { width: 40px; height: 40px; }
  .quick-card > b { display: none; }
  .section { padding: 72px 0; }
  .section-heading.split { align-items: flex-start; flex-direction: column; gap: 14px; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .category-card { min-height: 145px; padding: 15px 8px; }
  .category-icon { width: 48px; height: 48px; }
  .product-info { min-height: 135px; padding: 13px; }
  .product-info h3 { font-size: 13px; }
  .product-info > strong { font-size: 15px; }
  .consultation-inner { min-height: 650px; display: block; }
  .consultation-copy { padding: 65px 0 300px; }
  .consultation img { width: 100%; max-width: 500px; position: absolute; right: -30px; bottom: 0; }
  .store-card { grid-template-columns: 1fr; }
  .store-copy { padding: 35px 24px; }
  .store-visual { min-height: 290px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 24px; padding-top: 55px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 390px) {
  .header-contact { font-size: 12px; }
  .quick-grid { grid-template-columns: 1fr; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
