:root {
  --marine: #0f2a4a;
  --water: #0077b6;
  --water-dark: #005f92;
  --cyan: #90e0ef;
  --silver: #f8fafc;
  --sun: #ffb703;
  --slate: #475569;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--silver);
  color: #1e293b;
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

/* Mobile viewport guard: full-bleed rows and third-party widgets may create
   sub-pixel overflow on mobile browsers. Clip only the page root; intentional
   inner carousels keep their own overflow-x:auto behaviour. */
@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--marine);
  background: white;
  box-shadow: 0 10px 30px rgba(15, 42, 74, 0.2);
}

.site-main {
  min-height: 50vh;
}

.robbs-fullbleed {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.robbs-builder-row,
.robbs-builder-row > .wpb_column > .vc_column-inner,
.robbs-builder-row > .wpb_column > .vc_column-inner > .wpb_wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

.robbs-builder-row .wpb_content_element {
  margin-bottom: 0;
}

/* Advanced native WPBakery rows and columns. */
.robbs-vc-container {
  position: var(--robbs-vc-position, relative);
  z-index: var(--robbs-vc-z-index);
  top: var(--robbs-vc-top);
  right: var(--robbs-vc-right);
  bottom: var(--robbs-vc-bottom);
  left: var(--robbs-vc-left);
  width: var(--robbs-vc-width);
  min-width: var(--robbs-vc-min-width);
  max-width: var(--robbs-vc-max-width);
  height: var(--robbs-vc-height);
  min-height: var(--robbs-vc-min-height);
  max-height: var(--robbs-vc-max-height);
  margin: var(--robbs-vc-margin);
  padding: var(--robbs-vc-padding);
  border-width: var(--robbs-vc-border-width);
  border-style: var(--robbs-vc-border-style);
  border-color: var(--robbs-vc-border-color);
  border-radius: var(--robbs-vc-radius);
  color: var(--robbs-vc-color);
  background-color: var(--robbs-vc-background);
  box-shadow: var(--robbs-vc-box-shadow);
  font-family: var(--robbs-vc-font-family);
  font-size: var(--robbs-vc-font-size);
  font-weight: var(--robbs-vc-font-weight);
  line-height: var(--robbs-vc-line-height);
  letter-spacing: var(--robbs-vc-letter-spacing);
  text-align: var(--robbs-vc-text-align);
  text-shadow: var(--robbs-vc-text-shadow);
  overflow: var(--robbs-vc-overflow);
  transform: var(--robbs-vc-transform);
}

.robbs-vc-container.robbs-vc-has-background-layer {
  background-image: linear-gradient(color-mix(in srgb, var(--robbs-vc-overlay, transparent) var(--robbs-vc-overlay-opacity, 35%), transparent), color-mix(in srgb, var(--robbs-vc-overlay, transparent) var(--robbs-vc-overlay-opacity, 35%), transparent)), var(--robbs-vc-bg-image, none);
  background-position: var(--robbs-vc-bg-position, center center);
  background-size: var(--robbs-vc-bg-size, cover);
}

.robbs-vc-container.robbs-vc-text_align-left { --robbs-vc-text-align: left; }
.robbs-vc-container.robbs-vc-text_align-center { --robbs-vc-text-align: center; }
.robbs-vc-container.robbs-vc-text_align-right { --robbs-vc-text-align: right; }
.robbs-vc-container.robbs-vc-border_style-solid { --robbs-vc-border-style: solid; }
.robbs-vc-container.robbs-vc-border_style-dashed { --robbs-vc-border-style: dashed; }
.robbs-vc-container.robbs-vc-border_style-dotted { --robbs-vc-border-style: dotted; }
.robbs-vc-container.robbs-vc-overflow-visible { --robbs-vc-overflow: visible; }
.robbs-vc-container.robbs-vc-overflow-hidden { --robbs-vc-overflow: hidden; }
.robbs-vc-container.robbs-vc-overflow-clip { --robbs-vc-overflow: clip; }
.robbs-vc-container.robbs-vc-overflow-auto { --robbs-vc-overflow: auto; }

/*
 * Combined Robbs sections create their own full-viewport background. Native
 * WPBakery rows default to overflow:hidden and would otherwise crop those
 * sections back to the 1180px content container. Explicit overflow choices in
 * WPBakery remain authoritative.
 */
.robbs-vc-row.robbs-builder-row:not(.robbs-vc-overflow-hidden):not(.robbs-vc-overflow-clip):not(.robbs-vc-overflow-auto) {
  overflow: visible;
}

.robbs-vc-container.robbs-vc-position-relative { --robbs-vc-position: relative; }
.robbs-vc-container.robbs-vc-position-absolute { --robbs-vc-position: absolute; }
.robbs-vc-container.robbs-vc-position-sticky { --robbs-vc-position: sticky; top: 20px; }
.robbs-vc-container.robbs-vc-bg_size-cover { --robbs-vc-bg-size: cover; }
.robbs-vc-container.robbs-vc-bg_size-contain { --robbs-vc-bg-size: contain; }
.robbs-vc-container.robbs-vc-bg_size-auto { --robbs-vc-bg-size: auto; }

.robbs-vc-row.robbs-vc-vertical_padding-none { padding-block: 0; }
.robbs-vc-row.robbs-vc-vertical_padding-small { padding-block: 40px; }
.robbs-vc-row.robbs-vc-vertical_padding-medium { padding-block: 72px; }
.robbs-vc-row.robbs-vc-vertical_padding-large { padding-block: 104px; }
.robbs-vc-row.robbs-vc-full-height { min-height: 100vh; }
.robbs-vc-row.robbs-vc-color_scheme-light,
.robbs-vc-row.robbs-vc-color_scheme-light h1,
.robbs-vc-row.robbs-vc-color_scheme-light h2,
.robbs-vc-row.robbs-vc-color_scheme-light h3 { color: white; }
.robbs-vc-row.robbs-vc-color_scheme-dark { color: var(--marine); }

.robbs-vc-row > .wpb_column > .vc_column-inner,
.robbs-vc-row > .vc_vc_column > .wpb_column > .vc_column-inner {
  padding-right: calc(var(--robbs-vc-gap, 30px) / 2);
  padding-left: calc(var(--robbs-vc-gap, 30px) / 2);
}

.robbs-vc-row.robbs-vc-equal-height {
  display: flex;
  flex-wrap: wrap;
}

.robbs-vc-row.robbs-vc-equal-height > .wpb_column > .vc_column-inner {
  height: 100%;
}

.robbs-vc-row.robbs-vc-columns_align-center > .wpb_column > .vc_column-inner,
.robbs-vc-row.robbs-vc-columns_align-end > .wpb_column > .vc_column-inner,
.robbs-vc-row.robbs-vc-columns_align-start > .wpb_column > .vc_column-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.robbs-vc-row.robbs-vc-columns_align-center > .wpb_column > .vc_column-inner { justify-content: center; }
.robbs-vc-row.robbs-vc-columns_align-end > .wpb_column > .vc_column-inner { justify-content: flex-end; }
.robbs-vc-row.robbs-vc-columns_align-start > .wpb_column > .vc_column-inner { justify-content: flex-start; }
.robbs-vc-row.robbs-vc-column-padding > .wpb_column > .vc_column-inner { padding: max(24px, var(--robbs-vc-gap, 30px)); }
.robbs-vc-column.robbs-vc-sticky-column > .vc_column-inner { position: sticky; top: calc(var(--robbs-header-shrink-height, 76px) + 20px); }
.robbs-vc-column.robbs-vc-stretch-edge { width: 50vw; max-width: 50vw; }
.robbs-vc-linked-column { cursor: pointer; }
.robbs-vc-linked-column:focus-visible { outline: 3px solid var(--water); outline-offset: 4px; }

.robbs-vc-shape-top-wave::before,
.robbs-vc-shape-top-tilt::before,
.robbs-vc-shape-top-curve::before,
.robbs-vc-shape-top-triangle::before,
.robbs-vc-shape-top-zigzag::before,
.robbs-vc-shape-bottom-wave::after,
.robbs-vc-shape-bottom-tilt::after,
.robbs-vc-shape-bottom-curve::after,
.robbs-vc-shape-bottom-triangle::after,
.robbs-vc-shape-bottom-zigzag::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  left: 0;
  height: var(--robbs-vc-shape-top-height, 70px);
  background: var(--robbs-vc-shape-top-color, white);
  pointer-events: none;
}

[class*="robbs-vc-shape-top-"]::before { top: calc(-1 * var(--robbs-vc-shape-top-height, 70px) + 1px); }
[class*="robbs-vc-shape-bottom-"]::after {
  bottom: calc(-1 * var(--robbs-vc-shape-bottom-height, 70px) + 1px);
  height: var(--robbs-vc-shape-bottom-height, 70px);
  background: var(--robbs-vc-shape-bottom-color, white);
  transform: rotate(180deg);
}

.robbs-vc-shape-top-wave::before,
.robbs-vc-shape-bottom-wave::after { clip-path: ellipse(68% 56% at 50% 100%); }
.robbs-vc-shape-top-tilt::before,
.robbs-vc-shape-bottom-tilt::after { clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%); }
.robbs-vc-shape-top-curve::before,
.robbs-vc-shape-bottom-curve::after { clip-path: ellipse(80% 64% at 20% 100%); }
.robbs-vc-shape-top-triangle::before,
.robbs-vc-shape-bottom-triangle::after { clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.robbs-vc-shape-top-zigzag::before,
.robbs-vc-shape-bottom-zigzag::after { clip-path: polygon(0 100%, 0 55%, 10% 80%, 20% 45%, 30% 80%, 40% 45%, 50% 80%, 60% 45%, 70% 80%, 80% 45%, 90% 80%, 100% 55%, 100% 100%); }

.robbs-vc-animation-fade,
.robbs-vc-animation-fade-up,
.robbs-vc-animation-fade-left,
.robbs-vc-animation-fade-right,
.robbs-vc-animation-zoom {
  transition: opacity var(--robbs-vc-animation-duration, 700ms) ease var(--robbs-vc-animation-delay, 0ms), transform var(--robbs-vc-animation-duration, 700ms) ease var(--robbs-vc-animation-delay, 0ms);
}

.robbs-vc-animate-ready:not(.is-robbs-visible) { opacity: 0; }
.robbs-vc-animate-ready.robbs-vc-animation-fade-up:not(.is-robbs-visible) { transform: translateY(32px); }
.robbs-vc-animate-ready.robbs-vc-animation-fade-left:not(.is-robbs-visible) { transform: translateX(-36px); }
.robbs-vc-animate-ready.robbs-vc-animation-fade-right:not(.is-robbs-visible) { transform: translateX(36px); }
.robbs-vc-animate-ready.robbs-vc-animation-zoom:not(.is-robbs-visible) { transform: scale(0.94); }
.robbs-vc-hover_transform-lift,
.robbs-vc-hover_transform-grow,
.robbs-vc-hover_transform-tilt { transition: transform 220ms ease, box-shadow 220ms ease; }
.robbs-vc-hover_transform-lift:hover { transform: translateY(-7px); }
.robbs-vc-hover_transform-grow:hover { transform: scale(1.025); }
.robbs-vc-hover_transform-tilt:hover { transform: perspective(900px) rotateX(2deg) rotateY(-2deg); }

/* Small, independently editable Robbs elements. */
.robbs-atomic {
  box-sizing: border-box;
  max-width: var(--robbs-atomic-max-width, none);
  margin: var(--robbs-atomic-margin, 0);
  border-width: var(--robbs-atomic-border-width, 0);
  border-style: var(--robbs-atomic-border-style, solid);
  border-color: var(--robbs-atomic-border-color, transparent);
  border-radius: var(--robbs-atomic-radius, 0);
  padding: var(--robbs-atomic-padding, 0);
  color: var(--robbs-atomic-color, inherit);
  background: var(--robbs-atomic-background, transparent);
  box-shadow: var(--robbs-atomic-box-shadow, none);
  font-family: var(--robbs-atomic-font-family, inherit);
  font-size: var(--robbs-atomic-font-size, inherit);
  font-weight: var(--robbs-atomic-font-weight, inherit);
  line-height: var(--robbs-atomic-line-height, inherit);
  letter-spacing: var(--robbs-atomic-letter-spacing, inherit);
}

.robbs-atomic-border-solid { --robbs-atomic-border-style: solid; }
.robbs-atomic-border-dashed { --robbs-atomic-border-style: dashed; }
.robbs-atomic-border-dotted { --robbs-atomic-border-style: dotted; }

.robbs-atomic-align-left { margin-right: auto; text-align: left; }
.robbs-atomic-align-center { margin-right: auto; margin-left: auto; text-align: center; }
.robbs-atomic-align-right { margin-left: auto; text-align: right; }
.robbs-atomic-heading { margin-top: 0; margin-bottom: 22px; color: var(--robbs-atomic-color, var(--marine)); font-family: var(--robbs-atomic-font-family, "Nunito", sans-serif); font-weight: var(--robbs-atomic-font-weight, 900); line-height: var(--robbs-atomic-line-height, 1.1); }
.robbs-atomic-heading span { color: var(--water); }
.robbs-atomic-text { color: var(--robbs-atomic-color, var(--slate)); }
.robbs-atomic-text > :first-child { margin-top: 0; }
.robbs-atomic-text > :last-child { margin-bottom: 0; }
.robbs-spacer { display: block; width: 100%; height: var(--robbs-spacer-height, clamp(20px, 3vw, 36px)); min-height: var(--robbs-spacer-height, clamp(20px, 3vw, 36px)); clear: both; pointer-events: none; }
.robbs-spacer-s { --robbs-spacer-height: clamp(12px, 1.5vw, 18px); }
.robbs-spacer-m { --robbs-spacer-height: clamp(20px, 3vw, 36px); }
.robbs-spacer-l { --robbs-spacer-height: clamp(32px, 4.5vw, 58px); }
.robbs-spacer-xl { --robbs-spacer-height: clamp(48px, 7vw, 92px); }
.robbs-atomic-image { position: relative; margin-block: 0; overflow: visible; }
.robbs-atomic-image img { display: block; width: 100%; aspect-ratio: var(--robbs-atomic-image-ratio, auto); border-radius: inherit; object-fit: var(--robbs-atomic-image-fit, cover); object-position: var(--robbs-atomic-image-position, center center); }
.robbs-atomic-icon-box { min-height: 100%; }
.robbs-atomic-icon-box > a { display: block; color: inherit; text-decoration: none; }
.robbs-atomic-category { display: flex; height: 100%; }
.robbs-atomic-testimonial { min-height: 100%; }
.robbs-atomic-stat { display: inline-flex; align-items: center; gap: 7px; margin-right: 22px; }
.robbs-atomic-stat small { margin-left: -3px; }
.robbs-atomic-mascot { position: relative; }

.robbs-atomic-section.robbs-row-width-full {
  padding-right: max(calc((100vw - var(--robbs-content-width, 1180px)) / 2), 20px);
  padding-left: max(calc((100vw - var(--robbs-content-width, 1180px)) / 2), 20px);
}

.robbs-atomic-hero { background: linear-gradient(180deg, rgba(144, 224, 239, 0.48), #fff); }
.robbs-atomic-hero .robbs-atomic-image { z-index: 1; border-radius: 44% 56% 45% 55% / 52% 45% 55% 48%; box-shadow: 0 25px 70px rgba(15, 42, 74, 0.18); }
.robbs-atomic-hero .robbs-atomic-mascot { z-index: 2; max-width: 280px; margin: -70px 20px 0 auto; }
.robbs-atomic-categories .wpb_column > .vc_column-inner,
.robbs-atomic-features .wpb_column > .vc_column-inner,
.robbs-atomic-testimonials .wpb_column > .vc_column-inner { height: 100%; }
.robbs-atomic-features {
  border-radius: clamp(24px, 3vw, 38px);
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--cyan) 16%, #fff) 100%);
}
.robbs-atomic-eyebrow.robbs-atomic-align-left,
.robbs-atomic-eyebrow.robbs-atomic-align-center,
.robbs-atomic-eyebrow.robbs-atomic-align-right {
  display: flex;
  width: max-content;
  max-width: 100%;
}
.robbs-atomic-eyebrow.robbs-atomic-align-left {
  margin-right: auto !important;
  margin-left: 0 !important;
}
.robbs-atomic-eyebrow.robbs-atomic-align-center {
  margin-right: auto !important;
  margin-left: auto !important;
}
.robbs-atomic-eyebrow.robbs-atomic-align-right {
  margin-right: 0 !important;
  margin-left: auto !important;
}
.robbs-advantages-row + .robbs-advantages-row { margin-top: 24px; }
.robbs-advantages-row .robbs-atomic-icon-box { height: 100%; }
.robbs-atomic-testimonials { background: radial-gradient(circle at 90% 10%, rgba(0,119,182,.32), transparent 25%), var(--marine); }
.robbs-atomic-testimonials .robbs-atomic-heading { color: white; }
.robbs-atomic-cta { text-align: center; }
.robbs-atomic-cta .robbs-builder-brand,
.robbs-atomic-cta .robbs-builder-button { justify-content: center; }

.robbs-builder-button.robbs-atomic,
.robbs-builder-brand.robbs-atomic,
.robbs-builder-contact.robbs-atomic,
.robbs-builder-navigation.robbs-atomic {
  margin: var(--robbs-atomic-margin, 0);
  border-radius: var(--robbs-atomic-radius, 0);
  padding: var(--robbs-atomic-padding, 0);
  color: var(--robbs-atomic-color, inherit);
  background: var(--robbs-atomic-background, transparent);
  box-shadow: var(--robbs-atomic-box-shadow, none);
  font-family: var(--robbs-atomic-font-family, inherit);
  font-size: var(--robbs-atomic-font-size, inherit);
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.04);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header,
.admin-bar .robbs-template-header {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  min-height: 80px;
  margin: 0 auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: var(--marine);
  background: transparent;
  text-align: left;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  display: block;
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-logo.context-header.has-compact-logo img {
  transition: opacity var(--robbs-header-transition, 220ms) ease;
}

.brand-logo.context-header .robbs-logo-compact {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.robbs-header-shrink-enabled .site-header.is-scrolled .brand-logo.context-header.has-compact-logo .robbs-logo-default,
.robbs-header-shrink-enabled .robbs-template-header.is-scrolled .brand-logo.context-header.has-compact-logo .robbs-logo-default {
  opacity: 0;
}

.robbs-header-shrink-enabled .site-header.is-scrolled .brand-logo.context-header.has-compact-logo .robbs-logo-compact,
.robbs-header-shrink-enabled .robbs-template-header.is-scrolled .brand-logo.context-header.has-compact-logo .robbs-logo-compact {
  opacity: 1;
}

.brand-logo.small {
  width: 90px;
  height: 90px;
}

.robbs-header-element {
  flex: 0 0 auto;
  border-radius: var(--robbs-element-radius, 0);
  color: var(--robbs-element-color, inherit);
  background: var(--robbs-element-background, transparent);
  font-family: var(--robbs-element-font-family, inherit);
  font-size: var(--robbs-element-font-size, inherit);
  font-weight: var(--robbs-element-font-weight, inherit);
}

.robbs-header-element .primary-menu a,
.robbs-header-element .mobile-primary-menu a,
.mobile-menu.robbs-header-element a,
.robbs-header-element-contact a,
.robbs-header-element-social a,
.robbs-header-element-html a {
  color: var(--robbs-element-color) !important;
  font-family: var(--robbs-element-font-family) !important;
  font-size: var(--robbs-element-font-size) !important;
  font-weight: var(--robbs-element-font-weight) !important;
}

.robbs-header-element.robbs-header-custom-text,
.robbs-header-element.robbs-header-element-html {
  color: var(--robbs-element-color) !important;
  font-family: var(--robbs-element-font-family) !important;
  font-size: var(--robbs-element-font-size) !important;
  font-weight: var(--robbs-element-font-weight) !important;
}

.robbs-header-element-button.primary-button,
.robbs-mobile-builder-button.primary-button {
  color: var(--robbs-element-button-text, var(--robbs-button-primary-text, white));
  background: var(--robbs-element-button-bg, var(--robbs-button-primary, var(--water)));
}

.robbs-header-element-button.primary-button:hover,
.robbs-mobile-builder-button.primary-button:hover {
  color: var(--robbs-element-button-text, var(--robbs-button-primary-text, white));
  background: var(--robbs-element-button-hover, var(--robbs-button-primary-hover, var(--water-dark)));
}

.robbs-header-element-navigation,
.robbs-header-element-contact,
.robbs-header-element-social,
.robbs-header-element-html {
  display: flex;
  align-items: center;
}

.robbs-header-element-html {
  min-width: 0;
  color: var(--robbs-header-text, var(--slate));
}

.robbs-header-element-html a {
  color: inherit;
}

.robbs-header-transparent-home.home .site-header:not(.is-scrolled) .robbs-header-element-html {
  color: var(--robbs-header-transparent-text, var(--marine));
}

.site-header.is-scrolled .robbs-header-element-html {
  color: var(--robbs-header-scroll-text, var(--marine));
}

.robbs-header-element-html > :first-child {
  margin-top: 0;
}

.robbs-header-element-html > :last-child {
  margin-bottom: 0;
}

.robbs-header-element-spacer {
  min-width: max(12px, var(--robbs-element-spacer-width, 0px));
  flex: var(--robbs-element-flex-grow, 1) 1 auto;
}

.robbs-header-custom-text {
  max-width: 360px;
  color: var(--robbs-header-text, var(--slate));
  font-weight: 600;
  line-height: 1.35;
}

.robbs-header-element-contact {
  gap: 12px;
  flex-wrap: wrap;
}

.robbs-header-element-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--robbs-header-text, var(--slate));
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.robbs-header-element-social {
  gap: 8px;
  flex-wrap: wrap;
}

.robbs-header-element-social .robbs-social-link {
  display: inline-flex;
  min-width: calc(var(--robbs-social-icon-size, 18px) + 18px);
  min-height: calc(var(--robbs-social-icon-size, 18px) + 18px);
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--robbs-header-text, var(--slate));
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.robbs-header-element-social .robbs-social-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
}

.robbs-header-element-social .robbs-social-icon svg {
  width: var(--robbs-social-icon-size, 18px);
  height: var(--robbs-social-icon-size, 18px);
}

.robbs-header-element-social.is-circle .robbs-social-link {
  padding: 8px;
  border-color: rgba(0, 119, 182, .18);
  color: var(--robbs-element-color, var(--marine)) !important;
  background: #eef9fc;
  box-shadow: 0 6px 16px rgba(15, 42, 74, .07);
}

.robbs-header-element-social.is-circle.is-icon-only .robbs-social-link {
  width: max(42px, calc(var(--robbs-social-icon-size, 18px) + 24px));
  height: max(42px, calc(var(--robbs-social-icon-size, 18px) + 24px));
  min-width: 42px;
  min-height: 42px;
  padding: 0;
}

.robbs-header-element-social.is-circle.has-labels .robbs-social-link {
  padding-right: 12px;
  padding-left: 10px;
}

.robbs-header-element-social.is-plain .robbs-social-link {
  min-width: auto;
  min-height: auto;
  padding: 4px;
}

.robbs-header-element-social.has-labels.is-plain .robbs-social-link {
  padding: 6px 3px;
}

.robbs-header-element-social .robbs-social-link:hover,
.robbs-header-element-social .robbs-social-link:focus-visible {
  border-color: var(--water);
  color: #fff !important;
  background: var(--water);
  box-shadow: 0 10px 24px rgba(0, 119, 182, .2);
  outline: 0;
  transform: translateY(-2px);
}

.robbs-header-element-social .robbs-social-label {
  white-space: nowrap;
}

.robbs-header-cart {
  position: relative;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-woo-accent, var(--water));
  border-radius: 999px;
  color: white;
  background: var(--robbs-woo-accent, var(--water));
  box-shadow: 0 7px 20px rgba(15, 42, 74, 0.08);
  text-decoration: none;
  transition: 160ms ease;
}

.robbs-header-cart:hover,
.robbs-header-cart:focus-visible {
  border-color: var(--robbs-woo-accent, var(--water));
  color: var(--robbs-woo-accent, var(--water));
  background: white;
  outline: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 20%, transparent);
  transform: translateY(-1px);
}

.robbs-header-cart-icon {
  display: inline-flex;
}

.robbs-header-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid var(--robbs-header-bg, white);
  border-radius: 999px;
  padding-inline: 4px;
  color: var(--marine);
  background: var(--sun);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.robbs-header-cart.robbs-header-element {
  border-radius: var(--robbs-element-radius, 999px);
  color: var(--robbs-element-color, white) !important;
  background: var(--robbs-element-background, var(--robbs-woo-accent, var(--water))) !important;
}

.robbs-header-cart.robbs-header-element:hover,
.robbs-header-cart.robbs-header-element:focus-visible {
  border-color: var(--robbs-woo-accent, var(--water));
  color: var(--robbs-woo-accent, var(--water)) !important;
  background: white !important;
}

.site-header .robbs-header-cart.robbs-header-element svg {
  color: currentColor;
}

.brand-copy {
  line-height: 1.05;
}

.brand-copy strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.brand-copy small {
  color: var(--water);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-menu,
.mobile-primary-menu,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-menu a,
.site-header .desktop-nav a,
.robbs-template-header .robbs-builder-desktop-menu a {
  display: block;
  border: var(--robbs-menu-border-width, 0px) solid var(--robbs-menu-border-color, var(--border));
  border-radius: var(--robbs-menu-radius, 999px);
  padding: var(--robbs-menu-padding-y, 10px) var(--robbs-menu-padding-x, 15px);
  color: var(--robbs-header-text, #64748b);
  background: var(--robbs-menu-bg, transparent);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 180ms ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current-menu-parent > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu a[aria-current="page"],
.site-header .desktop-nav a:hover,
.site-header .desktop-nav .current-menu-item > a,
.site-header .desktop-nav .current_page_item > a,
.site-header .desktop-nav .current-menu-parent > a,
.site-header .desktop-nav .current-menu-ancestor > a,
.site-header .desktop-nav a[aria-current="page"],
.robbs-template-header .robbs-builder-desktop-menu a:hover,
.robbs-template-header .robbs-builder-desktop-menu .current-menu-item > a,
.robbs-template-header .robbs-builder-desktop-menu .current_page_item > a,
.robbs-template-header .robbs-builder-desktop-menu .current-menu-parent > a,
.robbs-template-header .robbs-builder-desktop-menu .current-menu-ancestor > a,
.robbs-template-header .robbs-builder-desktop-menu a[aria-current="page"] {
  color: var(--robbs-menu-hover-text, var(--marine));
  background: var(--robbs-menu-hover-bg, rgba(144, 224, 239, 0.36));
}

.primary-menu > li,
.site-header .desktop-nav li,
.robbs-template-header .robbs-builder-desktop-menu li {
  position: relative;
}

.primary-menu .sub-menu,
.site-header .desktop-nav .sub-menu,
.robbs-template-header .robbs-builder-desktop-menu .sub-menu {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 238px;
  gap: 5px;
  margin: 0;
  padding: 10px;
  border: 1px solid color-mix(in srgb, var(--water) 18%, var(--border));
  border-radius: 18px;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 20px 48px rgba(15, 42, 74, .16);
  list-style: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-menu .sub-menu::before,
.site-header .desktop-nav .sub-menu::before,
.robbs-template-header .robbs-builder-desktop-menu .sub-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
  content: "";
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu,
.site-header .desktop-nav li:hover > .sub-menu,
.site-header .desktop-nav li:focus-within > .sub-menu,
.robbs-template-header .robbs-builder-desktop-menu li:hover > .sub-menu,
.robbs-template-header .robbs-builder-desktop-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-menu .sub-menu a,
.site-header .desktop-nav .sub-menu a,
.robbs-template-header .robbs-builder-desktop-menu .sub-menu a {
  width: 100%;
  border-radius: min(var(--robbs-menu-radius, 12px), 12px);
  padding: 10px 13px;
  color: var(--marine);
  white-space: nowrap;
}

.primary-menu > .menu-item-has-children > a::after,
.site-header .desktop-nav > ul > .menu-item-has-children > a::after,
.robbs-template-header .robbs-builder-desktop-menu > ul > .menu-item-has-children > a::after {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 0 3px 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.robbs-header-transparent-home.home .site-header:not(.is-scrolled) .primary-menu .sub-menu a,
.robbs-header-transparent-home.home .robbs-template-header:not(.is-scrolled) .primary-menu .sub-menu a {
  color: var(--marine);
}

.nav-link {
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  color: #64748b;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  transition: 180ms ease;
}

.nav-link:hover {
  color: var(--water);
  background: #f1f5f9;
}

.nav-link.active {
  color: var(--marine);
  background: rgba(144, 224, 239, 0.36);
}

.primary-button,
.secondary-button,
.cta-light,
.cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  border: 1px solid var(--water);
  color: white;
  background: var(--water);
  box-shadow: 0 9px 24px rgba(0, 119, 182, 0.2);
}

.primary-button:hover {
  border-color: var(--water-dark);
  background: var(--water-dark);
  box-shadow: 0 12px 28px rgba(0, 95, 146, 0.26);
  transform: translateY(-1px);
}

.secondary-button {
  border: 2px solid var(--border);
  color: var(--marine);
  background: white;
}

.secondary-button:hover {
  border-color: var(--water);
  transform: translateY(-1px);
}

.large {
  min-height: 56px;
  padding: 14px 28px;
}

.nav-cta {
  margin-left: 8px;
  padding-inline: 20px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  color: var(--marine);
  background: #f1f5f9;
}

.mobile-menu {
  display: grid;
  gap: 3px;
  max-height: calc(100dvh - var(--robbs-mobile-menu-top, 84px) - env(safe-area-inset-bottom, 0px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  padding: 10px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background: white;
}

.mobile-primary-menu {
  display: grid;
  gap: 3px;
}

.mobile-primary-menu a,
.mobile-menu li > a {
  display: block;
  border: var(--robbs-menu-border-width, 0px) solid var(--robbs-menu-border-color, var(--border));
  border-radius: min(var(--robbs-menu-radius, 12px), 12px);
  padding: 12px 14px;
  color: var(--slate);
  background: var(--robbs-menu-bg, transparent);
  text-decoration: none;
  font-weight: 600;
}

.mobile-primary-menu a:hover,
.mobile-primary-menu .current-menu-item > a,
.mobile-primary-menu .current_page_item > a,
.mobile-primary-menu .current-menu-parent > a,
.mobile-primary-menu .current-menu-ancestor > a,
.mobile-primary-menu a[aria-current="page"],
.mobile-menu li > a:hover,
.mobile-menu .current-menu-item > a,
.mobile-menu .current_page_item > a,
.mobile-menu .current-menu-parent > a,
.mobile-menu .current-menu-ancestor > a,
.mobile-menu li > a[aria-current="page"] {
  color: var(--robbs-menu-hover-text, var(--marine));
  background: var(--robbs-menu-hover-bg, rgba(144, 224, 239, 0.25));
}

.mobile-primary-menu .sub-menu,
.mobile-menu .sub-menu {
  display: grid;
  gap: 3px;
  margin: 3px 0 5px;
  padding: 0 0 0 18px;
  list-style: none;
}

.mobile-primary-menu .sub-menu a,
.mobile-menu .sub-menu a {
  padding: 10px 13px;
  font-size: 14px;
}

.mobile-menu > button:not(.primary-button) {
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--slate);
  background: transparent;
  text-align: left;
  font-weight: 600;
}

.mobile-menu > button:not(.primary-button):hover {
  color: var(--marine);
  background: rgba(144, 224, 239, 0.25);
}

.hero-section {
  position: relative;
  scroll-margin-top: 80px;
  overflow: hidden;
  padding: 64px 0 26px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.82), transparent 27%),
    linear-gradient(180deg, rgba(144, 224, 239, 0.48) 0%, #ffffff 64%, var(--silver) 100%);
}

.hero-grid,
.content-wrap,
.category-grid,
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.robbs-footer-element {
  min-width: 0;
  border-radius: var(--robbs-element-radius, 0);
  color: var(--robbs-element-color, inherit);
  background: var(--robbs-element-background, transparent);
  font-family: var(--robbs-element-font-family, inherit);
  font-size: var(--robbs-element-font-size, inherit);
  font-weight: var(--robbs-element-font-weight, inherit);
}

.robbs-footer-element-spacer {
  min-height: 1px;
  min-width: var(--robbs-element-spacer-width, 0);
}

.footer-grid .robbs-footer-element h3,
.robbs-footer-element .footer-brandline strong {
  color: var(--robbs-element-title-color);
  font-family: var(--robbs-element-title-font-family);
  font-size: var(--robbs-element-title-size);
  font-weight: var(--robbs-element-title-weight);
}

.footer-grid .robbs-footer-element > a,
.footer-grid .robbs-footer-element p,
.footer-grid .robbs-footer-element span,
.footer-grid .robbs-footer-element .footer-menu a {
  color: var(--robbs-element-color);
  font-family: var(--robbs-element-font-family);
  font-size: var(--robbs-element-font-size);
  font-weight: var(--robbs-element-font-weight);
}

.robbs-element-align-left {
  text-align: left;
}

.robbs-element-align-center {
  text-align: center;
}

.robbs-element-align-right {
  text-align: right;
}

.robbs-footer-element.robbs-element-align-center > a,
.robbs-footer-element.robbs-element-align-center .footer-menu a {
  text-align: center;
}

.robbs-footer-element.robbs-element-align-right > a,
.robbs-footer-element.robbs-element-align-right .footer-menu a {
  text-align: right;
}

.robbs-footer-element.robbs-element-align-center .footer-brandline {
  justify-content: center;
}

.robbs-footer-element.robbs-element-align-right .footer-brandline {
  justify-content: flex-end;
}

.robbs-footer-element.robbs-element-align-center .contact-list,
.robbs-footer-element-contact.robbs-element-align-center {
  justify-items: center;
}

.robbs-footer-element-contact.robbs-element-align-right {
  justify-items: end;
}

@media (min-width: 861px) {
  .robbs-element-hide-desktop {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .robbs-vc-row.robbs-vc-reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }

  .robbs-vc-column.robbs-vc-stretch-edge {
    width: auto;
    max-width: none;
  }

  .robbs-atomic-hero .robbs-atomic-mascot {
    margin-top: -45px;
  }

  .robbs-element-hide-mobile {
    display: none !important;
  }
}

.robbs-footer-element-html {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

.robbs-footer-element.robbs-footer-element-html {
  color: var(--robbs-element-color);
  font-family: var(--robbs-element-font-family);
  font-size: var(--robbs-element-font-size);
  font-weight: var(--robbs-element-font-weight);
}

.robbs-footer-element-html a,
.robbs-footer-element-widgets a {
  color: inherit;
}

.robbs-footer-element-widgets .widget {
  margin: 0 0 24px;
}

.robbs-footer-element-widgets ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-copy {
  padding: 12px 0 40px;
  animation: enter-up 700ms ease both;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--water);
  background: white;
  box-shadow: 0 8px 25px rgba(15, 42, 74, 0.08);
}

.eyebrow-pill:not(h2):not(h3) {
  font-size: 14px;
  font-weight: 700;
}

.robbs-hero-eyebrow-wrap {
  margin-bottom: clamp(20px, 2vw, 28px);
}

.hero-copy .robbs-hero-headline {
  color: var(--marine);
}

/* A semantic H1-H6 inherits the central typography options. The Hero scale is
   only a visual fallback when the non-semantic DIV option is selected. */
.hero-copy div.robbs-hero-headline {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(45px, 5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.hero-copy h1 span,
.hero-copy .robbs-hero-headline span,
.hero-copy .robbs-hero-headline strong,
.hero-copy .robbs-hero-headline em {
  color: var(--water);
}

.hero-copy > p,
.hero-copy > .robbs-hero-intro {
  max-width: 520px;
  margin: 25px 0 0;
  color: #5f6f82;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 26px;
  margin-top: 36px;
  color: #64748b;
  font-size: 14px;
}

.hero-stats > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-stats small {
  font-size: inherit;
}

.hero-stats b {
  color: var(--marine);
}

.hero-stats .rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-stats .rating svg {
  color: var(--sun);
  stroke-width: 0;
}

.hero-visual {
  position: relative;
  animation: enter-scale 800ms 80ms ease both;
}

.hero-layout-cover {
  min-height: min(780px, calc(100vh - 80px));
  display: grid;
  align-items: center;
  padding: 90px 0 120px;
}

.hero-cover-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-cover-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero-cover-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 31, 55, var(--hero-overlay-start, 0.9)) 0%, rgba(8, 31, 55, var(--hero-overlay-middle, 0.67)) 46%, rgba(8, 31, 55, var(--hero-overlay-end, 0.16)) 100%);
}

.hero-cover-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-layout-cover .hero-copy {
  max-width: 720px;
  padding: 0;
}

.hero-layout-cover .eyebrow-pill {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-layout-cover .hero-copy .robbs-hero-headline {
  color: white;
  text-wrap: balance;
}

.hero-layout-cover .hero-copy div.robbs-hero-headline {
  font-size: clamp(48px, 6vw, 78px);
}

.hero-layout-cover .hero-copy h1 span,
.hero-layout-cover .hero-copy .robbs-hero-headline span,
.hero-layout-cover .hero-copy .robbs-hero-headline strong,
.hero-layout-cover .hero-copy .robbs-hero-headline em {
  color: var(--cyan);
}

.hero-layout-cover .hero-copy > p,
.hero-layout-cover .hero-copy > .robbs-hero-intro,
.hero-layout-cover .hero-stats {
  color: #dbeafe;
}

.hero-layout-cover .hero-stats b {
  color: white;
}

.hero-layout-cover .secondary-button {
  border-color: rgba(255, 255, 255, 0.58);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-layout-postcard {
  padding: 72px 0 74px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(180deg, rgba(144, 224, 239, 0.55), #f8fafc);
}

.hero-postcard-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-layout-postcard .hero-copy {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.hero-layout-postcard .hero-copy > p,
.hero-layout-postcard .hero-copy > .robbs-hero-intro {
  margin-right: auto;
  margin-left: auto;
}

.hero-layout-postcard .hero-actions,
.hero-layout-postcard .hero-stats {
  justify-content: center;
}

.hero-postcard-media {
  position: relative;
  height: 470px;
  overflow: visible;
  margin-top: 54px;
  border: 8px solid white;
  border-radius: 44px;
  box-shadow: 0 30px 70px rgba(15, 42, 74, 0.18);
}

.hero-postcard-media > img {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  object-fit: cover;
}

.hero-postcard-media .mascot-card {
  right: 35px;
  bottom: -28px;
  left: auto;
}

.hero-image-frame {
  overflow: hidden;
  border: 8px solid white;
  border-radius: 42px;
  box-shadow: 0 30px 65px rgba(15, 42, 74, 0.2);
}

.hero-image-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.mascot-card {
  position: absolute;
  bottom: -28px;
  left: -25px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  padding: 11px 17px 11px 10px;
  background: white;
  box-shadow: 0 20px 45px rgba(15, 42, 74, 0.2);
  animation: float-y 4s ease-in-out infinite;
}

.mascot-face {
  width: 57px;
  height: 57px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  background: #edfaff;
}

.mascot-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.72) translateY(6%);
}

.mascot-card strong,
.mascot-card small,
.mascot-card .robbs-mascot-title,
.mascot-card .robbs-mascot-text {
  display: block;
}

.mascot-card .robbs-mascot-title {
  color: var(--marine);
}

.mascot-card strong.robbs-mascot-title,
.mascot-card div.robbs-mascot-title {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
}

.mascot-card small,
.mascot-card .robbs-mascot-text {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
}

.bubbles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bubbles span {
  position: absolute;
  bottom: -70px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), rgba(144, 224, 239, 0.16));
  animation: bubble-rise 15s linear infinite;
}

.bubbles span:nth-child(1) { left: 7%; width: 30px; height: 30px; animation-duration: 17s; }
.bubbles span:nth-child(2) { left: 22%; width: 15px; height: 15px; animation-delay: 3s; animation-duration: 12s; }
.bubbles span:nth-child(3) { left: 41%; width: 37px; height: 37px; animation-delay: 1s; animation-duration: 20s; }
.bubbles span:nth-child(4) { left: 59%; width: 18px; height: 18px; animation-delay: 5s; animation-duration: 14s; }
.bubbles span:nth-child(5) { left: 75%; width: 24px; height: 24px; animation-delay: 2s; animation-duration: 18s; }
.bubbles span:nth-child(6) { left: 90%; width: 13px; height: 13px; animation-delay: 4s; animation-duration: 11s; }

.wave-divider {
  width: 100%;
  height: 70px;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.wave-divider svg {
  display: block;
  width: calc(100% + 2px);
  height: 70px;
}

.wave-divider.flip {
  transform: rotate(180deg);
}

.category-section {
  padding: 36px 0 78px;
  background: white;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  display: grid;
  place-items: center;
  gap: 13px;
  min-height: 150px;
  border: 0;
  border-radius: 22px;
  padding: 25px 18px;
  color: var(--water);
  background: var(--silver);
  transition: 200ms ease;
  text-decoration: none;
}

.category-card strong {
  color: var(--marine);
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

.category-card:hover {
  background: rgba(144, 224, 239, 0.32);
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.07);
  transform: translateY(-3px);
}

.category-card:hover svg {
  transform: scale(1.12);
}

.category-card svg {
  transition: transform 200ms ease;
}

.why-section,
.courses-section,
.testimonials-section,
.cta-section {
  scroll-margin-top: 80px;
  padding: 96px 0;
}

section[id],
.vc_row[id],
.vc_row_inner[id],
.robbs-vc-row[id],
.robbs-vc-column[id] {
  scroll-margin-top: calc(var(--robbs-header-height, 80px) + 18px);
}

.why-section {
  background: linear-gradient(180deg, #fff 0%, color-mix(in srgb, var(--cyan) 16%, #fff) 100%);
}

.section-heading {
  max-width: 680px;
}

.section-heading > span {
  display: block;
  margin-bottom: 12px;
  color: var(--water);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h1,
.section-heading h2 {
  color: var(--marine);
}

.section-heading p {
  max-width: 620px;
  margin: 16px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
  margin-top: 46px;
}

.advantage-card {
  min-height: 270px;
  border: 1px solid #eef2f7;
  border-radius: 29px;
  padding: 30px;
  background: white;
  transition: 200ms ease;
}

.advantage-card:hover {
  box-shadow: 0 20px 45px rgba(15, 42, 74, 0.1);
  transform: translateY(-3px);
}

.robbs-contract-highlight {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: clamp(28px, 4vw, 40px);
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, var(--marine) 0%, var(--water) 68%, #00a9d6 100%);
  box-shadow: 0 26px 65px rgba(9, 57, 99, 0.2);
}

.robbs-contract-highlight::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 250px;
  height: 250px;
  border: 40px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.robbs-contract-head,
.robbs-contract-footer,
.robbs-contract-benefits {
  position: relative;
  z-index: 1;
}

.robbs-contract-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
}

.robbs-contract-eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--marine);
  background: #ffd45c;
  box-shadow: 0 12px 26px rgba(7, 39, 70, 0.2);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.robbs-contract-head h2,
.robbs-contract-head h3,
.robbs-contract-head h4,
.robbs-contract-head h5,
.robbs-contract-head h6 {
  max-width: 820px;
  margin: 0;
  color: #fff;
}

.robbs-contract-head p {
  max-width: 780px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.65;
}

.robbs-contract-badge {
  display: inline-flex;
  white-space: nowrap;
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--marine);
  background: #ffd45c;
  box-shadow: 0 12px 26px rgba(7, 39, 70, 0.2);
  font-size: 15px;
  font-weight: 900;
}

.robbs-contract-benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 13px;
  margin-top: clamp(28px, 4vw, 42px);
}

.robbs-contract-benefit {
  display: grid;
  grid-column: span 2;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(9px);
}

.robbs-contract-benefit:nth-child(n + 4) {
  grid-column: span 3;
}

.robbs-contract-benefit > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 13px;
  color: var(--marine);
  background: rgba(255, 255, 255, 0.9);
}

.robbs-contract-benefit strong,
.robbs-contract-benefit small {
  display: block;
}

.robbs-contract-benefit strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.robbs-contract-benefit small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.robbs-contract-footer {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 30px;
}

.robbs-contract-footer > div {
  max-width: 760px;
}

.robbs-contract-footer p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.robbs-contract-notice {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

.robbs-contract-button {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--marine);
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 39, 70, 0.2);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.robbs-contract-button:hover,
.robbs-contract-button:focus-visible {
  color: var(--marine);
  box-shadow: 0 17px 34px rgba(7, 39, 70, 0.27);
  transform: translateY(-2px);
}

.icon-tile {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--water);
  background: rgba(144, 224, 239, 0.38);
}

.advantage-card .robbs-advantage-title {
  margin: 22px 0 8px;
  color: var(--marine);
  font-family: "Nunito", sans-serif;
  font-size: var(--robbs-atomic-font-size, 19px);
  font-weight: 900;
}

.advantage-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.65;
}

.courses-section {
  background: var(--silver);
}

.courses-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 44px;
}

.course-hint {
  max-width: 310px;
  margin: 0 0 4px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.robbs-course-booking-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -18px 0 28px;
  padding: 14px 17px;
  border: 1px solid rgba(0, 119, 182, .18);
  border-radius: 14px;
  background: rgba(232, 247, 253, .9);
  color: var(--marine);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.robbs-course-booking-notice-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--water);
  box-shadow: 0 5px 14px rgba(0, 66, 102, .08);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}

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

.courses-grid.robbs-course-columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.courses-grid.robbs-course-columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.robbs-course-browser {
  position: relative;
}

.course-card[hidden] {
  display: none !important;
}

.robbs-course-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.robbs-course-more-wrap .primary-button svg {
  transform: rotate(90deg);
}

.courses-grid.course-display-carousel {
  grid-auto-flow: column;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 8px 10px 28px;
}

.courses-grid.course-display-carousel::-webkit-scrollbar {
  display: none;
}

.courses-grid.course-display-carousel.robbs-course-columns-2 {
  grid-template-columns: none;
  grid-auto-columns: calc((100% - 27px) / 2);
}

.courses-grid.course-display-carousel.robbs-course-columns-3 {
  grid-template-columns: none;
  grid-auto-columns: calc((100% - 54px) / 3);
}

.courses-grid.course-display-carousel.robbs-course-columns-4 {
  grid-template-columns: none;
  grid-auto-columns: calc((100% - 60px) / 4);
}

.course-display-carousel .course-card {
  height: auto;
  scroll-snap-align: start;
}

.robbs-course-carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--marine);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 42, 74, .16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: 160ms ease;
}

.robbs-course-carousel-button:hover,
.robbs-course-carousel-button:focus-visible {
  color: #fff;
  background: var(--water);
  outline: 0;
}

.robbs-course-carousel-button:disabled {
  opacity: .34;
  cursor: default;
}

.robbs-course-carousel-button.is-prev { left: -24px; }
.robbs-course-carousel-button.is-next { right: -24px; }
.robbs-course-carousel-button.is-prev svg { transform: rotate(180deg); }

.robbs-course-columns-4 .course-content {
  padding: 20px;
}

.robbs-course-columns-4 .course-title {
  font-size: 18px;
}

.robbs-course-columns-4 .course-facts {
  grid-template-columns: 1fr;
}

.course-layout-compact .course-card-button {
  display: grid;
  grid-template-columns: minmax(130px, 38%) 1fr;
}

.course-layout-compact .course-image {
  height: 100%;
  min-height: 240px;
}

.course-layout-compact .course-content {
  padding: 20px;
}

.course-layout-compact .course-description {
  min-height: 0;
}

.course-layout-compact .course-facts {
  grid-template-columns: 1fr;
}

.course-layout-compact .course-footer b {
  font-size: 20px;
}

.course-layout-overlay .course-card {
  min-height: 430px;
  border: 0;
  background: var(--marine);
}

.course-layout-overlay .course-card-button {
  position: relative;
  justify-content: flex-end;
  color: white;
}

.course-layout-overlay .course-image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.course-layout-overlay .course-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 31, 55, 0.08) 25%, rgba(7, 31, 55, 0.94) 88%);
}

.course-layout-overlay .course-category,
.course-layout-overlay .course-status {
  z-index: 2;
}

.course-layout-overlay .course-content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 28px;
}

.course-layout-overlay .course-title,
.course-layout-overlay .course-footer b {
  color: white;
}

.course-layout-overlay .course-age,
.course-layout-overlay .course-footer em,
.course-layout-overlay .course-facts svg {
  color: var(--cyan);
}

.course-layout-overlay .course-description,
.course-layout-overlay .course-facts {
  min-height: 0;
  color: #dbeafe;
}

.course-layout-overlay .course-footer {
  border-color: rgba(255, 255, 255, 0.18);
}

.robbs-empty-courses {
  grid-column: 1 / -1;
  border: 1px dashed var(--border);
  border-radius: 18px;
  padding: 24px;
  color: var(--slate);
  background: var(--silver);
}

.course-card {
	position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #edf1f5;
  border-radius: 28px;
  background: white;
  box-shadow: 0 7px 20px rgba(15, 42, 74, 0.05);
  transition: 240ms ease;
}

.course-card-overlay {
	position: absolute;
	z-index: 1;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.course-card-overlay:focus-visible {
	border-radius: inherit;
	outline: 3px solid var(--water);
	outline-offset: -4px;
}

.course-card:hover {
  box-shadow: 0 22px 50px rgba(15, 42, 74, 0.14);
  transform: translateY(-6px);
}

.course-card-button {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.course-image {
  position: relative;
  display: block;
  width: 100%;
  height: 218px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.course-category,
.course-status {
  position: absolute;
  top: 15px;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.course-category {
  left: 15px;
  color: var(--marine);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.course-status {
  right: 15px;
}

.course-status.available {
  color: white;
  background: #10b981;
}

.course-status.limited {
  color: var(--marine);
  background: var(--sun);
}

.course-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.course-age {
  color: var(--water);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--marine);
  background: color-mix(in srgb, var(--sun) 88%, white);
  box-shadow: 0 8px 18px rgba(15, 42, 74, .09);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
}

body.robbs-theme .courses-grid h3.course-title {
	padding: 0;
	margin: 6px 0 0;
  color: var(--marine);
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: normal;
  text-transform: none;
}

.course-description {
  min-height: 70px;
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.62;
}

.course-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-top: 18px;
  color: #64748b;
  font-size: 11px;
}

.course-facts > span,
.modal-facts > span,
.contact-list > span,
.contact-list > a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
}

.course-facts svg,
.modal-facts svg,
.contact-list svg {
  flex: 0 0 auto;
  color: var(--water);
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #edf1f5;
}

.course-footer b {
  color: var(--marine);
  font-family: "Nunito", sans-serif;
  font-size: 25px;
  font-weight: 900;
}

.course-price,
.modal-price {
  display: inline-flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
}

.robbs-price-tax-note {
  display: block;
  margin-top: 2px;
  color: var(--slate);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
}

.robbs-total-tax-note {
  display: block;
  margin-top: 4px;
  color: var(--robbs-muted, var(--slate));
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}

.robbs-total-with-tax {
  display: flex !important;
  align-items: flex-end !important;
  flex-direction: column !important;
  justify-content: center !important;
  text-align: right;
}

.wp-block-woocommerce-product-price + .robbs-price-tax-note {
  margin-top: 3px;
  margin-bottom: 16px;
}

.course-layout-overlay .robbs-price-tax-note {
  color: #dbeafe;
}

.course-footer em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--water);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.course-direct-link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	color: var(--water);
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
	text-decoration: none;
}

.course-direct-link:hover,
.course-direct-link:focus-visible {
	color: var(--marine);
	text-decoration: underline;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 119, 182, 0.32), transparent 25%),
    var(--marine);
}

.section-heading.light > span,
.testimonial-card small {
  color: var(--cyan);
}

.section-heading.light h2 {
  color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.testimonial-card {
  min-height: 276px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 27px;
  padding: 29px;
  color: white;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(7px);
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--sun);
}

.stars svg {
  stroke-width: 0;
}

.testimonial-card blockquote {
  min-height: 104px;
  margin: 20px 0 20px;
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card strong,
.testimonial-card small {
  display: block;
}

.testimonial-card strong {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.testimonial-card small {
  margin-top: 3px;
}

.cta-section {
  padding: 96px 0 125px;
  background: white;
}

.cta-box {
  position: relative;
  width: min(var(--robbs-content-width, 1180px), calc(100% - var(--robbs-gutter, 40px)));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 42px;
  padding: 48px clamp(24px, 2.6vw, 30px) 62px;
  color: white;
  background:
    radial-gradient(circle at 15% 15%, rgba(144, 224, 239, 0.17), transparent 28%),
    linear-gradient(135deg, var(--water), var(--marine));
  text-align: center;
  box-shadow: 0 30px 70px rgba(15, 42, 74, 0.16);
}

.cta-box h2 {
  position: relative;
  margin: 20px 0 0;
  font-family: "Nunito", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  text-shadow: 0 3px 18px rgba(4, 24, 45, .26);
}

body.robbs-theme .cta-box > h2:first-child {
  margin-top: 0;
}

/* Hide the former logo in already saved modular CTA rows without rewriting content. */
body.robbs-theme .robbs-atomic-cta .robbs-builder-brand {
  display: none;
}

.cta-box p {
  position: relative;
  max-width: 560px;
  margin: 14px auto 0;
  color: #c6f4fb;
  line-height: 1.6;
}

.cta-box > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.cta-light {
  border: 1px solid white;
  color: var(--marine);
  background: white;
}

.cta-light:hover {
  border-color: var(--cyan);
  background: var(--cyan);
  transform: translateY(-1px);
}

.cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.cta-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.cta-logo {
  position: relative;
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 12px 28px rgba(3, 23, 43, .28));
}

.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer {
  position: relative;
  margin-top: 0;
  color: white;
  background: var(--marine);
  scroll-margin-top: 80px;
}

.site-footer > .wave-divider {
  position: absolute;
  top: -69px;
  left: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 1.25fr;
  gap: 48px;
  padding: 60px 0 46px;
}

.footer-brandline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brandline strong {
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.footer-lockup-copy small {
  display: block;
  max-width: 185px;
  margin-top: 4px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 300px;
  margin: 17px 0 0;
  color: #b8eaf2;
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid h3 {
  margin: 3px 0 17px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.footer-grid > div > button,
.footer-grid > div > a,
.footer-menu a {
  display: block;
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  color: #cbd5e1;
  background: transparent;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
}

.footer-grid > div > button:hover,
.footer-grid > div > a:hover,
.footer-menu a:hover {
  color: var(--cyan);
}

.contact-list {
  display: grid;
  align-content: start;
  gap: 13px;
  color: #cbd5e1;
  font-size: 14px;
}

/* Footer builder contact: honor "Global geerbt" and keep icons aligned with text.
   The generic .contact-list styling above remains unchanged for standalone contact blocks. */
.footer-grid .robbs-footer-element-contact.contact-list {
  font-size: var(--robbs-element-font-size, inherit);
}

.footer-grid .robbs-footer-element-contact.contact-list > span,
.footer-grid .robbs-footer-element-contact.contact-list > a {
  gap: 0;
  line-height: inherit;
}

.footer-grid .robbs-footer-element-contact.contact-list > span > svg,
.footer-grid .robbs-footer-element-contact.contact-list > a > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 10px;
  margin-inline-end: 10px;
}

.footer-grid .robbs-footer-element-contact .robbs-footer-contact-label {
  display: inline-block;
  min-width: 0;
}

.contact-list h3 {
  margin-bottom: 4px;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--cyan);
}

.contact-list svg {
  color: var(--cyan);
}

.footer-grid .robbs-footer-element svg,
.site-header .robbs-header-element svg {
  color: var(--robbs-element-color);
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #94a3b8;
  font-size: 12px;
  text-align: center;
}

.footer-bottom a {
  color: inherit;
}

.robbs-back-to-top {
  position: fixed;
  z-index: 42;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: white;
  background: var(--water);
  box-shadow: 0 15px 35px rgba(0, 119, 182, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

/* Lock the configured sticky header on every viewport. The slot preserves the
   document height while the information bar scrolls out of view. */
body.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-topbar {
  position: absolute;
  width: 100%;
  visibility: hidden;
  pointer-events: none;
}

body.robbs-header-sticky.robbs-mobile-header-locked:not(.robbs-header-transparent-home) .robbs-header-sticky-slot {
  min-height: var(--robbs-sticky-slot-height, 72px);
}

body.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .site-header,
body.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .robbs-template-header {
  position: fixed !important;
  z-index: 50;
  top: 0 !important;
  right: 0;
  left: 0;
  width: 100%;
}

body.admin-bar.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .site-header,
body.admin-bar.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .robbs-template-header {
  top: var(--wp-admin--admin-bar--height, 32px) !important;
}

.robbs-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.robbs-back-to-top:hover,
.robbs-back-to-top:focus-visible {
  color: white;
  background: var(--water-dark);
}

.robbs-back-to-top:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--cyan) 70%, white);
  outline-offset: 3px;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 25, 43, 0.72);
  backdrop-filter: blur(7px);
  animation: fade-in 180ms ease both;
}

.course-modal {
  position: relative;
  width: min(780px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border-radius: 32px;
  background: white;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
  animation: enter-scale 220ms ease both;
}

.course-modal > img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--marine);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 7px 22px rgba(15, 42, 74, 0.18);
}

.modal-content {
  padding: 30px 34px 34px;
}

.modal-content > small:first-child {
  color: var(--water);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-content h2 {
  margin: 7px 0 10px;
  color: var(--marine);
  font-family: "Nunito", sans-serif;
  font-size: 30px;
  font-weight: 900;
}

.modal-content > p {
  color: #64748b;
  line-height: 1.7;
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
  border-radius: 18px;
  padding: 16px;
  color: #526176;
  background: var(--silver);
  font-size: 13px;
}

.modal-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 25px;
}

.modal-action strong {
  color: var(--marine);
  font-family: "Nunito", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.request-success {
  border-radius: 999px;
  padding: 11px 17px;
  color: #08734f;
  background: #d1fae5;
  font-size: 14px;
  font-weight: 800;
}

.demo-note {
  display: block;
  margin-top: 13px;
  color: #94a3b8;
}

.standard-content {
  padding: 88px 0 120px;
}

.robbs-content-wide .standard-content {
  width: min(1500px, calc(100% - var(--robbs-gutter, 40px)));
}

.robbs-content-full .standard-content {
  width: 100%;
  max-width: none;
}

.robbs-hide-page-title .entry-header,
.robbs-hide-page-title .product_title {
  display: none;
}

.entry-header h1,
.standard-content h1,
.standard-content h2,
.standard-content h3 {
  color: var(--marine);
  font-family: "Nunito", "Avenir Next", "Arial Rounded MT Bold", sans-serif;
}

.entry-header h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.entry-content {
  line-height: 1.75;
}

.post-list {
  display: grid;
  gap: 20px;
}

.post-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  background: white;
}

.post-card h2 {
  margin-top: 0;
}

.post-card a {
  text-decoration: none;
}

.robbs-template-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--border);
  background: var(--robbs-header-bg, white);
  box-shadow: 0 8px 30px rgba(15, 42, 74, 0.06);
}

.robbs-header-transparent-home.home .robbs-template-header:not(.is-scrolled) {
  position: absolute;
  width: 100%;
  border-color: transparent;
  color: var(--robbs-header-transparent-text, var(--marine));
  background: transparent;
  box-shadow: none;
}

.robbs-header-transparent-home.home .robbs-template-header:not(.is-scrolled) .primary-menu a {
  color: var(--robbs-header-transparent-text, var(--marine));
}

.robbs-header-transparent-home.home.robbs-header-sticky .robbs-template-header.is-scrolled {
  position: fixed;
  top: 0;
  width: 100%;
}

.admin-bar.robbs-header-transparent-home.home.robbs-header-sticky .robbs-template-header.is-scrolled {
  top: var(--wp-admin--admin-bar--height, 32px);
}

.robbs-header-static .robbs-template-header {
  position: relative;
}

.robbs-template-header-row,
.robbs-template-footer-row {
  width: min(var(--robbs-content-width, 1180px), calc(100% - var(--robbs-gutter, 40px)));
  margin-inline: auto !important;
}

.robbs-template-header-row {
  min-height: var(--robbs-header-height, 80px);
}

.robbs-template-footer {
  color: var(--robbs-footer-text, #cbd5e1);
  background: var(--robbs-footer-bg, #071f37);
}

.robbs-template-footer-row {
  padding-top: 70px;
  padding-bottom: 70px;
}

.robbs-template-footer .brand-copy strong,
.robbs-template-footer h3 {
  color: white;
}

.robbs-builder-brand.align-center,
.robbs-builder-button.align-center {
  justify-content: center;
}

.robbs-builder-brand.align-right,
.robbs-builder-button.align-right {
  justify-content: flex-end;
}

.robbs-builder-navigation.align-center .primary-menu,
.robbs-builder-navigation.align-center .footer-menu {
  justify-content: center;
}

.robbs-builder-navigation.align-right .primary-menu,
.robbs-builder-navigation.align-right .footer-menu {
  justify-content: flex-end;
}

.robbs-builder-navigation {
  position: relative;
}

.robbs-builder-navigation .mobile-toggle {
  margin-left: auto;
}

.robbs-builder-navigation .mobile-menu {
  position: absolute;
  z-index: 60;
  top: calc(100% + 12px);
  right: 0;
  width: min(360px, calc(100vw - 30px));
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(15, 42, 74, 0.18);
}

.robbs-builder-button {
  display: flex;
}

.robbs-builder-contact.align-center {
  align-items: center;
  text-align: center;
}

.robbs-builder-contact.align-right {
  align-items: flex-end;
  text-align: right;
}

.robbs-header-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 34px;
  padding: 5px 20px;
  color: white;
  background: var(--marine);
  font-size: 12px;
  font-weight: 700;
}

.robbs-header-topbar a {
  text-decoration: none;
}

.robbs-header-topbar-message,
.robbs-header-topbar-phone {
  min-width: 0;
}

.robbs-header-topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.robbs-woocommerce-content {
  padding-top: 72px;
  padding-bottom: 96px;
}

/* Reliable outer layout contract for core, WPBakery and third-party output. */
.robbs-page-shell {
  width: 100%;
  min-width: 0;
}

.robbs-content-boundary,
.robbs-woocommerce-content,
.woocommerce .robbs-woocommerce-content {
  width: min(calc(100% - var(--robbs-gutter, 40px)), var(--robbs-content-width, 1180px));
  max-width: var(--robbs-content-width, 1180px);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

.robbs-content-wide .robbs-content-boundary {
  width: min(calc(100% - var(--robbs-gutter, 40px)), 1500px);
  max-width: 1500px;
}

.robbs-content-full .robbs-content-boundary {
  width: 100%;
  max-width: none;
}

.robbs-front-content > .wave-divider,
.robbs-content-boundary > .wave-divider,
.robbs-content-boundary > .wpb-content-wrapper > .wave-divider {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.robbs-content-boundary > .wpb-content-wrapper {
  width: 100%;
  max-width: 100%;
}

.robbs-content-boundary > *,
.robbs-woocommerce-content > *,
.woocommerce-tabs,
.woocommerce-Reviews,
#reviews,
#review_form_wrapper {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.robbs-content-boundary .robbs-fullbleed,
.robbs-front-content > .wave-divider,
.robbs-content-boundary > .wave-divider,
.robbs-content-boundary > .wpb-content-wrapper > .wave-divider {
  max-width: none;
}

/* Standard WPBakery rows are contained. Only an explicit stretch choice escapes. */
.robbs-content-boundary > .vc_row:not([data-vc-full-width="true"]),
.robbs-content-boundary > .wpb-content-wrapper > .vc_row:not([data-vc-full-width="true"]) {
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  left: auto !important;
}

.robbs-content-boundary .robbs-row-width-default {
  width: 100% !important;
  max-width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  left: auto !important;
}

.robbs-content-boundary .robbs-row-width-wide {
  width: min(calc(100vw - var(--robbs-gutter, 40px)), 1440px) !important;
  max-width: 1440px !important;
  margin-left: 50% !important;
  transform: translateX(-50%);
  left: auto !important;
}

.robbs-content-boundary .robbs-row-width-full {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: 50% !important;
  transform: translateX(-50%);
  left: auto !important;
}

.robbs-assigned-shop-template {
  width: 100%;
  margin-bottom: 40px;
}

.robbs-woo-shell {
  color: var(--robbs-woo-text, var(--robbs-text));
  background: var(--robbs-woo-page-bg, var(--silver));
}

.robbs-woo-builder-template .vc_row,
.robbs-woo-builder-template .wpb-content-wrapper {
  max-width: 100%;
}

.robbs-woo-part {
  min-width: 0;
  max-width: 100%;
}

.robbs-woo-part + .robbs-woo-part {
  margin-top: 18px;
}

.robbs-woo-part-gallery .woocommerce-product-gallery,
.robbs-woo-builder-template .robbs-woo-part-gallery div.images {
  width: 100% !important;
  float: none !important;
}

.robbs-woo-part-preview {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 10px;
  border: 1px dashed var(--robbs-woo-border, var(--border));
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--marine);
  background: color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 6%, white);
}

.robbs-woo-part-preview small {
  margin-left: auto;
  color: var(--slate);
}

.robbs-woo-template-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .robbs-content-boundary,
  .robbs-woocommerce-content,
  .woocommerce .robbs-woocommerce-content {
    width: min(calc(100% - 32px), var(--robbs-content-width, 1180px));
  }

  .robbs-content-full .robbs-content-boundary {
    width: 100%;
  }
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(var(--robbs-shop-columns, 3), minmax(0, 1fr));
  gap: 26px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid var(--robbs-woo-border, var(--border));
  border-radius: var(--robbs-woo-card-radius, var(--robbs-card-radius, 26px));
  padding: 0 0 24px !important;
  background: var(--robbs-woo-surface, var(--robbs-surface, white));
  box-shadow: 0 8px 26px rgba(15, 42, 74, 0.06);
  transition: 200ms ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 20px 48px rgba(15, 42, 74, 0.13);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
  aspect-ratio: var(--robbs-woo-image-ratio, 4/3);
  margin: 0 0 20px;
  object-fit: cover;
}

.woocommerce div.product div.images {
  width: var(--robbs-woo-gallery-width, 48%);
}

.woocommerce div.product div.images .woocommerce-product-gallery__image,
.robbs-woo-part-gallery .woocommerce-product-gallery__image,
.woocommerce div.product div.images .flex-viewport,
.robbs-woo-part-gallery .flex-viewport {
  overflow: hidden;
  border-radius: var(--robbs-woo-card-radius, var(--robbs-card-radius, 26px));
}

.woocommerce div.product div.images .woocommerce-product-gallery__image img,
.robbs-woo-part-gallery .woocommerce-product-gallery__image img {
  border-radius: inherit;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  overflow: hidden;
  border-radius: max(8px, calc(var(--robbs-woo-card-radius, 26px) * 0.45));
}

.woocommerce div.product div.summary {
  width: calc(96% - var(--robbs-woo-gallery-width, 48%));
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  min-height: var(--robbs-field-height, 50px);
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--border));
  border-radius: var(--robbs-field-radius, 14px);
  color: var(--robbs-field-text, var(--robbs-text));
  background-color: var(--robbs-field-bg, white);
}

.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection {
  min-height: var(--robbs-dropdown-height, 50px);
  border: var(--robbs-dropdown-border-width, 1px) var(--robbs-dropdown-border-style, solid) var(--robbs-dropdown-border, var(--border));
  border-radius: var(--robbs-dropdown-radius, 14px);
  color: var(--robbs-dropdown-text, var(--robbs-text));
  background-color: var(--robbs-dropdown-bg, white);
}

/* Global frontend field language, including third-party form plugins. */
body.robbs-theme input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="image"]):not([type="hidden"]):not([type="color"]),
body.robbs-theme textarea {
  min-height: var(--robbs-field-height, 50px);
  box-sizing: border-box;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--border));
  border-radius: var(--robbs-field-radius, 14px);
  padding: 10px var(--robbs-field-padding-x, 16px);
  color: var(--robbs-field-text, var(--robbs-text));
  background-color: var(--robbs-field-bg, white);
  box-shadow: none;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body.robbs-theme select {
  min-height: var(--robbs-dropdown-height, 50px);
  box-sizing: border-box;
  border: var(--robbs-dropdown-border-width, 1px) var(--robbs-dropdown-border-style, solid) var(--robbs-dropdown-border, var(--border));
  border-radius: var(--robbs-dropdown-radius, 14px);
  padding: 10px var(--robbs-dropdown-padding-x, 16px);
  color: var(--robbs-dropdown-text, var(--robbs-text));
  background-color: var(--robbs-dropdown-bg, white);
  box-shadow: none;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

body.robbs-theme textarea {
  min-height: 120px;
  resize: vertical;
}

body.robbs-theme select:not([multiple]) {
  appearance: none;
  padding-right: calc(var(--robbs-dropdown-padding-x, 16px) + 30px);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--robbs-dropdown-arrow, var(--water)) 50%),
    linear-gradient(135deg, var(--robbs-dropdown-arrow, var(--water)) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

body.robbs-theme input::placeholder,
body.robbs-theme textarea::placeholder {
  color: var(--robbs-field-placeholder, #94a3b8);
  opacity: 1;
}

body.robbs-theme label,
.woocommerce form .form-row label {
  color: var(--robbs-field-label, var(--marine));
}

body.robbs-theme input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="image"]):not([type="hidden"]):not([type="color"]):focus,
body.robbs-theme textarea:focus {
  border-color: var(--robbs-field-focus-border, var(--water));
  outline: 0;
  box-shadow: 0 0 0 var(--robbs-field-focus-ring-width, 3px) color-mix(in srgb, var(--robbs-field-focus-ring, var(--cyan)) 45%, transparent);
}

body.robbs-theme select:focus,
.woocommerce .select2-container--focus .select2-selection,
.woocommerce .select2-container--open .select2-selection {
  border-color: var(--robbs-dropdown-focus-border, var(--water));
  outline: 0;
  box-shadow: 0 0 0 var(--robbs-dropdown-focus-ring-width, 3px) color-mix(in srgb, var(--robbs-dropdown-focus-ring, var(--cyan)) 45%, transparent);
}

body.robbs-theme input:disabled,
body.robbs-theme textarea:disabled {
  cursor: not-allowed;
  background-color: var(--robbs-field-disabled-bg, #f1f5f9);
  opacity: 0.72;
}

body.robbs-theme select:disabled {
  cursor: not-allowed;
  background-color: color-mix(in srgb, var(--robbs-dropdown-bg, white) 72%, #e2e8f0);
  opacity: 0.72;
}

.woocommerce .select2-container .select2-selection--single {
  display: flex;
  align-items: center;
  padding-inline: var(--robbs-dropdown-padding-x, 16px) 42px;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  color: var(--robbs-dropdown-text, var(--robbs-text));
  line-height: 1.4;
}

.woocommerce .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.woocommerce .select2-container .select2-selection--single .select2-selection__arrow b {
  border-top-color: var(--robbs-dropdown-arrow, var(--water));
}

body.robbs-theme .select2-dropdown {
  overflow: hidden;
  border: var(--robbs-dropdown-border-width, 1px) var(--robbs-dropdown-border-style, solid) var(--robbs-dropdown-border, var(--border));
  border-radius: var(--robbs-dropdown-radius, 14px);
  color: var(--robbs-dropdown-text, var(--robbs-text));
  background: var(--robbs-dropdown-menu-bg, white);
  box-shadow: 0 12px 30px rgba(15, 42, 74, 0.12);
}

body.robbs-theme .select2-container--default .select2-results__option--highlighted[aria-selected],
body.robbs-theme .select2-container--default .select2-results__option--highlighted[data-selected] {
  color: var(--robbs-dropdown-text, var(--robbs-text));
  background: var(--robbs-dropdown-option-hover-bg, #d9f5fa);
}

.woocommerce .woocommerce-ordering select,
.woocommerce div.product form.cart .variations select {
  min-width: 230px;
  color: var(--robbs-dropdown-text, var(--robbs-woo-text));
  background-color: var(--robbs-dropdown-bg, var(--robbs-woo-surface));
  font-weight: 700;
}

.woocommerce .quantity {
  display: inline-flex;
  min-height: var(--robbs-field-height, 50px);
  align-items: center;
  overflow: hidden;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--robbs-woo-border));
  border-radius: var(--robbs-field-radius, 14px);
  background: var(--robbs-field-bg, var(--robbs-woo-surface));
}

body.robbs-theme .woocommerce .quantity .qty {
  width: 76px;
  min-height: calc(var(--robbs-field-height, 50px) - (2 * var(--robbs-field-border-width, 1px)));
  border: 0;
  border-radius: calc(var(--robbs-field-radius, 14px) - var(--robbs-field-border-width, 1px));
  padding: 8px 10px;
  text-align: center;
  color: var(--robbs-field-text, var(--robbs-woo-text));
  background: transparent;
  box-shadow: none;
  font-weight: 800;
}

body.robbs-theme .woocommerce .quantity .qty:focus {
  border: 0;
  box-shadow: inset 0 0 0 2px var(--robbs-field-focus-border, var(--robbs-woo-accent));
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: var(--robbs-button-radius, 999px);
  color: white;
  background: var(--robbs-woo-accent, var(--water));
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
  margin-right: 22px;
  margin-left: 22px;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  border: 1px solid var(--robbs-button-primary);
  border-radius: var(--robbs-button-radius);
  color: var(--robbs-button-primary-text);
  background: var(--robbs-button-primary);
  font-weight: 700;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.wp-block-woocommerce-empty-cart-block .wp-block-button__link:hover,
.wp-block-woocommerce-empty-cart-block .wp-block-button__link:focus-visible,
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-add-to-cart a:hover,
.wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link:hover {
  border-color: var(--robbs-button-primary);
  color: var(--robbs-button-primary);
  background: #fff;
  transform: translateY(-1px);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--robbs-woo-text, var(--marine));
  font-family: var(--robbs-heading-font, inherit);
  font-size: 19px;
  font-weight: 900;
}

.woocommerce ul.products li.product .price {
  color: var(--robbs-woo-accent, var(--water));
  font-size: 18px;
  font-weight: 800;
}

.woocommerce ul.products li.product .robbs-price-tax-note {
  margin: -10px 22px 16px;
}

.woocommerce div.product .summary > .robbs-price-tax-note,
.robbs-woo-part-price .robbs-price-tax-note {
  margin-top: -10px;
  margin-bottom: 18px;
}

/* Single-product price: live location price and H3-level presentation.
   Exact font size/weight/line height follow the global H3 typography settings. */
body.robbs-theme.single-product .robbs-product-live-price-wrap {
  display: block;
}
body.robbs-theme.single-product .robbs-product-live-price-wrap .price,
body.single-product .robbs-product-live-price-wrap .price,
body.robbs-theme.single-product .robbs-product-live-price,
body.robbs-theme.single-product .robbs-woo-part-price .price,
body.robbs-theme.single-product .woocommerce div.product .summary > .price {
  color: var(--robbs-woo-accent, var(--water));
}
body.robbs-theme.single-product .robbs-product-live-price-wrap .price .woocommerce-Price-amount,
body.single-product .robbs-product-live-price-wrap .price .woocommerce-Price-amount,
body.robbs-theme.single-product .robbs-product-live-price .woocommerce-Price-amount,
body.robbs-theme.single-product .robbs-woo-part-price .price .woocommerce-Price-amount,
body.robbs-theme.single-product .woocommerce div.product .summary > .price .woocommerce-Price-amount {
  color: inherit;
  font: inherit;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: var(--robbs-button-radius, 999px);
  color: var(--robbs-button-primary-text, white);
  background: var(--robbs-woo-accent, var(--robbs-button-primary, var(--water)));
  font-weight: 700;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: var(--robbs-button-primary-text, white);
  background: var(--robbs-button-primary-hover, var(--water-dark));
}

/* Added-to-cart feedback: clear status, calm surface, strong action. */
.woocommerce-notices-wrapper:empty {
  display: none;
}

.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-message {
  display: flex;
  min-height: 72px;
  align-items: center;
  clear: both;
  gap: 18px;
  margin: 0 0 28px;
  border: 2px solid #1f2933;
  border-top-color: #84ad19;
  border-radius: 4px;
  padding: 14px 30px 14px 22px;
  color: var(--robbs-woo-text, var(--robbs-text));
  background: color-mix(in srgb, var(--robbs-woo-page-bg, #f8fafc) 72%, white);
  box-shadow: none;
  font-size: 15px;
  line-height: 1.5;
}

.woocommerce .woocommerce-message::before,
.woocommerce-page .woocommerce-message::before {
  position: static;
  top: auto;
  left: auto;
  display: inline-grid;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  order: -1;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: white;
  background: #8db72b;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.woocommerce .woocommerce-message::after,
.woocommerce-page .woocommerce-message::after {
  display: none;
  content: none;
}

.woocommerce .woocommerce-message .button.wc-forward,
.woocommerce-page .woocommerce-message .button.wc-forward {
  min-height: 38px;
  order: 3;
  float: none;
  margin: 0 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 10px 20px;
  color: white;
  background: var(--robbs-woo-accent, var(--water));
  box-shadow: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

.woocommerce .woocommerce-message .button.wc-forward:hover,
.woocommerce-page .woocommerce-message .button.wc-forward:hover {
  color: white;
  background: var(--robbs-button-primary-hover, var(--water-dark));
  transform: none;
}

/* Cart and checkout surfaces continue the product-facts card language. */
.woocommerce-cart-form,
.woocommerce .cart_totals,
.woocommerce-checkout table.shop_table,
.woocommerce-checkout #payment,
.wc-block-cart .wc-block-cart-items,
.wc-block-cart .wc-block-components-sidebar,
.wc-block-checkout .wc-block-components-sidebar,
.wc-block-checkout .wc-block-checkout__main {
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--robbs-woo-border, var(--border)));
  border-radius: var(--robbs-field-radius, 14px);
  color: var(--robbs-woo-text, var(--robbs-text));
  background: var(--robbs-field-bg, var(--robbs-woo-surface, white));
  box-shadow: none;
}

.wc-block-cart .wc-block-cart-items {
  overflow: hidden;
}

.wc-block-cart .wc-block-components-sidebar,
.wc-block-checkout .wc-block-components-sidebar,
.wc-block-checkout .wc-block-checkout__main {
  padding: 20px;
}

.woocommerce-cart-form {
  overflow: hidden;
  padding: 0 18px 18px;
}

.woocommerce-cart-form table.shop_table,
.woocommerce .cart_totals table.shop_table,
.woocommerce-checkout table.shop_table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.woocommerce-cart-form table.shop_table th,
.woocommerce-cart-form table.shop_table td,
.woocommerce .cart_totals table.shop_table th,
.woocommerce .cart_totals table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td {
  border-color: color-mix(in srgb, var(--robbs-field-border, var(--border)) 72%, transparent);
  padding: 16px 14px;
  vertical-align: middle;
}

.woocommerce-cart-form table.shop_table thead th {
  color: var(--marine);
  background: color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 6%, white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.woocommerce-cart-form table.shop_table .product-thumbnail img {
  width: 72px;
  border-radius: max(8px, calc(var(--robbs-field-radius, 14px) * 0.7));
}

.woocommerce-cart-form table.shop_table .product-name a {
  color: var(--marine);
  font-weight: 800;
  text-decoration: none;
}

.woocommerce-cart-form table.shop_table .product-remove a.remove {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #b42318 !important;
  background: #fee4e2;
}

.woocommerce-cart-form table.shop_table td.actions {
  padding-top: 20px;
  padding-bottom: 2px;
}

.woocommerce .cart_totals {
  padding: 22px;
}

.woocommerce .cart_totals h2 {
  margin: 0 0 12px;
  color: var(--marine);
  font-size: 24px;
}

.woocommerce-checkout table.shop_table {
  overflow: hidden;
  margin-bottom: 22px;
}

.woocommerce-checkout #payment {
  overflow: hidden;
  margin-top: 22px;
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: max(8px, calc(var(--robbs-field-radius, 14px) * 0.75));
  background: color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 7%, white);
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 7%, white);
}

.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout #payment #place_order,
.woocommerce-cart-form button[name="update_cart"],
.woocommerce-cart-form .coupon button.button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  min-height: 48px;
  border: 0 !important;
  border-radius: var(--robbs-button-radius, 999px) !important;
  padding: 13px 22px !important;
  color: var(--robbs-button-primary-text, white) !important;
  background: var(--robbs-woo-accent, var(--robbs-button-primary, var(--water))) !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-decoration: none !important;
  transition: 160ms ease !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-cart-form button[name="update_cart"]:hover,
.woocommerce-cart-form .coupon button.button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  color: var(--robbs-button-primary-text, white) !important;
  background: var(--robbs-button-primary-hover, var(--water-dark)) !important;
  transform: translateY(-1px);
}

.woocommerce-cart-form button[name="update_cart"]:disabled {
  opacity: 0.48;
  transform: none;
}

.woocommerce .cart_totals tr.order-total th,
.woocommerce .cart_totals tr.order-total td,
.woocommerce-checkout-review-order-table tr.order-total th,
.woocommerce-checkout-review-order-table tr.order-total td {
  border-top: 2px solid var(--robbs-field-border, var(--robbs-woo-border, var(--border)));
  color: var(--marine);
  font-size: 17px;
  font-weight: 900;
}

/* Exact styling for WooCommerce's React-powered Cart and Checkout blocks. */
.wp-block-woocommerce-cart.wc-block-cart,
.wp-block-woocommerce-cart .wc-block-cart {
  display: flex !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 32px !important;
}

.wp-block-woocommerce-cart .wc-block-cart__main {
  width: calc(65% - 16px) !important;
  flex: 0 0 calc(65% - 16px) !important;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.wp-block-woocommerce-cart .wc-block-cart__sidebar {
  width: calc(35% - 16px) !important;
  flex: 0 0 calc(35% - 16px) !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block,
.wp-block-woocommerce-cart table.wc-block-cart-items {
  overflow: hidden;
  box-sizing: border-box;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--robbs-woo-border, var(--border))) !important;
  border-radius: var(--robbs-field-radius, 14px) !important;
  color: var(--robbs-woo-text, var(--robbs-text));
  background: var(--robbs-field-bg, #fff) !important;
  box-shadow: none !important;
}

.wp-block-woocommerce-cart .wp-block-woocommerce-cart-items-block {
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.wp-block-woocommerce-cart table.wc-block-cart-items {
  width: 100%;
  margin: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.wp-block-woocommerce-cart table.wc-block-cart-items th {
  padding: 16px 20px !important;
  color: var(--marine);
  background: color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 7%, white) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wp-block-woocommerce-cart table.wc-block-cart-items td {
  border-top: 1px solid color-mix(in srgb, var(--robbs-field-border, var(--border)) 72%, transparent) !important;
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  vertical-align: top;
  background: var(--robbs-field-bg, #fff) !important;
}

.wp-block-woocommerce-cart .wc-block-cart-item__image {
  padding-left: 20px !important;
  padding-right: 14px !important;
}

.wp-block-woocommerce-cart .wc-block-cart-item__product {
  padding-right: 18px !important;
}

.wp-block-woocommerce-cart .wc-block-cart-item__total {
  padding-right: 20px !important;
  padding-left: 14px !important;
}

.wp-block-woocommerce-cart .wc-block-cart-item__image img,
.wp-block-woocommerce-checkout .wc-block-components-order-summary-item__image img {
  border-radius: max(8px, calc(var(--robbs-field-radius, 14px) * 0.7));
}

.wp-block-woocommerce-cart .wc-block-components-product-name,
.wp-block-woocommerce-checkout .wc-block-components-product-name {
  color: var(--marine);
  font-weight: 800;
  text-decoration: none;
}

.wc-block-components-quantity-selector {
  min-height: 48px;
  overflow: hidden;
  box-sizing: border-box;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--robbs-woo-border, var(--border))) !important;
  border-radius: 12px !important;
  background: var(--robbs-field-bg, #fff) !important;
  box-shadow: none !important;
}

.wc-block-components-quantity-selector::after {
  display: none !important;
  content: none !important;
}

body.robbs-theme .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  width: 42px !important;
  min-height: 46px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--robbs-field-text, var(--robbs-text)) !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.wc-block-components-quantity-selector button.wc-block-components-quantity-selector__button {
  width: 34px;
  min-height: 46px;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--robbs-woo-text, var(--robbs-text));
  background: transparent !important;
  box-shadow: none !important;
}

.wc-block-components-quantity-selector button.wc-block-components-quantity-selector__button:hover {
  color: var(--robbs-woo-accent, var(--water));
  background: color-mix(in srgb, var(--robbs-woo-accent, var(--water)) 8%, white) !important;
}

.wc-block-components-totals-coupon__button,
.wc-block-components-totals-coupon button[type="submit"],
.wp-block-woocommerce-cart .wc-block-components-totals-coupon button,
.wp-block-woocommerce-checkout .wc-block-components-totals-coupon button {
  min-height: 46px !important;
  border: 0 !important;
  border-radius: var(--robbs-button-radius, 999px) !important;
  padding: 11px 19px !important;
  color: var(--robbs-button-primary-text, white) !important;
  background: var(--robbs-woo-accent, var(--robbs-button-primary, var(--water))) !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.wc-block-components-totals-coupon__button:hover,
.wc-block-components-totals-coupon button[type="submit"]:hover,
.wp-block-woocommerce-cart .wc-block-components-totals-coupon button:hover,
.wp-block-woocommerce-checkout .wc-block-components-totals-coupon button:hover {
  color: var(--robbs-button-primary-text, white) !important;
  background: var(--robbs-button-primary-hover, var(--water-dark)) !important;
}

/* Modern WooCommerce dropdowns follow their own option group. */
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-select .wc-block-components-select__select,
.wp-block-woocommerce-cart select,
.wp-block-woocommerce-checkout select,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.wc-block-components-combobox .wc-block-components-combobox-control__input {
  min-height: var(--robbs-dropdown-height, 50px) !important;
  box-sizing: border-box !important;
  border: var(--robbs-dropdown-border-width, 1px) var(--robbs-dropdown-border-style, solid) var(--robbs-dropdown-border, var(--border)) !important;
  border-radius: var(--robbs-dropdown-radius, 14px) !important;
  padding-right: calc(var(--robbs-dropdown-padding-x, 16px) + 30px) !important;
  padding-left: var(--robbs-dropdown-padding-x, 16px) !important;
  color: var(--robbs-dropdown-text, var(--robbs-text)) !important;
  background-color: var(--robbs-dropdown-bg, white) !important;
  box-shadow: none !important;
}

.wc-blocks-components-select .wc-blocks-components-select__select:focus,
.wc-block-components-select .wc-block-components-select__select:focus,
.wp-block-woocommerce-cart select:focus,
.wp-block-woocommerce-checkout select:focus,
.wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input:focus,
.wc-block-components-combobox .wc-block-components-combobox-control__input:focus {
  border-color: var(--robbs-dropdown-focus-border, var(--water)) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 var(--robbs-dropdown-focus-ring-width, 3px) color-mix(in srgb, var(--robbs-dropdown-focus-ring, var(--cyan)) 45%, transparent) !important;
}

.wc-blocks-components-select .wc-blocks-components-select__expand,
.wc-block-components-select .wc-block-components-select__expand,
.wc-block-components-combobox .wc-block-components-combobox-control__suggestions-container svg {
  color: var(--robbs-dropdown-arrow, var(--water)) !important;
  fill: currentColor !important;
}

.wc-block-components-combobox .components-form-token-field__suggestions-list {
  overflow: hidden;
  border: var(--robbs-dropdown-border-width, 1px) var(--robbs-dropdown-border-style, solid) var(--robbs-dropdown-border, var(--border));
  border-radius: var(--robbs-dropdown-radius, 14px);
  color: var(--robbs-dropdown-text, var(--robbs-text));
  background: var(--robbs-dropdown-menu-bg, white);
}

.wc-block-components-combobox .components-form-token-field__suggestion.is-selected,
.wc-block-components-combobox .components-form-token-field__suggestion:hover {
  color: var(--robbs-dropdown-text, var(--robbs-text));
  background: var(--robbs-dropdown-option-hover-bg, #d9f5fa);
}

.wp-block-woocommerce-checkout.wc-block-checkout,
.wp-block-woocommerce-checkout .wc-block-checkout {
  display: flex !important;
  align-items: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 32px !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__main,
.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
  min-width: 0;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__main {
  width: calc(65% - 16px) !important;
  padding: 24px !important;
}

.wp-block-woocommerce-checkout .wc-block-checkout__sidebar {
  width: calc(35% - 16px) !important;
  padding: 20px !important;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input input {
  min-height: var(--robbs-field-height, 50px) !important;
  padding: 21px var(--robbs-field-padding-x, 16px) 6px !important;
  line-height: 1.2 !important;
}

.wp-block-woocommerce-checkout .wc-block-components-text-input label {
  left: var(--robbs-field-padding-x, 16px) !important;
}

.robbs-product-course-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 12px;
  margin: 18px 0 24px;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--robbs-woo-border, var(--border)));
  border-radius: var(--robbs-field-radius, 14px);
  padding: 16px 18px;
  color: color-mix(in srgb, var(--robbs-woo-text, var(--robbs-text)) 68%, white);
  background: var(--robbs-field-bg, var(--robbs-woo-surface, white));
  box-shadow: none;
  font-size: 13px;
}

.robbs-product-course-facts span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  line-height: 1.45;
}

.robbs-product-course-facts svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--robbs-woo-accent, var(--water));
}

@media (min-width: 1025px) {
  .robbs-hide-desktop {
    display: none !important;
  }
}

@media (min-width: 621px) and (max-width: 1024px) {
  .robbs-hide-tablet {
    display: none !important;
  }
}

@keyframes bubble-rise {
  0% { opacity: 0; transform: translateY(0) scale(1); }
  12% { opacity: 0.55; }
  88% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-780px) scale(1.3); }
}

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

@keyframes enter-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes enter-scale {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 1040px) {
  .desktop-nav {
    gap: 0;
  }

  .nav-link {
    padding-inline: 10px;
  }

  .primary-menu a {
    padding-inline: 10px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy div.robbs-hero-headline {
    font-size: 48px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 1fr;
  }

  .courses-grid.robbs-course-columns-4,
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  /* 3.4.17: The information bar used two flex cells on narrow screens.
     Give message and phone their own full-width centered lines so the message
     can wrap naturally instead of being squeezed or visually offset. */
  .robbs-header-topbar {
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-height: 0;
    padding: 7px max(14px, env(safe-area-inset-right)) 7px max(14px, env(safe-area-inset-left));
    text-align: center;
    line-height: 1.35;
  }

  .robbs-header-topbar-message,
  .robbs-header-topbar-phone {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .robbs-header-topbar-message {
    display: block;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: break-word;
  }

  .robbs-header-topbar-phone {
    justify-content: center;
    white-space: nowrap;
  }

  body.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-topbar {
    position: absolute;
    width: 100%;
    visibility: hidden;
    pointer-events: none;
  }

  body.robbs-header-sticky.robbs-mobile-header-locked:not(.robbs-header-transparent-home) .robbs-header-sticky-slot {
    min-height: var(--robbs-sticky-slot-height, 72px);
  }

  body.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .site-header,
  body.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .robbs-template-header {
    position: fixed !important;
    z-index: 50;
    top: 0 !important;
    right: 0;
    left: 0;
    width: 100%;
  }

  body.admin-bar.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .site-header,
  body.admin-bar.robbs-header-sticky.robbs-mobile-header-locked .robbs-header-sticky-slot > .robbs-template-header {
    top: var(--wp-admin--admin-bar--height, 32px) !important;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-layout-cover {
    min-height: 680px;
    padding: 80px 0 110px;
  }

  .hero-layout-cover .hero-cover-media::after {
    background: linear-gradient(90deg, rgba(8, 31, 55, var(--hero-overlay-mobile-start, 0.88)), rgba(8, 31, 55, var(--hero-overlay-mobile-end, 0.48)));
  }

  .hero-postcard-media {
    height: 390px;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-copy > p,
  .hero-copy > .robbs-hero-intro {
    max-width: 640px;
  }

  .hero-visual {
    width: min(680px, 94%);
    margin: 0 auto;
  }

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

  .courses-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .courses-grid.robbs-course-columns-2,
  .courses-grid.robbs-course-columns-3,
  .courses-grid.robbs-course-columns-4 {
    grid-template-columns: 1fr;
  }

  .courses-grid.course-display-carousel.robbs-course-columns-2,
  .courses-grid.course-display-carousel.robbs-course-columns-3,
  .courses-grid.course-display-carousel.robbs-course-columns-4 {
    grid-template-columns: none;
    grid-auto-columns: min(86vw, 430px);
  }

  .robbs-course-browser.is-carousel {
    margin-inline: -4px;
  }

  .robbs-course-carousel-button {
    top: auto;
    bottom: -32px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .robbs-course-carousel-button.is-prev { left: calc(50% - 51px); }
  .robbs-course-carousel-button.is-next { right: calc(50% - 51px); }

  .robbs-course-browser.is-carousel {
    padding-bottom: 50px;
  }

  .course-card {
    max-width: 620px;
    margin-inline: auto;
  }

  .course-description {
    min-height: 0;
  }

  .testimonial-card {
    min-height: 0;
  }

  .testimonial-card blockquote {
    min-height: 0;
  }

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

  .contact-list {
    grid-column: auto;
  }

  .wp-block-woocommerce-checkout.wc-block-checkout,
  .wp-block-woocommerce-checkout .wc-block-checkout,
  .wp-block-woocommerce-cart.wc-block-cart,
  .wp-block-woocommerce-cart .wc-block-cart {
    flex-direction: column !important;
    gap: 26px !important;
  }

  .wp-block-woocommerce-checkout .wc-block-checkout__main,
  .wp-block-woocommerce-checkout .wc-block-checkout__sidebar,
  .wp-block-woocommerce-cart .wc-block-cart__main,
  .wp-block-woocommerce-cart .wc-block-cart__sidebar {
    width: 100% !important;
    flex-basis: auto !important;
  }
}

@media (max-width: 620px) {

  .robbs-atomic {
    font-size: var(--robbs-atomic-font-size-mobile, var(--robbs-atomic-font-size, inherit));
  }

  .robbs-hide-mobile {
    display: none !important;
  }
  body:not(.admin-bar) .site-header,
  body:not(.admin-bar) .robbs-template-header {
    top: 0 !important;
  }

  .admin-bar .site-header,
  .admin-bar .robbs-template-header {
    top: var(--wp-admin--admin-bar--height, 46px) !important;
  }

  .nav-wrap {
    width: min(100% - 24px, 1180px);
    height: 72px;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 7px;
  }

  .hero-grid,
  .content-wrap,
  .category-grid,
  .footer-grid {
    width: min(100% - 30px, 1180px);
  }

  .hero-section {
    padding-top: 35px;
  }

  .hero-layout-cover {
    min-height: 650px;
    padding: 70px 0 100px;
    background-position: 60% center;
  }

  .hero-layout-cover .hero-copy div.robbs-hero-headline {
    font-size: clamp(40px, 12vw, 54px);
  }

  .hero-layout-postcard {
    padding-top: 45px;
  }

  .hero-postcard-inner {
    width: calc(100% - 30px);
  }

  .hero-postcard-media {
    height: 300px;
    margin-top: 38px;
    border-width: 5px;
    border-radius: 29px;
  }

  .hero-postcard-media > img {
    border-radius: 23px;
  }

  .hero-postcard-media .mascot-card {
    right: 10px;
    bottom: -25px;
  }

  .eyebrow-pill:not(h2):not(h3) {
    font-size: 12px;
  }

  .hero-copy div.robbs-hero-headline {
    margin-top: 0;
    font-size: clamp(38px, 11.5vw, 48px);
  }

  .hero-copy > p,
  .hero-copy > .robbs-hero-intro {
    margin-top: 20px;
    font-size: 16px;
  }

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

  .large {
    min-width: 0;
    padding-inline: 15px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 9px 17px;
    font-size: 12px;
  }

  .hero-image-frame {
    border-width: 5px;
    border-radius: 28px;
  }

  .hero-image-frame img {
    height: 310px;
  }

  .hero-visual {
    width: 100%;
    padding-bottom: 26px;
  }

  .mascot-card {
    bottom: 0;
    left: 11px;
    padding: 8px 13px 8px 8px;
  }

  .mascot-face {
    width: 48px;
    height: 48px;
  }

  .mascot-card strong.robbs-mascot-title,
  .mascot-card div.robbs-mascot-title {
    font-size: 14px;
  }

  .wave-divider,
  .wave-divider svg {
    height: 48px;
  }

  .category-section {
    padding: 26px 0 60px;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    min-height: 128px;
    padding: 20px 8px;
  }

  .category-card strong {
    font-size: 13px;
  }

  .why-section,
  .courses-section,
  .testimonials-section,
  .cta-section {
    padding: 72px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 34px;
  }

  .advantage-card {
    min-height: 0;
    padding: 25px;
  }

  .courses-heading {
    display: block;
    margin-bottom: 32px;
  }

  .course-hint {
    margin-top: 13px;
    text-align: left;
  }

  .course-image {
    height: 200px;
  }

  .course-content {
    padding: 21px;
  }

  .course-layout-compact .course-card-button {
    display: flex;
  }

  .course-layout-compact .course-image {
    min-height: 0;
    height: 200px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr;
  }

  .robbs-product-course-facts {
    grid-template-columns: 1fr;
  }

  .woocommerce .woocommerce-message,
  .woocommerce-page .woocommerce-message {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .woocommerce .woocommerce-message .button.wc-forward,
  .woocommerce-page .woocommerce-message .button.wc-forward {
    width: calc(100% - 34px);
    margin-left: 34px;
    text-align: center;
  }

  .robbs-header-cart {
    width: 42px;
    height: 42px;
  }

  .woocommerce-cart-form,
  .woocommerce .cart_totals,
  .woocommerce-checkout table.shop_table,
  .woocommerce-checkout #payment {
    border-radius: var(--robbs-field-radius, 14px);
  }

  .woocommerce-cart-form {
    padding-inline: 12px;
  }

  .woocommerce .wc-proceed-to-checkout a.checkout-button,
  .woocommerce-checkout #payment #place_order,
  .wc-block-cart__submit-button,
  .wc-block-components-checkout-place-order-button {
    width: 100%;
  }

  .course-facts {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding-bottom: 105px;
  }

  .cta-box {
    width: calc(100% - 30px);
    border-radius: 30px;
    padding: 38px 22px 47px;
  }

  .cta-logo {
    width: 142px;
    height: 142px;
  }

  .cta-box > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer > .wave-divider {
    top: -47px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
    padding-bottom: 90px;
  }

  .contact-list {
    grid-column: auto;
  }

  .robbs-back-to-top {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    width: 46px;
    height: 46px;
    display: inline-flex;
  }

  .modal-backdrop {
    padding: 12px;
  }

  .course-modal {
    max-height: calc(100vh - 24px);
    border-radius: 24px;
  }

  .course-modal > img {
    height: 190px;
  }

  .modal-content {
    padding: 24px 21px 27px;
  }

  .modal-content h2 {
    font-size: 25px;
  }

  .modal-facts {
    grid-template-columns: 1fr;
  }

  .modal-action {
    align-items: stretch;
    flex-direction: column;
  }

  .modal-action .primary-button,
  .request-success {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 1381px) {
  .robbs-vc-hide-desktop { display: none !important; }
}

@media (min-width: 1025px) and (max-width: 1380px) {
  .robbs-vc-hide-laptop { display: none !important; }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .robbs-vc-hide-tablet { display: none !important; }
  .robbs-atomic[style*="--robbs-atomic-font-size-tablet:"] { font-size: var(--robbs-atomic-font-size-tablet); }
  .robbs-atomic-icon-box .robbs-advantage-title { font-size: var(--robbs-atomic-font-size-tablet, var(--robbs-atomic-font-size, 19px)); }
}

@media (max-width: 600px) {
  .robbs-vc-hide-mobile { display: none !important; }
  .robbs-atomic[style*="--robbs-atomic-font-size-mobile:"] { font-size: var(--robbs-atomic-font-size-mobile); }
  .robbs-atomic-icon-box .robbs-advantage-title { font-size: var(--robbs-atomic-font-size-mobile, var(--robbs-atomic-font-size, 19px)); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Element-local WPBakery values intentionally win over the theme presets. */
.robbs-atomic[style*="--robbs-atomic-max-width:"] { max-width: var(--robbs-atomic-max-width); }
.robbs-atomic[style*="--robbs-atomic-margin:"] { margin: var(--robbs-atomic-margin); }
.robbs-atomic[style*="--robbs-atomic-border-width:"] { border-width: var(--robbs-atomic-border-width); }
.robbs-atomic[style*="--robbs-atomic-border-style:"] { border-style: var(--robbs-atomic-border-style); }
.robbs-atomic[style*="--robbs-atomic-border-color:"] { border-color: var(--robbs-atomic-border-color); }
.robbs-atomic[style*="--robbs-atomic-radius:"] { border-radius: var(--robbs-atomic-radius); }
.robbs-atomic[style*="--robbs-atomic-padding:"] { padding: var(--robbs-atomic-padding); }
.robbs-atomic[style*="--robbs-atomic-color:"] { color: var(--robbs-atomic-color); }
.robbs-atomic[style*="--robbs-atomic-background:"] { background: var(--robbs-atomic-background); }
.robbs-atomic[style*="--robbs-atomic-box-shadow:"] { box-shadow: var(--robbs-atomic-box-shadow); }
.robbs-atomic[style*="--robbs-atomic-font-family:"] { font-family: var(--robbs-atomic-font-family); }
.robbs-atomic[style*="--robbs-atomic-font-size:"] { font-size: var(--robbs-atomic-font-size); }
.robbs-atomic[style*="--robbs-atomic-font-weight:"] { font-weight: var(--robbs-atomic-font-weight); }
.robbs-atomic[style*="--robbs-atomic-line-height:"] { line-height: var(--robbs-atomic-line-height); }
.robbs-atomic[style*="--robbs-atomic-letter-spacing:"] { letter-spacing: var(--robbs-atomic-letter-spacing); }

/* Editable location overview. */
.robbs-locations-section {
  padding: clamp(68px, 8vw, 112px) 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--cyan) 24%, #fff) 0%, #f8fcfd 100%);
}

.robbs-locations-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.robbs-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.robbs-locations-browser {
  position: relative;
}

.robbs-locations-grid.is-carousel {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  overflow-x: auto;
  overflow-y: hidden;
  margin: -8px;
  padding: 8px 8px 30px;
  scroll-behavior: smooth;
  scroll-padding-inline: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.robbs-locations-grid.is-carousel::-webkit-scrollbar {
  display: none;
}

.robbs-locations-grid.is-carousel .robbs-location-card {
  height: auto;
  scroll-snap-align: start;
}

.robbs-location-carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--marine);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 42, 74, .16);
  cursor: pointer;
  transform: translateY(-50%);
  transition: 160ms ease;
}

.robbs-location-carousel-button:hover,
.robbs-location-carousel-button:focus-visible {
  color: #fff;
  background: var(--water);
  outline: 0;
}

.robbs-location-carousel-button:disabled {
  opacity: .34;
  cursor: default;
}

.robbs-location-carousel-button.is-prev { left: -24px; }
.robbs-location-carousel-button.is-next { right: -24px; }
.robbs-location-carousel-button.is-prev svg { transform: rotate(180deg); }

.robbs-location-card {
  position: relative;
  isolation: isolate;
  display: block;
  min-width: 0;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--robbs-card-radius, 26px);
  padding: 0;
  color: #fff;
  background: var(--marine);
  box-shadow: 0 18px 48px rgba(15, 42, 74, .16);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.robbs-location-card:hover,
.robbs-location-card:focus-visible {
  color: #fff;
  box-shadow: 0 28px 68px rgba(6, 31, 55, .25);
  outline: 0;
  transform: translateY(-6px);
}

.robbs-location-card:focus-visible {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--cyan) 78%, #fff), 0 28px 68px rgba(6, 31, 55, .25);
}

.robbs-location-media,
.robbs-location-scrim {
  position: absolute;
  inset: 0;
}

.robbs-location-media {
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--water), var(--marine));
}

.robbs-location-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1), filter 350ms ease;
}

.robbs-location-card:hover .robbs-location-media img,
.robbs-location-card:focus-visible .robbs-location-media img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.055);
}

.robbs-location-scrim {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 31, 55, .08) 0%, rgba(6, 31, 55, .28) 38%, rgba(6, 31, 55, .92) 78%, rgba(6, 31, 55, .98) 100%),
    linear-gradient(110deg, rgba(0, 148, 210, .22), transparent 58%);
}

.robbs-location-card-content {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px 25px 25px;
}

.robbs-location-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(6, 31, 55, .42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.robbs-location-card h3 {
  max-width: 100%;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 2.1vw, 31px);
  line-height: 1.05;
  text-shadow: 0 3px 20px rgba(0, 0, 0, .25);
}

.robbs-location-card-details {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 17px;
  padding: 13px 14px;
  background: rgba(6, 31, 55, .48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(13px) saturate(115%);
  -webkit-backdrop-filter: blur(13px) saturate(115%);
}

.robbs-location-schedule,
.robbs-location-sizes > span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.robbs-location-schedule {
  margin: 0 0 10px;
  color: #baf3ff;
  font-weight: 800;
}

.robbs-location-sizes {
  display: grid;
  gap: 6px;
  margin: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  line-height: 1.4;
}

.robbs-location-sizes svg,
.robbs-location-schedule svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--cyan);
}

.robbs-location-card-details > small {
  display: inline-flex;
  margin-top: 10px;
  border-radius: 999px;
  padding: 5px 9px;
  color: #533700;
  background: #ffd36a;
  font-size: 11px;
  font-weight: 700;
}

.robbs-location-card-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  color: #fff;
  font-weight: 800;
}

.robbs-location-card-action svg {
  transition: transform 180ms ease;
}

.robbs-location-card:hover .robbs-location-card-action svg,
.robbs-location-card:focus-visible .robbs-location-card-action svg {
  transform: translateX(4px);
}

/* Editable location subpages. */
.robbs-location-page .robbs-content-boundary,
.robbs-location-page .standard-content {
  width: 100%;
  max-width: none;
  padding-top: 0;
  padding-bottom: 0;
}

.robbs-location-detail {
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(144, 224, 239, .32), transparent 29%),
    linear-gradient(180deg, #f8fdfe 0%, #eaf8fb 100%);
}

.robbs-location-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(42px, 7vw, 86px);
  align-items: center;
}

.robbs-location-detail-copy .eyebrow-pill {
  margin-bottom: clamp(24px, 2.5vw, 32px);
}

.robbs-location-detail-copy h1 {
  max-width: 700px;
  margin: 0 0 20px;
  color: var(--marine);
}

.robbs-location-detail-intro {
  max-width: 670px;
  color: var(--slate);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}

.robbs-location-detail-intro > :first-child { margin-top: 0; }
.robbs-location-detail-intro > :last-child { margin-bottom: 0; }
.robbs-location-detail-copy .primary-button { margin-top: 28px; }

.robbs-location-detail-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 8px solid rgba(255, 255, 255, .78);
  border-radius: clamp(26px, 4vw, 46px);
  background: #dff4f8;
  box-shadow: 0 28px 70px rgba(15, 42, 74, .18);
}

.robbs-location-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.robbs-location-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(46px, 7vw, 82px);
}

.robbs-location-facts > div {
  display: grid;
  min-width: 0;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 3px 13px;
  align-content: center;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--water) 17%, var(--border));
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 13px 34px rgba(15, 42, 74, .07);
}

.robbs-location-facts > div:nth-child(5) {
  grid-column: 1 / -1;
}

.robbs-location-facts > div > span {
  display: grid;
  width: 44px;
  height: 44px;
  grid-row: 1 / 3;
  place-items: center;
  border-radius: 14px;
  color: var(--water);
  background: color-mix(in srgb, var(--cyan) 40%, white);
}

.robbs-location-facts small {
  min-width: 0;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.robbs-location-facts strong {
  min-width: 0;
  color: var(--marine);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}


/* 3.4.26: Product-driven upcoming dates on location subpages. */
.robbs-location-course-dates-fact {
  grid-column: 1 / -1;
}

.robbs-location-course-dates-fact-content {
  min-width: 0;
}

.robbs-location-course-dates-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 7px 0 0;
  padding: 0;
  list-style: none;
}

.robbs-location-course-dates-list li {
  display: flex;
  min-width: 0;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid color-mix(in srgb, var(--water) 13%, var(--border));
  padding: 10px 0 8px;
}

.robbs-location-course-dates-list a,
.robbs-location-course-dates-list strong {
  min-width: 0;
  color: var(--marine);
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
}

.robbs-location-course-dates-list a:hover,
.robbs-location-course-dates-list a:focus-visible {
  color: var(--water-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.robbs-location-course-dates-list li > span {
  flex: 0 0 auto;
  color: var(--water-dark);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.robbs-location-course-dates-list li.is-pending > span {
  color: var(--slate);
  font-weight: 700;
}

.robbs-location-course-dates-empty {
  margin: 7px 0 0;
  color: var(--slate);
  line-height: 1.55;
}

.robbs-location-course-dates-module {
  width: min(100% - 30px, var(--robbs-content-width, 1180px));
  margin: clamp(28px, 5vw, 56px) auto;
}

.robbs-location-course-dates-card {
  border: 1px solid color-mix(in srgb, var(--water) 17%, var(--border));
  border-radius: 24px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 13px 34px rgba(15, 42, 74, .07);
}

.robbs-location-course-dates-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.robbs-location-course-dates-heading > span {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 14px;
  color: var(--water);
  background: color-mix(in srgb, var(--cyan) 40%, white);
}

.robbs-location-course-dates-heading small {
  display: block;
  margin-bottom: 2px;
  color: var(--slate);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.robbs-location-course-dates-heading h3 {
  margin: 0;
  color: var(--marine);
}

.robbs-location-gallery { margin-top: clamp(58px, 8vw, 96px); }
.robbs-location-gallery h2 { margin: 0 0 28px; text-align: center; }
.robbs-location-gallery > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.robbs-location-gallery figure { overflow: hidden; aspect-ratio: 4 / 3; margin: 0; border-radius: 24px; background: #dff4f8; box-shadow: 0 16px 42px rgba(15, 42, 74, .1); }
.robbs-location-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 260ms ease; }
.robbs-location-gallery figure:hover img { transform: scale(1.035); }

/* Concise local landing-page extension for every swimming location. */
.robbs-location-landing {
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 7% 88%, rgba(144, 224, 239, .24), transparent 28%),
    #fff;
}

.robbs-location-landing-head {
  width: min(100%, 900px);
  margin: 0 auto clamp(38px, 6vw, 62px);
  text-align: center;
}

.robbs-location-landing-head .eyebrow-pill { margin-bottom: 20px; }
.robbs-location-landing-head h2 { margin: 0 auto 20px; color: var(--marine); }
.robbs-location-landing-head > div { color: var(--slate); font-size: clamp(17px, 1.45vw, 19px); line-height: 1.75; }
.robbs-location-landing-head > div > :first-child { margin-top: 0; }
.robbs-location-landing-head > div > :last-child { margin-bottom: 0; }

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

.robbs-location-landing-cards article {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid color-mix(in srgb, var(--water) 15%, var(--border));
  border-radius: 24px;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(145deg, #fff 0%, #f4fbfd 100%);
  box-shadow: 0 16px 42px rgba(15, 42, 74, .075);
}

.robbs-location-landing-cards article > span {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 21px;
  place-items: center;
  border-radius: 16px;
  color: var(--water);
  background: color-mix(in srgb, var(--cyan) 42%, white);
}

.robbs-location-landing-cards h3 { margin: 0 0 11px; color: var(--marine); font-size: clamp(20px, 2vw, 24px); }
.robbs-location-landing-cards p { margin: 0; color: var(--slate); line-height: 1.7; }

.robbs-location-landing-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
  margin-top: clamp(34px, 6vw, 58px);
  border-radius: clamp(24px, 4vw, 36px);
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: linear-gradient(135deg, var(--marine) 0%, #075b8d 100%);
  box-shadow: 0 22px 55px rgba(15, 42, 74, .17);
}

.robbs-location-landing-cta h3 { margin: 0 0 10px; color: #fff; font-size: clamp(25px, 3vw, 34px); }
.robbs-location-landing-cta p { max-width: 760px; margin: 0; color: rgba(255, 255, 255, .82); line-height: 1.7; }
.robbs-location-landing-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 11px; }
.robbs-location-landing-actions .secondary-button { border-color: rgba(255, 255, 255, .45); }

/* Animated trust counters. */
.robbs-counter-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 108px) 0;
}

.robbs-counter-section::before,
.robbs-counter-section::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .1;
  pointer-events: none;
}

.robbs-counter-section::before { top: -110px; left: -70px; width: 260px; height: 260px; }
.robbs-counter-section::after { right: -45px; bottom: -135px; width: 330px; height: 330px; }
.robbs-counter-ocean { color: #fff; background: linear-gradient(135deg, #063b67 0%, #007fbd 58%, #00a9d6 100%); }
.robbs-counter-light { color: var(--marine); background: linear-gradient(135deg, #eaf9fc, #dff4f8); }
.robbs-counter-white { color: var(--marine); background: #fff; }
.robbs-counter-inner { position: relative; z-index: 1; }

.robbs-counter-heading {
  width: min(100%, 780px);
  margin: 0 auto clamp(32px, 5vw, 56px);
  text-align: center;
}

.robbs-counter-heading .eyebrow-pill { margin-bottom: 20px; }
.robbs-counter-ocean .robbs-counter-heading .eyebrow-pill { border-color: rgba(255,255,255,.3); color: #fff; background: rgba(255,255,255,.14); }
.robbs-counter-heading h1,
.robbs-counter-heading h2,
.robbs-counter-heading h3,
.robbs-counter-heading h4,
.robbs-counter-heading h5,
.robbs-counter-heading h6 { margin: 0; color: inherit; }
.robbs-counter-heading p { margin: 16px auto 0; color: inherit; font-size: clamp(16px, 1.7vw, 19px); opacity: .82; }

.robbs-counter-grid {
  display: grid;
  grid-template-columns: repeat(var(--robbs-counter-count, 4), minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.robbs-counter-columns-auto .robbs-counter-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); }
.robbs-counter-columns-1 .robbs-counter-grid { grid-template-columns: minmax(0, 1fr); }
.robbs-counter-columns-2 .robbs-counter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.robbs-counter-columns-3 .robbs-counter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.robbs-counter-columns-4 .robbs-counter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.robbs-counter-card {
  display: flex;
  min-width: 0;
  min-height: 188px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: clamp(22px, 3vw, 32px);
  padding: 28px 20px;
  text-align: center;
  background: rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(3,36,65,.13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.robbs-counter-light .robbs-counter-card,
.robbs-counter-white .robbs-counter-card { border-color: rgba(0,119,182,.15); background: rgba(255,255,255,.78); }
.robbs-counter-icon { display: grid; width: 48px; height: 48px; margin-bottom: 14px; place-items: center; border-radius: 16px; color: inherit; background: rgba(255,255,255,.17); }
.robbs-counter-light .robbs-counter-icon,
.robbs-counter-white .robbs-counter-icon { color: var(--water); background: #e4f7fb; }
.robbs-counter-value { display: block; color: inherit; font-family: var(--robbs-heading-font, "Nunito", sans-serif); font-size: clamp(42px, 5.4vw, 72px); font-weight: 900; line-height: .98; letter-spacing: -.045em; }
.robbs-counter-label { display: block; margin-top: 13px; color: inherit; font-size: clamp(14px, 1.4vw, 17px); font-weight: 750; line-height: 1.35; opacity: .88; }

/* About / owner section. */
.robbs-about-section {
  padding: clamp(72px, 9vw, 124px) 0;
  background: #fff;
}

.robbs-about-eyebrow-wrap {
  margin-bottom: clamp(20px, 2vw, 28px);
}

.robbs-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.robbs-about-image-right .robbs-about-media { order: 2; }
.robbs-about-image-right .robbs-about-copy { order: 1; }

.robbs-about-media {
  position: relative;
  min-width: 0;
  margin: 0;
}

.robbs-about-media img {
  display: block;
  width: 100%;
  aspect-ratio: var(--robbs-about-ratio, 4/5);
  border-radius: clamp(30px, 6vw, 76px) 24px clamp(30px, 6vw, 76px) 24px;
  object-fit: cover;
  object-position: var(--robbs-about-position, center center);
  box-shadow: 0 28px 70px rgba(15, 42, 74, .17);
}

.robbs-about-media figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  max-width: calc(100% - 44px);
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 18px;
  padding: 13px 17px;
  color: var(--marine);
  background: rgba(255,255,255,.9);
  box-shadow: 0 12px 35px rgba(15,42,74,.12);
  backdrop-filter: blur(12px);
}

.robbs-about-media figcaption span { color: var(--slate); font-size: 13px; }
.robbs-about-text { color: var(--slate); font-size: 18px; line-height: 1.75; }
.robbs-about-text > :first-child,
.robbs-about-person-text > :first-child { margin-top: 0; }
.robbs-about-text > :last-child,
.robbs-about-person-text > :last-child { margin-bottom: 0; }
.robbs-about-highlights { display: grid; gap: 10px; margin: 25px 0 29px; }
.robbs-about-highlights > span { display: flex; align-items: center; gap: 10px; color: var(--marine); font-weight: 750; }
.robbs-about-highlights svg { flex: 0 0 auto; color: var(--water); }
.robbs-about-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.robbs-about-person-text { margin-top: 16px; color: var(--slate); font-size: 16px; line-height: 1.72; }

/* Calm stacked presentation: the second person mirrors the familiar first row. */
.robbs-about-story-intro {
  width: min(100%, 980px);
  margin: 0 auto;
  text-align: center;
}

.robbs-about-story-intro .robbs-about-text {
  margin-top: 20px;
  text-align: left;
}

/* Responsive heading alignment for the native About element.
 * Only the eyebrow/headline are affected; editorial copy stays left aligned. */
.robbs-about-heading-desktop-left .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
.robbs-about-heading-desktop-left .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
.robbs-about-heading-desktop-left .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
.robbs-about-heading-desktop-left .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: left; }
.robbs-about-heading-desktop-center .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
.robbs-about-heading-desktop-center .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
.robbs-about-heading-desktop-center .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
.robbs-about-heading-desktop-center .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: center; }
.robbs-about-heading-desktop-right .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
.robbs-about-heading-desktop-right .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
.robbs-about-heading-desktop-right .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
.robbs-about-heading-desktop-right .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: right; }

@media (max-width: 1024px) {
  .robbs-about-heading-tablet-left .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-tablet-left .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
  .robbs-about-heading-tablet-left .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-tablet-left .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: left; }
  .robbs-about-heading-tablet-center .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-tablet-center .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
  .robbs-about-heading-tablet-center .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-tablet-center .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: center; }
  .robbs-about-heading-tablet-right .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-tablet-right .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
  .robbs-about-heading-tablet-right .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-tablet-right .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: right; }
}

@media (max-width: 700px) {
  .robbs-about-heading-mobile-left .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-mobile-left .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
  .robbs-about-heading-mobile-left .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-mobile-left .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: left; }
  .robbs-about-heading-mobile-center .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-mobile-center .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
  .robbs-about-heading-mobile-center .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-mobile-center .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: center; }
  .robbs-about-heading-mobile-right .robbs-about-story-intro > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-mobile-right .robbs-about-story-intro > .robbs-about-eyebrow-wrap,
  .robbs-about-heading-mobile-right .robbs-about-copy > :is(h1,h2,h3,h4,h5,h6),
  .robbs-about-heading-mobile-right .robbs-about-copy > .robbs-about-eyebrow-wrap { text-align: right; }
}

.robbs-about-story-list {
  display: grid;
  gap: clamp(58px, 8vw, 104px);
  margin-top: clamp(52px, 7vw, 86px);
}

.robbs-about-story-row {
  display: grid;
  grid-template-columns: minmax(280px, .88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

@media (min-width: 701px) {
  .robbs-about-story-row.is-image-right {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  }
}

.robbs-about-story-row.is-image-right .robbs-about-media { order: 2; }
.robbs-about-story-row.is-image-right .robbs-about-story-copy { order: 1; }
.robbs-about-story-copy { min-width: 0; }
.robbs-about-story-copy h3 { margin: 0; }
.robbs-about-story-copy header > span {
  display: block;
  margin-top: 5px;
  color: var(--water);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .035em;
}

.robbs-about-media.is-placeholder {
  display: grid;
  overflow: hidden;
  width: 100%;
  aspect-ratio: var(--robbs-about-ratio, 4/5);
  place-items: center;
  border-radius: clamp(30px, 6vw, 76px) 24px clamp(30px, 6vw, 76px) 24px;
  color: var(--water);
  background: radial-gradient(circle at 50% 35%, #fff 0 12%, transparent 13%), linear-gradient(145deg, #eaf9fc, #cceef5);
  box-shadow: 0 28px 70px rgba(15, 42, 74, .13);
}

.robbs-about-media-placeholder { display: grid; place-items: center; }
.robbs-about-story-footer {
  margin-top: clamp(50px, 7vw, 80px);
  border-top: 1px solid rgba(0,119,182,.13);
  padding-top: clamp(32px, 4vw, 46px);
}

.robbs-about-story-footer .robbs-about-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 0;
}

.robbs-about-story-footer .robbs-about-actions { justify-content: center; margin-top: 28px; }

/* Product locations on product cards, modal and product pages. */
.robbs-product-location-table {
  overflow: hidden;
  margin: 25px 0;
  border: 1px solid var(--robbs-woo-border, var(--border));
  border-radius: var(--robbs-woo-card-radius, 22px);
  background: var(--robbs-woo-surface, #fff);
}
.robbs-product-location-table h3 { margin: 0; padding: 20px 22px 15px; font-size: 20px; }
.robbs-product-location-head,
.robbs-product-location-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr .8fr; gap: 14px; padding: 12px 22px; }
.robbs-product-location-head { color: var(--slate); background: #f5f9fb; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.robbs-product-location-row { border-top: 1px solid var(--robbs-woo-border, var(--border)); font-size: 14px; }
.robbs-product-location-row strong { display: flex; align-items: center; gap: 7px; }
.robbs-product-location-row strong svg { color: var(--water); }
.robbs-product-location-row span { display: flex; flex-direction: column; }
.robbs-product-location-row small { margin-top: 3px; color: #8a5a00; }
.robbs-product-location-row .robbs-location-stock { align-self: start; display: inline-flex; width: max-content; border-radius: 999px; padding: 5px 10px; color: #17603a; background: #e7f8ef; font-size: 12px; font-weight: 800; }
.robbs-product-location-row .robbs-location-stock.is-empty { color: #9f1239; background: #ffe4e9; }
.robbs-product-location-row .robbs-location-stock.is-waitlist { color: #075985; background: #e0f2fe; }
.robbs-waitlist-interface,
.robbs-sold-out-waitlist { scroll-margin-top: 120px; }
.robbs-course-location-choice { display: grid; gap: 8px; width: 100%; margin: 18px 0; }
.robbs-course-location-choice > label { color: var(--marine); font-size: 14px; font-weight: 800; }
.robbs-course-location-choice .required { color: #be123c; }
.robbs-course-location-choice select { width: 100%; min-height: var(--robbs-select-height, 50px); border: var(--robbs-select-border-width, 1px) var(--robbs-select-border-style, solid) var(--robbs-select-border, var(--border)); border-radius: var(--robbs-select-radius, 14px); padding: 0 44px 0 15px; color: var(--robbs-select-text, var(--marine)); background-color: var(--robbs-select-bg, #fff); font: inherit; }
.robbs-course-location-choice > small { color: var(--slate); font-size: 12px; line-height: 1.5; }
.robbs-course-location-choice option[data-available="no"] { color: #9f1239; }

/* Child registration and location-dependent booking services. */
.robbs-booking-options {
  display: grid;
  width: 100%;
  gap: 8px;
  margin: 18px 0;
}

.robbs-booking-options > label,
.robbs-booking-slot-field > span {
  color: var(--marine);
  font-size: 14px;
  font-weight: 800;
}

.robbs-booking-options .required,
.robbs-booking-slot-field b { color: #be123c; }

.robbs-booking-options select {
  width: 100%;
  min-height: var(--robbs-select-height, 50px);
  box-sizing: border-box;
  border: var(--robbs-select-border-width, 1px) var(--robbs-select-border-style, solid) var(--robbs-select-border, var(--border));
  border-radius: var(--robbs-select-radius, 14px);
  padding: 0 44px 0 15px;
  color: var(--robbs-select-text, var(--marine));
  background-color: var(--robbs-select-bg, #fff);
  font: inherit;
}

.robbs-booking-service-help {
  min-height: 18px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.5;
}

.robbs-booking-slot-field { display: grid; gap: 8px; }
.robbs-booking-slot-field[hidden] { display: none !important; }

.robbs-booking-children,
.robbs-booking-person,
.robbs-product-request-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: 100%;
  min-width: 0;
  clear: both;
  box-sizing: border-box;
  margin: clamp(24px, 4vw, 38px) 0 20px;
  border: 1px solid rgba(0, 119, 182, .16);
  border-radius: var(--robbs-woo-card-radius, 22px);
  padding: clamp(18px, 3.5vw, 28px);
  background: linear-gradient(145deg, rgba(238, 250, 253, .92), rgba(255, 255, 255, .98));
  box-shadow: 0 18px 45px rgba(15, 42, 74, .07);
}

.robbs-booking-children-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
}

.robbs-booking-children-heading small {
  color: var(--water);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.robbs-booking-children-heading h3 {
  margin: 3px 0 0;
  color: var(--marine);
  font-size: clamp(21px, 2.5vw, 27px);
}

.robbs-booking-child-count {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--water);
  font-size: 16px;
  font-weight: 900;
}

.robbs-booking-child-list { display: grid; gap: 18px; }

.robbs-booking-child {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(15, 42, 74, .12);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, .96);
}

.robbs-booking-child legend {
  display: flex;
  width: calc(100% - 12px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 6px;
  color: var(--marine);
  font-size: 15px;
  font-weight: 900;
}

.robbs-child-course-choice {
  display: grid;
  gap: 8px;
  margin: 4px 0 17px;
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--marine);
  background: #f2f9fb;
}

.robbs-child-course-choice > span,
.robbs-child-course-choice label > span { display: block; margin-bottom: 5px; color: var(--slate); font-size: 11px; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.robbs-child-course-choice label { display: grid; gap: 5px; }
.robbs-child-course-choice select,
.robbs-private-service-other input,
.robbs-booking-person-grid input,
.robbs-booking-person-grid select,
.robbs-booking-person-grid textarea,
.robbs-product-request-grid input,
.robbs-product-request-grid select,
.robbs-product-request-grid textarea {
  width: 100%;
  min-height: var(--robbs-field-height, 50px);
  box-sizing: border-box;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--border));
  border-radius: var(--robbs-field-radius, 14px);
  padding: 10px 14px;
  color: var(--robbs-field-text, var(--marine));
  background: var(--robbs-field-bg, #fff);
  font: inherit;
}
.robbs-child-course-feedback { margin: 0; color: var(--slate); font-size: 12px; font-weight: 700; line-height: 1.5; }
.robbs-child-course-feedback.is-match { color: #17603a; }
.robbs-child-course-feedback.is-match::before { content: "✓ "; }
.robbs-child-course-feedback.is-advice { color: #9a5b00; }
.robbs-child-course-feedback.is-advice::before { content: "Hinweis: "; }
.robbs-child-course-feedback.is-warning { color: #9f1239; }
.robbs-child-course-feedback.is-warning::before { content: "! "; }

.robbs-remove-child {
  border: 0;
  padding: 4px 0;
  color: #9f1239;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

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

.robbs-booking-child-grid > label,
.robbs-booking-child-grid > div {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--marine);
  font-size: 13px;
  font-weight: 800;
}

.robbs-booking-child-grid .is-full { grid-column: 1 / -1; }

.robbs-booking-child-grid input[type="text"],
.robbs-booking-child-grid input[type="date"],
.robbs-booking-child-grid select,
.robbs-booking-child-grid textarea {
  width: 100%;
  min-height: var(--robbs-field-height, 50px);
  box-sizing: border-box;
  border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--border));
  border-radius: var(--robbs-field-radius, 14px);
  padding: 10px 14px;
  color: var(--robbs-field-text, var(--marine));
  background: var(--robbs-field-bg, #fff);
  font: inherit;
  font-weight: 500;
}

.robbs-booking-child-grid input[readonly] { color: #64748b; background: #f5f8fa; }
.robbs-booking-child-grid textarea { min-height: 96px; resize: vertical; }
.robbs-booking-child-grid input:focus,
.robbs-booking-child-grid select:focus,
.robbs-booking-child-grid textarea:focus { border-color: var(--water); outline: 3px solid rgba(0, 119, 182, .12); }

.robbs-water-behaviour > div,
.robbs-previous-course > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.robbs-water-behaviour label,
.robbs-previous-course label {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.robbs-water-behaviour input,
.robbs-previous-course input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.robbs-water-behaviour label span,
.robbs-previous-course label span {
  border: 1px solid #cbdde6;
  border-radius: 999px;
  padding: 9px 13px;
  color: #465d72;
  background: #fff;
  font-size: 12px;
  font-weight: 750;
}

.robbs-water-behaviour input:checked + span,
.robbs-previous-course input:checked + span {
  border-color: var(--water);
  color: #005c8a;
  background: #dff6fa;
  box-shadow: inset 0 0 0 1px var(--water);
}

.robbs-water-behaviour input:focus-visible + span,
.robbs-previous-course input:focus-visible + span { outline: 3px solid rgba(0, 119, 182, .18); }
.robbs-child-field-error { color: #9f1239; font-weight: 700; }

.robbs-add-child {
  position: static !important;
  display: flex !important;
  width: 100%;
  min-height: 48px;
  float: none !important;
  clear: both;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 !important;
  border: 1px dashed rgba(0, 119, 182, .45) !important;
  border-radius: 14px !important;
  color: var(--water) !important;
  background: rgba(255, 255, 255, .72) !important;
  font-weight: 850 !important;
}

.robbs-add-child:hover { border-style: solid !important; background: #fff !important; }
.robbs-add-child:disabled { cursor: not-allowed; opacity: .55; }

.robbs-family-price-summary {
  overflow: hidden;
  border: 1px solid rgba(0, 119, 182, .16);
  border-radius: 15px;
  background: rgba(255,255,255,.82);
}
.robbs-family-price-summary > strong { display: block; padding: 13px 16px; color: var(--marine); background: #eaf7fa; font-size: 13px; }
.robbs-family-price-summary p { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin: 0; border-top: 1px solid rgba(0, 119, 182, .1); padding: 11px 16px; color: var(--slate); font-size: 12px; }
.robbs-family-price-summary p strong { flex: 0 0 auto; color: var(--marine); text-align: right; }
.robbs-family-price-summary p.is-discount { color: #17603a; background: #eefaf3; font-weight: 800; }
.robbs-family-price-summary p.is-discount strong { color: #17603a; }
.robbs-family-price-summary p.is-total { color: var(--marine); background: #f7fcfd; font-size: 14px; font-weight: 850; }

.robbs-sibling-waitlist-choice {
  display: grid;
  gap: 8px;
  margin-top: 0;
  border: 1px solid #f1c27d;
  border-radius: 15px;
  padding: 16px;
  color: #694410;
  background: #fff8e8;
  font-size: 13px;
  line-height: 1.55;
}

.robbs-sibling-waitlist-choice[hidden] { display: none !important; }
.robbs-sibling-waitlist-choice p { margin: 0; }
.robbs-sibling-waitlist-choice label { display: flex; align-items: flex-start; gap: 9px; font-weight: 800; }
.robbs-sibling-waitlist-choice input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.robbs-fixed-child-quantity { color: var(--marine); font-weight: 800; }

body.robbs-theme.single-product .summary form.cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

body.robbs-theme.single-product .summary form.cart > .robbs-course-location-choice,
body.robbs-theme.single-product .summary form.cart > .robbs-booking-options,
body.robbs-theme.single-product .summary form.cart > .robbs-booking-children,
body.robbs-theme.single-product .summary form.cart > .robbs-booking-person {
  flex: 0 0 100%;
}

body.robbs-theme.single-product .summary form.cart .quantity,
body.robbs-theme.single-product .summary form.cart .single_add_to_cart_button {
  float: none !important;
  margin: 0 !important;
}

body.robbs-theme.single-product .summary form.cart .single_add_to_cart_button {
  min-height: var(--robbs-field-height, 50px);
}

.robbs-private-service-other { display: grid; gap: 7px; }
.robbs-private-service-other[hidden],
.robbs-private-fear-details[hidden] { display: none !important; }
.robbs-booking-person { margin-top: clamp(24px, 4vw, 38px); }
.robbs-booking-person-grid,
.robbs-product-request-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.robbs-booking-person-grid > label,
.robbs-booking-person-grid > div,
.robbs-product-request-grid > label { display: grid; min-width: 0; gap: 7px; color: var(--marine); font-size: 13px; font-weight: 800; }
.robbs-booking-person-grid .is-full,
.robbs-product-request-grid .is-full { grid-column: 1 / -1; }
.robbs-booking-person-grid textarea,
.robbs-product-request-grid textarea { min-height: 105px; resize: vertical; }
.robbs-private-fear > div { display: flex; flex-wrap: wrap; gap: 12px; }
.robbs-private-fear > div label { display: flex; align-items: center; gap: 6px; }
.robbs-private-fear-details { display: grid; gap: 7px; margin-top: 5px; }

.robbs-product-request-panel { margin: 22px 0; }
.robbs-product-request-heading { margin-bottom: 18px; }
.robbs-product-request-heading small { color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.robbs-product-request-heading h3 { margin: 4px 0 7px; color: var(--marine); font-size: clamp(22px, 3vw, 28px); }
.robbs-product-request-heading p { margin: 0; color: var(--slate); line-height: 1.6; }
.robbs-product-request-form { display: grid; gap: 17px; }
.robbs-product-request-privacy { display: flex; align-items: flex-start; gap: 9px; color: var(--slate); font-size: 12px; line-height: 1.5; }
.robbs-product-request-privacy input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.robbs-product-request-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.robbs-product-request-submit { width: max-content; min-height: 50px; margin: 0 !important; border-radius: var(--robbs-button-radius, 999px) !important; padding: 12px 24px !important; color: #fff !important; background: var(--water) !important; font-weight: 850 !important; }
.robbs-product-request-success,
.robbs-product-request-error { margin-bottom: 16px; border-radius: 14px; padding: 13px 15px; font-size: 13px; font-weight: 750; }
.robbs-product-request-success { color: #17603a; background: #e7f8ef; }
.robbs-product-request-error { color: #9f1239; background: #fff0f3; }

.robbs-order-children { margin: 8px 0; border-left: 3px solid #00a6c7; padding-left: 12px; }
.robbs-order-children > div + div { margin-top: 10px; }
.robbs-order-children ul { margin: 4px 0 0 18px; }
.robbs-waitlist-interface { width: 100%; margin: 18px 0 26px; }
.robbs-waitlist-invitation { display: grid; gap: 4px; margin: 16px 0; border: 1px solid #9dd9bd; border-radius: 17px; padding: 16px 18px; color: #155d3a; background: #edf9f3; }
.robbs-waitlist-invitation.is-invalid { border-color: #f0b9c5; color: #8d1737; background: #fff1f4; }
.robbs-waitlist-invitation strong { color: inherit; font-size: 16px; }
.robbs-waitlist-invitation span { font-size: 14px; line-height: 1.55; }
.robbs-waitlist-box { overflow: hidden; border: 1px solid rgba(0,119,182,.2); border-radius: var(--robbs-woo-card-radius, 22px); padding: clamp(20px, 4vw, 30px); color: var(--slate); background: linear-gradient(145deg, rgba(228,247,252,.94), rgba(255,255,255,.98)); box-shadow: 0 18px 45px rgba(15,42,74,.08); }
.robbs-waitlist-box[hidden] { display: none !important; }
.robbs-waitlist-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 12px; }
.robbs-waitlist-heading h3 { margin: 2px 0 0; color: var(--marine); font-size: clamp(20px, 3vw, 26px); }
.robbs-waitlist-heading small { color: var(--water); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.robbs-waitlist-icon { display: grid; width: 46px; height: 46px; flex: 0 0 auto; place-items: center; border-radius: 14px; color: #fff; background: var(--water); font-size: 22px; }
.robbs-waitlist-box > p { margin: 0 0 14px; line-height: 1.65; }
.robbs-waitlist-box .robbs-waitlist-selection { border-radius: 12px; padding: 10px 13px; color: var(--marine); background: rgba(255,255,255,.8); font-size: 13px; font-weight: 800; }
.robbs-waitlist-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.robbs-waitlist-fields label { display: grid; min-width: 0; gap: 7px; color: var(--marine); font-size: 13px; font-weight: 800; }
.robbs-waitlist-fields label > span b { color: #be123c; }
.robbs-waitlist-fields input,
.robbs-waitlist-fields textarea { width: 100%; min-height: var(--robbs-field-height, 50px); box-sizing: border-box; border: var(--robbs-field-border-width, 1px) var(--robbs-field-border-style, solid) var(--robbs-field-border, var(--border)); border-radius: var(--robbs-field-radius, 14px); padding: 10px 15px; color: var(--robbs-field-text, var(--marine)); background: var(--robbs-field-bg, #fff); font: inherit; }
.robbs-waitlist-fields textarea { min-height: 120px; resize: vertical; }
.robbs-waitlist-fields input:focus,
.robbs-waitlist-fields textarea:focus { border-color: var(--water); outline: 3px solid rgba(0,119,182,.13); }
.robbs-waitlist-field-full { grid-column: 1 / -1; }
.robbs-waitlist-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.robbs-waitlist-consent { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0; color: var(--slate); font-size: 12px; line-height: 1.55; }
.robbs-waitlist-consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }
.robbs-waitlist-consent a { color: var(--water); font-weight: 750; }
.robbs-waitlist-submit { min-width: 220px; }
.robbs-waitlist-submit.is-loading { cursor: progress; opacity: .72; }
.robbs-waitlist-status { min-height: 22px; margin-top: 12px; font-size: 13px; font-weight: 750; }
.robbs-waitlist-status.is-success { color: #17603a; }
.robbs-waitlist-status.is-error { color: #9f1239; }
.robbs-sold-out-waitlist { width: 100%; margin-top: 18px; }
.robbs-modal-locations { display: grid; gap: 8px; margin: 20px 0; }
.robbs-modal-locations > strong { color: var(--marine); }
.robbs-modal-locations > span { display: grid; grid-template-columns: 1.2fr 1fr 1fr .8fr; gap: 8px; border-radius: 12px; padding: 10px 12px; background: #f4fafc; font-size: 13px; }
.robbs-modal-locations em { color: var(--slate); font-style: normal; }
.robbs-modal-locations .robbs-modal-stock { color: #17603a; font-weight: 800; }
.robbs-modal-locations small { grid-column: 1/-1; color: #8a5a00; }

/* Native Robbs contact form. */
.robbs-contact-form { width: 100%; max-width: none; margin-inline: auto; box-sizing: border-box; text-align: left; }
.robbs-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.robbs-form-field { display: grid; min-width: 0; gap: 7px; }
.robbs-field-full { grid-column: 1 / -1; }
.robbs-form-label { color: var(--robbs-field-label, var(--marine)); font-size: 14px; font-weight: 800; }
.robbs-form-label b { color: #be123c; }
.robbs-form-control { position: relative; display: block; }
.robbs-form-control input,
.robbs-form-control select,
.robbs-form-control textarea { width: 100%; box-sizing: border-box; margin: 0; }
.robbs-form-control textarea { min-height: 145px; resize: vertical; padding-top: 14px; }
body.robbs-theme .robbs-contact-form .robbs-form-field.has-icon .robbs-form-control > input:not([type="hidden"]),
body.robbs-theme .robbs-contact-form .robbs-form-field.has-icon .robbs-form-control > select,
body.robbs-theme .robbs-contact-form .robbs-form-field.has-icon .robbs-form-control > textarea { padding-left: 50px !important; }
.robbs-form-icon { position: absolute; z-index: 2; top: 50%; left: 17px; display: inline-flex; width: 20px; height: 20px; align-items: center; justify-content: center; color: var(--water); pointer-events: none; transform: translateY(-50%); }
.robbs-form-icon svg { display: block; flex: 0 0 auto; }
.robbs-field-type-textarea .robbs-form-icon { top: 17px; transform: none; }
.robbs-form-icon.is-solid svg { fill: color-mix(in srgb, currentColor 20%, transparent); stroke-width: 2.1; }
.robbs-form-privacy { display: flex; align-items: flex-start; gap: 11px; color: var(--slate); font-size: 13px; line-height: 1.55; }
.robbs-form-privacy input { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 2px; accent-color: var(--water); }
.robbs-form-privacy a { color: var(--water); font-weight: 700; }
.robbs-form-submit { display: flex; margin-top: 23px; }
.robbs-form-align-center .robbs-form-submit { justify-content: center; }
.robbs-form-align-right .robbs-form-submit { justify-content: flex-end; }
.robbs-form-submit .primary-button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-color: var(--robbs-form-button-bg, var(--robbs-button-primary)); border-radius: var(--robbs-form-button-radius, var(--robbs-button-radius)); color: var(--robbs-form-button-color, var(--robbs-button-primary-text)); background: var(--robbs-form-button-bg, var(--robbs-button-primary)); }
.robbs-form-submit .primary-button:hover { border-color: var(--robbs-form-button-hover, var(--robbs-button-primary-hover)); background: var(--robbs-form-button-hover, var(--robbs-button-primary-hover)); }
.robbs-form-button-full .robbs-form-submit .primary-button { width: 100%; }
.robbs-form-submit .primary-button:disabled { cursor: wait; opacity: .65; }
.robbs-form-status { min-height: 24px; margin-top: 14px; font-size: 14px; font-weight: 750; }
.robbs-form-status.is-success { color: #087443; }
.robbs-form-status.is-error { color: #b42318; }
.robbs-form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.robbs-cta-form {
  width: 100%;
  box-sizing: border-box;
  margin: 30px auto 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background: linear-gradient(135deg, rgba(144,224,239,.18), rgba(0,84,133,.3));
  box-shadow: 0 20px 60px rgba(6,31,55,.18), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  --robbs-field-label: rgba(255,255,255,.96);
  --robbs-field-bg: rgba(255,255,255,.92);
  --robbs-field-text: var(--marine);
  --robbs-field-placeholder: #718096;
  --robbs-field-border: rgba(255,255,255,.58);
  --robbs-dropdown-bg: rgba(255,255,255,.92);
  --robbs-dropdown-text: var(--marine);
  --robbs-dropdown-border: rgba(255,255,255,.58);
}
.robbs-cta-form .robbs-form-submit { justify-content: center; }

.robbs-contact-form.robbs-form-surface-blue-glass,
.robbs-atomic-cta .robbs-contact-form:not(.robbs-form-surface-none):not(.robbs-form-surface-dark-glass) {
  border: 1px solid color-mix(in srgb, var(--water) 20%, rgba(255,255,255,.62));
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(135deg, rgba(144,224,239,.3), rgba(255,255,255,.42));
  box-shadow: 0 20px 55px rgba(15,42,74,.1), inset 0 1px 0 rgba(255,255,255,.52);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}

.robbs-atomic-cta .robbs-builder-brand img {
  filter: drop-shadow(0 12px 26px rgba(15,42,74,.18));
}

.robbs-atomic-cta .robbs-atomic-heading {
  text-shadow: 0 2px 14px rgba(15,42,74,.09);
}

.robbs-contact-form.robbs-form-surface-dark-glass {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  color: #fff;
  background: linear-gradient(135deg, color-mix(in srgb, var(--water) 78%, transparent), color-mix(in srgb, var(--marine) 82%, transparent));
  box-shadow: 0 20px 60px rgba(6,31,55,.2), inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  --robbs-field-label: rgba(255,255,255,.96);
  --robbs-field-bg: rgba(255,255,255,.92);
  --robbs-field-text: var(--marine);
  --robbs-field-placeholder: #718096;
  --robbs-field-border: rgba(255,255,255,.58);
  --robbs-dropdown-bg: rgba(255,255,255,.92);
  --robbs-dropdown-text: var(--marine);
  --robbs-dropdown-border: rgba(255,255,255,.58);
}

.robbs-cta-form .robbs-form-privacy,
.robbs-contact-form.robbs-form-surface-dark-glass .robbs-form-privacy { color: rgba(255,255,255,.86); }
.robbs-cta-form .robbs-form-privacy a,
.robbs-contact-form.robbs-form-surface-dark-glass .robbs-form-privacy a { color: #b8f4ff; }
.robbs-cta-form .robbs-form-label b,
.robbs-contact-form.robbs-form-surface-dark-glass .robbs-form-label b { color: #ffd5df; }
.robbs-cta-form .robbs-form-status.is-success,
.robbs-contact-form.robbs-form-surface-dark-glass .robbs-form-status.is-success { color: #bdf9da; }
.robbs-cta-form .robbs-form-status.is-error,
.robbs-contact-form.robbs-form-surface-dark-glass .robbs-form-status.is-error { color: #ffd0d8; }

@media (max-width: 1024px) {
  .robbs-locations-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .robbs-locations-grid.is-carousel { grid-template-columns: none; grid-auto-columns: calc((100% - 18px) / 2); }
  .robbs-location-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.robbs-location-landing-cta { grid-template-columns: 1fr; }
	.robbs-location-landing-actions { justify-content: flex-start; }
  .robbs-about-grid { gap: 42px; }
  .robbs-about-story-row { gap: 42px; }
  .robbs-counter-columns-3 .robbs-counter-grid,
  .robbs-counter-columns-4 .robbs-counter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .robbs-location-detail-hero { grid-template-columns: 1fr; }
  .robbs-location-detail-image { width: min(100%, 720px); }
}

@media (max-width: 700px) {
	.robbs-waitlist-fields { grid-template-columns: 1fr; }
	.robbs-waitlist-field-full { grid-column: auto; }
  .robbs-waitlist-submit { width: 100%; min-width: 0; }
  .robbs-locations-grid,
  .robbs-about-grid,
  .robbs-about-story-row,
  .robbs-form-grid { grid-template-columns: 1fr; }
  .robbs-counter-columns-2 .robbs-counter-grid,
  .robbs-counter-columns-3 .robbs-counter-grid,
  .robbs-counter-columns-4 .robbs-counter-grid { grid-template-columns: 1fr; }
  .robbs-counter-card { min-height: 164px; }
  .robbs-locations-browser.is-carousel { padding-bottom: 54px; }
  .robbs-locations-grid.is-carousel { grid-template-columns: none; grid-auto-columns: min(84vw, 390px); }
  .robbs-location-card,
  .robbs-location-card-content { min-height: 430px; }
  .robbs-location-card-content { padding: 24px 20px 22px; }
  .robbs-location-carousel-button { top: auto; bottom: 0; width: 44px; height: 44px; transform: none; }
  .robbs-location-carousel-button.is-prev { left: calc(50% - 51px); }
  .robbs-location-carousel-button.is-next { right: calc(50% - 51px); }
  .robbs-location-detail { padding: 60px 0; }
	.robbs-location-landing { padding: 60px 0; }
	.robbs-location-facts,
	.robbs-location-landing-cards,
  .robbs-location-gallery > div { grid-template-columns: 1fr; }
	.robbs-location-landing-actions { display: grid; }
	.robbs-location-landing-actions a { width: 100%; }
  .robbs-location-gallery figure { border-radius: 20px; }
  .robbs-location-course-dates-list { grid-template-columns: 1fr; gap: 0; }
  .robbs-location-course-dates-list li { gap: 10px; }
  .robbs-field-half { grid-column: 1 / -1; }
  .robbs-about-image-right .robbs-about-media,
  .robbs-about-image-right .robbs-about-copy { order: initial; }
  .robbs-about-story-row.is-image-right .robbs-about-media,
  .robbs-about-story-row.is-image-right .robbs-about-story-copy { order: initial; }
  .robbs-about-story-intro { text-align: left; }
  /* Section headlines are centered on smartphones; body copy and card titles keep their own alignment. */
  .section-heading,
  .robbs-locations-heading,
  .robbs-news-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .section-heading p { margin-left: auto; margin-right: auto; }
  .robbs-about-story-footer .robbs-about-highlights { grid-template-columns: 1fr; }
  .robbs-about-story-footer .robbs-about-actions { width: 100%; justify-content: flex-start; }
  .robbs-product-location-head { display: none; }
  .robbs-product-location-row,
  .robbs-modal-locations > span { grid-template-columns: 1fr; }
  .robbs-modal-locations small { grid-column: auto; }
}

/* WooCommerce single products: the complete content column owns the mobile width. */
@media (max-width: 767px) {
  .single-product .woocommerce,
  .single-product .woocommerce div.product,
  .woocommerce-page.single-product div.product {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .woocommerce div.product div.images,
  .woocommerce-page div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    clear: both;
    box-sizing: border-box;
  }

  .woocommerce div.product div.summary {
    margin-top: 28px;
  }

  .woocommerce div.product .woocommerce-product-details__short-description,
  .woocommerce div.product form.cart,
  .woocommerce div.product .product_meta,
  .woocommerce div.product .robbs-product-course-details,
  .woocommerce div.product .robbs-product-location-table,
  .woocommerce div.product .woocommerce-tabs,
  .woocommerce div.product .woocommerce-tabs .panel,
  .woocommerce div.product .woocommerce-Tabs-panel,
  .woocommerce div.product #tab-description,
  .robbs-woo-builder-template,
  .robbs-woo-builder-template .robbs-woo-part,
  .robbs-woo-builder-template .vc_row,
  .robbs-woo-builder-template .wpb_column,
  .robbs-woo-builder-template .vc_column-inner,
  .robbs-woo-builder-template .wpb_wrapper {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-right: 0;
    margin-left: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
  }

  .woocommerce div.product .woocommerce-tabs {
    clear: both;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    box-sizing: border-box;
    scrollbar-width: thin;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    flex: 0 0 auto;
  }

  .woocommerce div.product .woocommerce-Tabs-panel > :first-child,
  .woocommerce div.product .woocommerce-product-details__short-description > :first-child { margin-top: 0; }
  .woocommerce div.product .woocommerce-Tabs-panel > :last-child,
  .woocommerce div.product .woocommerce-product-details__short-description > :last-child { margin-bottom: 0; }
}

/* Native WordPress news cards and incremental loading. */
.robbs-news-section {
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background: #fff;
}

.robbs-news-section.is-soft {
  background:
    radial-gradient(circle at 8% 10%, rgba(144, 224, 239, .28), transparent 29%),
    linear-gradient(180deg, #f6fcfd 0%, #eaf8fb 100%);
}

.robbs-news-section.is-blue {
  color: #fff;
  background:
    radial-gradient(circle at 85% 5%, rgba(144, 224, 239, .24), transparent 30%),
    linear-gradient(145deg, #0f2a4a 0%, #006d9f 100%);
}

.robbs-news-inner { position: relative; }

.robbs-news-heading {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 56px);
  text-align: center;
}

.robbs-news-heading .eyebrow-pill { margin: 0 auto 18px; }
.robbs-news-heading h2 { margin: 0; color: var(--marine); }
.robbs-news-heading > p { max-width: 700px; margin: 18px auto 0; color: #5f7184; font-size: 18px; line-height: 1.7; }
.robbs-news-section.is-blue .robbs-news-heading h2,
.robbs-news-section.is-blue .robbs-news-heading > p { color: #fff; }
.robbs-news-section.is-blue .robbs-news-heading > p { opacity: .83; }

.robbs-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
}

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

.robbs-news-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(15, 42, 74, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 42, 74, .09);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.robbs-news-card:hover {
  border-color: rgba(0, 119, 182, .25);
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(15, 42, 74, .15);
}

.robbs-news-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #dceff4;
}

.robbs-news-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 74, .16));
  content: "";
  pointer-events: none;
}

.robbs-news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.robbs-news-card:hover .robbs-news-card-media img { transform: scale(1.035); }

.robbs-news-card-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(21px, 2.2vw, 28px);
}

.robbs-news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
  color: #708196;
  font-size: 12px;
  font-weight: 750;
}

.robbs-news-card-meta span {
  overflow: hidden;
  max-width: 65%;
  border-radius: 999px;
  padding: 6px 10px;
  color: #006d9f;
  background: #e3f7fa;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.robbs-news-card-title { margin: 0; color: var(--marine); line-height: 1.25; }
.robbs-news-card-title a { color: inherit; text-decoration: none; }
.robbs-news-card-title a:hover { color: var(--water); }
.robbs-news-card p { margin: 14px 0 22px; color: #5d6e80; line-height: 1.65; }

.robbs-news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--water);
  font-weight: 800;
  text-decoration: none;
}

.robbs-news-read-more svg { transition: transform .2s ease; }
.robbs-news-read-more:hover svg { transform: translateX(4px); }
.robbs-news-more { display: flex; justify-content: center; margin-top: 42px; }
.robbs-news-more .primary-button,
.robbs-news-more .secondary-button { min-width: 190px; justify-content: center; }
.robbs-news-more .primary-button svg,
.robbs-news-more .secondary-button svg { flex: 0 0 auto; transition: transform .2s ease; }
.robbs-news-more .primary-button:hover svg,
.robbs-news-more .secondary-button:hover svg { transform: translateX(3px); }
.robbs-news-more .is-loading { cursor: wait; opacity: .72; }
.robbs-news-status { min-height: 1.5em; margin: 15px 0 0; color: #5e7183; text-align: center; font-size: 14px; }
.robbs-news-section.is-blue .robbs-news-status { color: rgba(255, 255, 255, .8); }
.robbs-news-empty { margin: 0; border: 1px dashed #bad7e1; border-radius: 20px; padding: 34px; color: #63788b; background: rgba(255, 255, 255, .7); text-align: center; }

@keyframes robbs-news-card-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.robbs-news-card.is-new { animation: robbs-news-card-in .45s ease both; }

@media (max-width: 1100px) {
  .robbs-news-grid,
  .robbs-news-grid.columns-3,
  .robbs-news-grid.columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .robbs-news-section { padding: 64px 0; }
  .robbs-news-grid,
  .robbs-news-grid.columns-2,
  .robbs-news-grid.columns-3,
  .robbs-news-grid.columns-4 { grid-template-columns: 1fr; }
  .robbs-news-card { border-radius: 20px; }
  .robbs-news-card-body { padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .robbs-news-card,
  .robbs-news-card-media img,
  .robbs-news-read-more svg { transition: none; }
  .robbs-news-card.is-new { animation: none; }
}

/* Native, owner-editable FAQ page and WPBakery element. */
.robbs-faq-page .standard-content {
  padding-top: 0;
  padding-bottom: 0;
}

.robbs-faq-page .robbs-content-boundary {
  width: 100%;
  max-width: none;
}

.robbs-faq-section {
  overflow: hidden;
  padding: clamp(72px, 8vw, 112px) 0;
  background: #fff;
}

.robbs-faq-section.is-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(144, 224, 239, .3), transparent 30%),
    linear-gradient(180deg, #f7fcfd 0%, #eaf8fb 100%);
}

.robbs-faq-section.is-blue {
  color: #fff;
  background:
    radial-gradient(circle at 88% 8%, rgba(144, 224, 239, .24), transparent 31%),
    linear-gradient(145deg, #0f2a4a 0%, #006d9f 100%);
}

.robbs-faq-heading {
  max-width: 820px;
  margin: 0 auto clamp(34px, 5vw, 54px);
  text-align: center;
}

.robbs-faq-heading .eyebrow-pill { margin: 0 auto 18px; }
.robbs-faq-heading h2 { margin: 0; color: var(--marine); }
.robbs-faq-heading > p { max-width: 700px; margin: 18px auto 0; color: #5f7184; font-size: 18px; line-height: 1.7; }
.robbs-faq-section.is-blue .robbs-faq-heading h2,
.robbs-faq-section.is-blue .robbs-faq-heading > p { color: #fff; }
.robbs-faq-section.is-blue .robbs-faq-heading > p { opacity: .84; }

.robbs-faq-list {
  display: grid;
  max-width: 960px;
  gap: 15px;
  margin: 0 auto;
}

.robbs-faq-list.columns-2 {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.robbs-faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 42, 74, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 35px rgba(15, 42, 74, .07);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.robbs-faq-item[open] {
  border-color: rgba(0, 119, 182, .3);
  box-shadow: 0 18px 44px rgba(15, 42, 74, .12);
}

.robbs-faq-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: clamp(19px, 2.4vw, 26px);
  color: var(--marine);
  cursor: pointer;
  list-style: none;
}

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

.robbs-faq-item .robbs-faq-question {
  margin: 0 !important;
  color: inherit;
  font-size: clamp(17px, 1.6vw, 21px) !important;
  font-weight: 850 !important;
  line-height: 1.35 !important;
}

.robbs-faq-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #006d9f;
  background: #dff6fa;
  font-size: 12px;
  font-weight: 900;
}

.robbs-faq-toggle {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--water);
  background: color-mix(in srgb, var(--cyan) 25%, white);
}

.robbs-faq-toggle svg {
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.robbs-faq-item[open] .robbs-faq-toggle svg { transform: rotate(0); }

.robbs-faq-answer {
  border-top: 1px solid rgba(15, 42, 74, .08);
  padding: 0 clamp(24px, 4.5vw, 62px) clamp(24px, 3vw, 34px);
  color: #53687b;
  line-height: 1.72;
}

.robbs-faq-answer::before {
  display: block;
  height: 22px;
  content: "";
}

.robbs-faq-answer > :first-child { margin-top: 0; }
.robbs-faq-answer > :last-child { margin-bottom: 0; }
.robbs-faq-answer a { color: var(--water); font-weight: 750; }
.robbs-faq-answer li + li { margin-top: 7px; }
.robbs-faq-empty { max-width: 760px; margin: 0 auto; border: 1px dashed #afd5df; border-radius: 20px; padding: 32px; color: #63788b; background: rgba(255,255,255,.72); text-align: center; }

.robbs-faq-section.is-blue .robbs-faq-item { border-color: rgba(255,255,255,.15); }

@media (max-width: 760px) {
  .robbs-faq-section { padding: 64px 0; }
  .robbs-faq-list.columns-2 { grid-template-columns: 1fr; }
  .robbs-faq-item { border-radius: 17px; }
  .robbs-faq-item summary { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; padding: 19px; }
  .robbs-faq-number { display: none; }
  .robbs-faq-answer { padding: 0 20px 22px; }
}

@media (max-width: 700px) {
  .robbs-booking-children,
  .robbs-booking-person,
  .robbs-product-request-panel { padding: 16px; }
  .robbs-booking-child { padding: 15px; }
  .robbs-booking-child-grid,
  .robbs-booking-person-grid,
  .robbs-product-request-grid { grid-template-columns: 1fr; }
  .robbs-booking-child-grid .is-full,
  .robbs-booking-person-grid .is-full,
  .robbs-product-request-grid .is-full { grid-column: auto; }
  .robbs-family-price-summary p { flex-direction: column; gap: 4px; }
  .robbs-family-price-summary p strong { text-align: left; }
  .robbs-water-behaviour > div,
  .robbs-previous-course > div { align-items: stretch; flex-direction: column; }
  .robbs-water-behaviour label span,
  .robbs-previous-course label span { width: 100%; box-sizing: border-box; text-align: center; }
}

@media (max-width: 1040px) {
  .robbs-contract-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .robbs-contract-benefit,
  .robbs-contract-benefit:nth-child(n + 4) { grid-column: auto; }
  .robbs-contract-benefit:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .robbs-advantages-row + .robbs-advantages-row { margin-top: 14px; }
  .robbs-contract-head { grid-template-columns: 1fr; gap: 20px; }
  .robbs-contract-badge { justify-self: start; }
  .robbs-contract-benefits { grid-template-columns: 1fr; }
  .robbs-contract-benefit,
  .robbs-contract-benefit:nth-child(n + 4),
  .robbs-contract-benefit:last-child:nth-child(odd) { grid-column: auto; }
  .robbs-contract-footer { align-items: stretch; flex-direction: column; }
  .robbs-contract-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .robbs-faq-item,
  .robbs-faq-toggle svg { transition: none; }
}


/* 3.4.18: Footer stacks cleanly on mobile instead of squeezing multiple columns side by side. */
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .site-footer .robbs-footer-element,
  .site-footer .contact-list,
  .site-footer .footer-brand,
  .site-footer .robbs-footer-element-widgets,
  .site-footer .robbs-footer-element-navigation,
  .site-footer .robbs-footer-element-course-links {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .robbs-template-footer-row,
  .robbs-template-footer-row.vc_row {
    width: min(100% - 30px, var(--robbs-content-width, 1180px));
  }

  .robbs-template-footer-row > .wpb_column,
  .robbs-template-footer-row > .vc_column_container,
  .robbs-template-footer-row > [class*="vc_col-"] {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .robbs-template-footer-row > .wpb_column + .wpb_column,
  .robbs-template-footer-row > .vc_column_container + .vc_column_container,
  .robbs-template-footer-row > [class*="vc_col-"] + [class*="vc_col-"] {
    margin-top: 22px;
  }

  .robbs-template-footer-row > .wpb_column > .vc_column-inner,
  .robbs-template-footer-row > .vc_column_container > .vc_column-inner,
  .robbs-template-footer-row > [class*="vc_col-"] > .vc_column-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}


/* 3.4.25: Wartelisten-Hinweis bleibt mobil kompakt und gut lesbar. */
@media (max-width: 700px) {
  .robbs-course-booking-notice {
    align-items: flex-start;
    margin-top: -16px;
    margin-bottom: 22px;
    padding: 13px 14px;
    font-size: 13px;
  }
}
