:root {
  --csurf-black: #0d0d11;
  --csurf-ink: #19191f;
  --csurf-graphite: #34343b;
  --csurf-grey: #676972;
  --csurf-border: #dcdde2;
  --csurf-silver: #e8e9ee;
  --csurf-cloud: #f5f5f7;
  --csurf-white: #fff;
  --csurf-magenta: #e6007e;
  --csurf-magenta-dark: #b80065;
  --csurf-magenta-soft: #ffe6f4;
  --csurf-success: #18733b;
  --csurf-container: 1380px;
  --csurf-shadow: 0 24px 64px rgba(13, 13, 17, 0.12);
  --csurf-radius: 28px;
  --csurf-font: "Segoe UI", Inter, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--csurf-white);
  color: var(--csurf-ink);
  font-family: var(--csurf-font);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}

body.csurf-overlay-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--csurf-magenta-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--csurf-magenta);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--csurf-magenta);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  color: var(--csurf-black);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-block: 0 0.6em;
}

p {
  margin-block: 0 1em;
}

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

.csurf-container {
  margin-inline: auto;
  max-width: var(--csurf-container);
  padding-inline: clamp(20px, 4vw, 64px);
  width: 100%;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--csurf-white);
  clip: auto !important;
  clip-path: none;
  color: var(--csurf-black);
  display: block;
  font-size: 0.95rem;
  height: auto;
  left: 10px;
  padding: 14px 20px;
  top: 10px;
  width: auto;
  z-index: 100000;
}

.csurf-skip-link {
  left: -9999px;
  position: fixed;
  top: 8px;
  z-index: 10000;
}

.csurf-skip-link:focus {
  background: var(--csurf-white);
  color: var(--csurf-black);
  left: 8px;
  padding: 12px 18px;
}

.csurf-kicker {
  color: var(--csurf-magenta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.csurf-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wp-block-button__link,
.sdcs-button {
  align-items: center;
  background: var(--csurf-magenta);
  border: 1px solid var(--csurf-magenta);
  border-radius: 999px;
  color: var(--csurf-white) !important;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 750;
  gap: 11px;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.csurf-button svg,
.csurf-text-link svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.csurf-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.sdcs-button:hover {
  background: var(--csurf-magenta-dark);
  border-color: var(--csurf-magenta-dark);
  color: var(--csurf-white) !important;
  transform: translateY(-1px);
}

.csurf-button--ghost {
  background: transparent;
  border-color: currentColor;
}

.csurf-button--outline {
  background: var(--csurf-white);
  border-color: var(--csurf-border);
  color: var(--csurf-black) !important;
}

.csurf-text-link {
  align-items: center;
  color: var(--csurf-black);
  display: inline-flex;
  font-weight: 750;
  gap: 9px;
  text-decoration: none;
}

.csurf-text-link:hover {
  color: var(--csurf-magenta-dark);
}

/* Header */
.csurf-site-header {
  background: var(--csurf-white);
  position: relative;
  z-index: 500;
}

.csurf-topbar {
  background: var(--csurf-black);
  color: #d8d8de;
  font-size: 0.77rem;
  letter-spacing: 0.02em;
}

.csurf-topbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 34px;
}

.csurf-topbar p {
  margin: 0;
}

.csurf-topbar__inner > div {
  display: flex;
  gap: 22px;
}

.csurf-topbar a {
  color: var(--csurf-white);
  text-decoration: none;
}

.csurf-header-main {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(13, 13, 17, 0.09);
  position: sticky;
  top: 0;
}

.admin-bar .csurf-header-main {
  top: 32px;
}

.csurf-header-main__inner {
  align-items: center;
  display: flex;
  gap: clamp(24px, 3vw, 54px);
  min-height: 92px;
}

.csurf-brand {
  align-items: center;
  color: var(--csurf-black);
  display: inline-flex;
  flex: 0 0 auto;
  gap: 15px;
  text-decoration: none;
}

.csurf-brand > img {
  height: 58px;
  object-fit: contain;
  width: 84px;
}

.csurf-brand > span {
  border-left: 1px solid var(--csurf-border);
  display: grid;
  gap: 1px;
  padding-left: 14px;
}

.csurf-brand strong {
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}

.csurf-brand small {
  color: var(--csurf-grey);
  font-size: 0.68rem;
}

.csurf-primary-nav {
  margin-left: auto;
}

.csurf-menu {
  align-items: center;
  display: flex;
  gap: clamp(16px, 1.55vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.csurf-menu a {
  color: var(--csurf-graphite);
  display: block;
  font-size: 0.84rem;
  font-weight: 650;
  padding-block: 34px;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.csurf-menu a::after {
  background: var(--csurf-magenta);
  bottom: 20px;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) scaleX(0);
  transition: transform 180ms ease;
  width: 100%;
}

.csurf-menu a:hover,
.csurf-menu .current-menu-item > a {
  color: var(--csurf-magenta-dark);
}

.csurf-menu a:hover::after,
.csurf-menu .current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1);
}

.csurf-header-actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.csurf-icon-button,
.csurf-menu-toggle,
.csurf-mobile-nav__head button,
.csurf-search-dialog__head button,
.csurf-shop-filters__head button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--csurf-black);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 44px;
}

.csurf-icon-button:hover,
.csurf-menu-toggle:hover {
  background: var(--csurf-cloud);
  color: var(--csurf-magenta-dark);
}

.csurf-icon-button svg,
.csurf-menu-toggle svg,
.csurf-mobile-nav__head svg,
.csurf-search-dialog__head svg,
.csurf-shop-filters__head svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}

.csurf-cart-count {
  align-items: center;
  background: var(--csurf-magenta);
  border: 2px solid var(--csurf-white);
  border-radius: 50%;
  color: var(--csurf-white);
  display: flex;
  font-size: 0.62rem;
  font-weight: 800;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 1px;
  width: 20px;
}

.csurf-menu-toggle {
  border-radius: 999px;
  display: none;
  font-size: 0.8rem;
  font-weight: 750;
  gap: 8px;
  padding-inline: 14px;
  width: auto;
}

.csurf-mobile-nav__head,
.csurf-mobile-nav__contact,
.csurf-nav-backdrop {
  display: none;
}

/* Search overlay */
.csurf-search-dialog {
  inset: 0;
  position: fixed;
  z-index: 1000;
}

.csurf-search-dialog[hidden] {
  display: none;
}

.csurf-search-dialog__backdrop {
  background: rgba(13, 13, 17, 0.72);
  inset: 0;
  position: absolute;
}

.csurf-search-dialog__panel {
  background: var(--csurf-white);
  border-radius: 0 0 36px 36px;
  box-shadow: var(--csurf-shadow);
  margin-inline: auto;
  max-height: 90vh;
  overflow: auto;
  padding: clamp(30px, 5vw, 70px) clamp(24px, 7vw, 110px);
  position: relative;
  width: min(1180px, 100%);
}

.csurf-search-dialog__head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.csurf-search-dialog__head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.csurf-live-search label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 9px;
}

.csurf-live-search__field {
  align-items: center;
  border-bottom: 2px solid var(--csurf-black);
  display: flex;
  gap: 12px;
}

.csurf-live-search__field > svg {
  fill: none;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  width: 28px;
}

.csurf-live-search__field input {
  border: 0;
  color: var(--csurf-black);
  flex: 1;
  font-size: clamp(1.2rem, 3vw, 2rem);
  min-width: 0;
  outline: 0;
  padding: 16px 0;
}

.csurf-live-search__field button {
  background: var(--csurf-black);
  border: 0;
  border-radius: 999px;
  color: var(--csurf-white);
  font-weight: 700;
  padding: 12px 22px;
}

.csurf-search-shortcuts {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.csurf-search-shortcuts span {
  color: var(--csurf-grey);
  font-size: 0.82rem;
}

.csurf-search-shortcuts a {
  background: var(--csurf-cloud);
  border-radius: 999px;
  color: var(--csurf-black);
  font-size: 0.82rem;
  font-weight: 650;
  padding: 7px 14px;
  text-decoration: none;
}

.csurf-search-results {
  margin-top: 12px;
}

.csurf-search-results ul {
  display: grid;
  gap: 1px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.csurf-search-results li {
  border-bottom: 1px solid var(--csurf-border);
}

.csurf-search-results a {
  align-items: center;
  color: var(--csurf-black);
  display: flex;
  gap: 15px;
  padding: 12px 4px;
  text-decoration: none;
}

.csurf-search-results img {
  background: var(--csurf-cloud);
  height: 64px;
  object-fit: contain;
  width: 64px;
}

.csurf-search-results a > span {
  display: grid;
}

.csurf-search-results small,
.csurf-search-message {
  color: var(--csurf-grey);
}

/* Hero */
.csurf-hero {
  background: var(--csurf-black);
  min-height: 680px;
  position: relative;
}

.csurf-hero__slide {
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.csurf-hero__slide[hidden] {
  display: none;
}

.csurf-hero__slide--dark {
  background: radial-gradient(circle at 78% 22%, rgba(230, 0, 126, 0.2), transparent 30%), linear-gradient(125deg, #0d0d11 0%, #17171e 68%, #24242c 100%);
  color: #e6e6eb;
}

.csurf-hero__slide--light {
  background: radial-gradient(circle at 25% 10%, #ffe4f2 0, transparent 32%), linear-gradient(135deg, #fff 0%, #f0f0f3 100%);
  color: var(--csurf-graphite);
}

.csurf-hero__slide--silver {
  background: linear-gradient(125deg, #d8d9de 0%, #f7f7f8 52%, #fff 100%);
  color: var(--csurf-graphite);
}

.csurf-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 82px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 680px;
  padding-bottom: 86px;
  padding-top: 68px;
}

.csurf-hero__copy {
  max-width: 660px;
  position: relative;
  z-index: 2;
}

.csurf-hero__eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 13px;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.csurf-hero__eyebrow span {
  align-items: center;
  background: var(--csurf-magenta);
  border-radius: 50%;
  color: var(--csurf-white);
  display: flex;
  height: 33px;
  justify-content: center;
  letter-spacing: 0;
  width: 33px;
}

.csurf-hero h2 {
  color: inherit;
  font-size: clamp(3.4rem, 6.8vw, 6.7rem);
  letter-spacing: -0.065em;
  line-height: 0.93;
  margin-bottom: 26px;
}

.csurf-hero__text {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  max-width: 610px;
}

.csurf-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.csurf-hero__slide--light .csurf-button--ghost,
.csurf-hero__slide--silver .csurf-button--ghost {
  color: var(--csurf-black) !important;
}

.csurf-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}

.csurf-hero__facts span {
  align-items: center;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 650;
  gap: 7px;
}

.csurf-hero__facts svg {
  fill: none;
  height: 17px;
  stroke: var(--csurf-magenta);
  stroke-width: 2;
  width: 17px;
}

.csurf-hero__product {
  min-width: 0;
  position: relative;
}

.csurf-hero__product-frame {
  align-items: center;
  aspect-ratio: 1.12;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 44% 56% 54% 46% / 38% 42% 58% 62%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
}

.csurf-hero__slide--light .csurf-hero__product-frame,
.csurf-hero__slide--silver .csurf-hero__product-frame {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(13, 13, 17, 0.08);
}

.csurf-hero__product-frame > img {
  height: 92%;
  object-fit: contain;
  position: relative;
  transform: rotate(2deg) scale(1.04);
  width: 92%;
  z-index: 2;
}

.csurf-product-orbit {
  inset: 8%;
  pointer-events: none;
  position: absolute;
}

.csurf-product-orbit span {
  border: 1px solid rgba(230, 0, 126, 0.22);
  border-radius: 50%;
  inset: 0;
  position: absolute;
}

.csurf-product-orbit span:nth-child(2) {
  inset: 12%;
}

.csurf-product-orbit span:nth-child(3) {
  inset: 24%;
}

.csurf-hero__product-note {
  backdrop-filter: blur(14px);
  background: rgba(13, 13, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  bottom: 3%;
  color: var(--csurf-white);
  display: grid;
  padding: 14px 18px;
  position: absolute;
  right: 1%;
  z-index: 4;
}

.csurf-hero__product-note span {
  color: #b7b7bf;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.csurf-hero__product-note strong {
  font-size: 0.9rem;
}

.csurf-hero__controls {
  align-items: center;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 20;
}

.csurf-carousel-dots,
.csurf-carousel-actions {
  align-items: center;
  display: flex;
  gap: 8px;
}

.csurf-carousel-dots button,
.csurf-carousel-actions button {
  align-items: center;
  background: rgba(13, 13, 17, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--csurf-white);
  display: flex;
  font-size: 0.72rem;
  height: 42px;
  justify-content: center;
  min-width: 42px;
  padding: 0 13px;
}

.csurf-carousel-dots button {
  height: 11px;
  min-width: 11px;
  padding: 0;
  width: 11px;
}

.csurf-carousel-dots button[aria-current="true"] {
  background: var(--csurf-magenta);
  border-color: var(--csurf-magenta);
  width: 34px;
}

.csurf-carousel-actions svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  width: 17px;
}

.csurf-carousel-actions [data-carousel-prev] svg {
  transform: rotate(180deg);
}

/* Assurances and sections */
.csurf-assurance {
  background: var(--csurf-white);
  border-bottom: 1px solid var(--csurf-border);
}

.csurf-assurance__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 20px;
}

.csurf-assurance__grid > div {
  align-items: center;
  border-right: 1px solid var(--csurf-border);
  display: flex;
  gap: 13px;
  padding: 5px clamp(12px, 2vw, 28px);
}

.csurf-assurance__grid > div:first-child {
  padding-left: 0;
}

.csurf-assurance__grid > div:last-child {
  border-right: 0;
}

.csurf-assurance svg {
  fill: none;
  flex: 0 0 auto;
  height: 25px;
  stroke: var(--csurf-magenta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 25px;
}

.csurf-assurance span {
  display: grid;
}

.csurf-assurance strong {
  font-size: 0.8rem;
}

.csurf-assurance small {
  color: var(--csurf-grey);
  font-size: 0.67rem;
}

.csurf-section {
  padding-block: clamp(72px, 9vw, 130px);
}

.csurf-section-heading {
  align-items: flex-end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.csurf-section-heading > div {
  max-width: 760px;
}

.csurf-section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.csurf-section-heading > div > p:last-child,
.csurf-section-heading--center > p:last-child {
  color: var(--csurf-grey);
  font-size: 1.08rem;
  max-width: 680px;
}

.csurf-section-heading--center {
  align-items: center;
  flex-direction: column;
  margin-inline: auto;
  max-width: 850px;
  text-align: center;
}

/* Discovery */
.csurf-discover {
  background: var(--csurf-cloud);
}

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

.csurf-discover-card {
  background: var(--csurf-white);
  border: 1px solid rgba(13, 13, 17, 0.08);
  border-radius: var(--csurf-radius);
  color: var(--csurf-black);
  display: grid;
  min-height: 510px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  position: relative;
  text-decoration: none;
}

.csurf-discover-card--laptop {
  background: var(--csurf-black);
  color: var(--csurf-white);
}

.csurf-discover-card > div {
  position: relative;
  z-index: 2;
}

.csurf-card-index {
  color: var(--csurf-magenta);
  font-size: 0.75rem;
  font-weight: 800;
}

.csurf-discover-card p {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 20px 0 5px;
  text-transform: uppercase;
}

.csurf-discover-card h3 {
  color: inherit;
  font-size: clamp(2rem, 4vw, 4rem);
}

.csurf-discover-card > img {
  bottom: -4%;
  height: 68%;
  object-fit: contain;
  position: absolute;
  right: -7%;
  transition: transform 350ms ease;
  width: 78%;
}

.csurf-discover-card:hover > img {
  transform: scale(1.035) translateY(-4px);
}

.csurf-card-link {
  align-items: center;
  display: inline-flex;
  font-size: 0.85rem;
  font-weight: 750;
  gap: 9px;
}

.csurf-card-link svg,
.csurf-discover-stack svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 19px;
}

.csurf-discover-stack {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
}

.csurf-discover-stack a {
  align-items: center;
  background: var(--csurf-white);
  border: 1px solid rgba(13, 13, 17, 0.08);
  border-radius: 19px;
  color: var(--csurf-black);
  display: flex;
  gap: 16px;
  min-height: 112px;
  padding: 22px;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.csurf-discover-stack a:hover {
  border-color: var(--csurf-magenta);
  transform: translateY(-3px);
}

.csurf-discover-stack a > svg:first-child {
  color: var(--csurf-magenta);
  height: 28px;
  width: 28px;
}

.csurf-discover-stack a > svg:last-child {
  margin-left: auto;
}

.csurf-discover-stack span {
  display: grid;
}

.csurf-discover-stack small {
  color: var(--csurf-grey);
  font-size: 0.7rem;
}

.csurf-discover-stack strong {
  font-size: 1.04rem;
}

/* Product catalogue */
.csurf-product-section:nth-of-type(even) {
  background: var(--csurf-cloud);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  gap: clamp(16px, 2.2vw, 30px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--csurf-white);
  border: 1px solid var(--csurf-border);
  border-radius: 22px;
  display: flex;
  float: none;
  flex-direction: column;
  margin: 0 !important;
  overflow: hidden;
  padding: 0 0 22px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: auto !important;
}

.woocommerce ul.products li.product:hover {
  border-color: rgba(230, 0, 126, 0.42);
  box-shadow: 0 18px 38px rgba(13, 13, 17, 0.09);
  transform: translateY(-5px);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  color: var(--csurf-black);
  display: block;
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1;
  background: #f3f3f5;
  height: auto;
  margin: 0 0 18px;
  object-fit: contain;
  padding: 13px;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
  min-height: 2.5em;
  padding: 0 20px;
}

.csurf-product-card__meta {
  color: var(--csurf-grey);
  display: grid;
  font-size: 0.67rem;
  gap: 1px;
  margin: 8px 20px 4px;
}

.woocommerce ul.products li.product .price {
  color: var(--csurf-black);
  font-size: 1.06rem;
  font-weight: 800;
  margin: 10px 20px 14px;
}

.woocommerce ul.products li.product .button {
  align-self: flex-start;
  margin: auto 20px 0;
  min-height: 42px;
  padding: 9px 16px;
}

/* Keep every WooCommerce purchase action unmistakably Cool Side pink. */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product form.cart button.button.alt,
.woocommerce ul.products li.product a.button.add_to_cart_button,
.woocommerce ul.products li.product a.button.product_type_simple,
.woocommerce a.added_to_cart,
.wc-block-components-product-button__button,
.wc-block-cart__submit-button {
  background: var(--csurf-magenta) !important;
  background-image: none !important;
  border-color: var(--csurf-magenta) !important;
  color: var(--csurf-white) !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce div.product form.cart button.button.alt:hover,
.woocommerce ul.products li.product a.button.add_to_cart_button:hover,
.woocommerce ul.products li.product a.button.product_type_simple:hover,
.woocommerce a.added_to_cart:hover,
.wc-block-components-product-button__button:hover,
.wc-block-cart__submit-button:hover {
  background: var(--csurf-magenta-dark) !important;
  border-color: var(--csurf-magenta-dark) !important;
  color: var(--csurf-white) !important;
}

.woocommerce span.onsale {
  background: var(--csurf-magenta);
  border-radius: 999px;
  font-size: 0.68rem;
  left: 14px;
  line-height: 1;
  min-height: 0;
  min-width: 0;
  padding: 8px 11px;
  right: auto;
  top: 14px;
}

/* Guidance and business panels */
.csurf-guidance {
  background: var(--csurf-black);
  color: #d8d8de;
}

.csurf-guidance__grid {
  display: grid;
  gap: clamp(42px, 8vw, 120px);
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.csurf-guidance h2 {
  color: var(--csurf-white);
  font-size: clamp(2.7rem, 5.5vw, 5.5rem);
}

.csurf-guidance__copy > p:not(.csurf-kicker) {
  font-size: 1.1rem;
  max-width: 600px;
}

.csurf-guidance__paths {
  border-top: 1px solid #3b3b43;
}

.csurf-guidance__paths a {
  align-items: center;
  border-bottom: 1px solid #3b3b43;
  color: var(--csurf-white);
  display: grid;
  gap: 20px;
  grid-template-columns: 42px 1fr 24px;
  padding: 25px 4px;
  text-decoration: none;
}

.csurf-guidance__paths a:hover {
  color: #ff87ca;
}

.csurf-guidance__paths a > span {
  color: var(--csurf-magenta);
  font-size: 0.72rem;
  font-weight: 800;
}

.csurf-guidance__paths div {
  display: grid;
}

.csurf-guidance__paths small {
  color: #a8a8b1;
}

.csurf-guidance__paths svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.7;
  width: 19px;
}

.csurf-enterprise {
  background: var(--csurf-cloud);
}

.csurf-enterprise__panel {
  align-items: center;
  background: var(--csurf-white);
  border-radius: 34px;
  box-shadow: var(--csurf-shadow);
  display: grid;
  gap: clamp(32px, 6vw, 86px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  overflow: hidden;
  padding: 0;
}

.csurf-enterprise__image {
  align-items: center;
  align-self: stretch;
  background: linear-gradient(145deg, #ededf0, #d6d7dc);
  display: flex;
  min-height: 560px;
  overflow: hidden;
}

.csurf-enterprise__image img {
  object-fit: contain;
  transform: scale(1.12) translateX(-2%);
  width: 110%;
}

.csurf-enterprise__copy {
  padding: clamp(42px, 6vw, 82px) clamp(28px, 6vw, 90px) clamp(42px, 6vw, 82px) 0;
}

.csurf-enterprise__copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.csurf-enterprise__copy ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 25px 0;
  padding: 0;
}

.csurf-enterprise__copy li {
  align-items: center;
  display: flex;
  gap: 9px;
}

.csurf-enterprise__copy li svg {
  fill: none;
  height: 19px;
  stroke: var(--csurf-magenta);
  stroke-width: 2;
  width: 19px;
}

/* Shared banners and editorial */
.csurf-page-banner {
  background: var(--csurf-black);
  color: #d7d7dd;
  overflow: hidden;
}

.csurf-page-banner__inner {
  align-items: center;
  display: grid;
  gap: clamp(35px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  min-height: 410px;
  padding-bottom: 48px;
  padding-top: 48px;
}

.csurf-page-banner h1,
.csurf-page-banner h2 {
  color: var(--csurf-white);
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.06em;
  line-height: 0.95;
  max-width: 800px;
}

.csurf-page-banner__copy > p:last-child {
  font-size: 1.03rem;
  max-width: 650px;
}

.csurf-breadcrumbs {
  align-items: center;
  color: #a9a9b1;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.72rem;
  gap: 9px;
  margin-bottom: 28px;
}

.csurf-breadcrumbs a {
  color: var(--csurf-white);
  text-decoration: none;
}

.csurf-page-banner__visual {
  align-items: center;
  aspect-ratio: 1.45;
  background: #efeff1;
  border-radius: 48% 52% 46% 54% / 43% 38% 62% 57%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.csurf-page-banner__visual img {
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 2;
}

.csurf-page-banner__visual > div span {
  border: 1px solid rgba(230, 0, 126, 0.25);
  border-radius: 50%;
  inset: 14%;
  position: absolute;
}

.csurf-page-banner__visual > div span:last-child {
  inset: 27%;
}

.csurf-content-shell {
  max-width: 1000px;
  padding-bottom: clamp(70px, 10vw, 130px);
  padding-top: clamp(55px, 8vw, 100px);
}

.csurf-content-shell--wide {
  max-width: var(--csurf-container);
}

.csurf-page-content > *:first-child,
.csurf-entry__content > *:first-child {
  margin-top: 0;
}

.csurf-page-content h2,
.csurf-entry__content h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin-top: 1.5em;
}

.csurf-page-content :where(input, select, textarea),
.csurf-comments :where(input, textarea) {
  border: 1px solid var(--csurf-border);
  border-radius: 12px;
  max-width: 100%;
  min-height: 48px;
  padding: 11px 13px;
}

.csurf-page-content textarea,
.csurf-comments textarea {
  width: 100%;
}

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

.csurf-entry {
  border: 1px solid var(--csurf-border);
  border-radius: 22px;
  overflow: hidden;
}

.csurf-entry__image img {
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  width: 100%;
}

.csurf-entry__body {
  padding: 28px;
}

.csurf-entry__body h2 {
  font-size: 1.7rem;
}

.csurf-entry__body h2 a {
  color: inherit;
  text-decoration: none;
}

.csurf-entry__meta {
  color: var(--csurf-magenta-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.csurf-empty-state {
  background: var(--csurf-cloud);
  border-radius: var(--csurf-radius);
  padding: clamp(30px, 5vw, 64px);
}

.csurf-search-form {
  align-items: center;
  border: 1px solid var(--csurf-border);
  border-radius: 14px;
  display: flex;
  margin: 24px 0;
  max-width: 640px;
  padding-right: 6px;
}

.csurf-search-form label {
  flex: 1;
}

.csurf-search-form label span {
  display: none;
}

.csurf-search-form input {
  border: 0;
  min-height: 52px;
  padding: 10px 14px;
  width: 100%;
}

.csurf-search-form button {
  background: var(--csurf-black);
  border: 0;
  border-radius: 10px;
  color: var(--csurf-white);
  height: 42px;
  width: 42px;
}

.csurf-search-form svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  width: 20px;
}

.csurf-404-links {
  padding-bottom: 110px;
  padding-top: 80px;
}

.csurf-404-links h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.csurf-404-links > div {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 35px;
}

.csurf-404-links a {
  align-items: center;
  border: 1px solid var(--csurf-border);
  border-radius: 16px;
  color: var(--csurf-black);
  display: flex;
  justify-content: space-between;
  padding: 22px;
  text-decoration: none;
}

.csurf-404-links svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  width: 19px;
}

/* WooCommerce views */
.csurf-commerce-shell {
  display: grid;
  gap: 38px;
  grid-template-columns: 250px minmax(0, 1fr);
  padding-bottom: 110px;
  padding-top: 72px;
}

.csurf-commerce-shell--product,
.csurf-commerce-shell--full {
  display: block;
}

.csurf-commerce-content {
  min-width: 0;
}

.csurf-shop-filters {
  align-self: start;
  background: var(--csurf-cloud);
  border-radius: 18px;
  padding: 22px;
}

.csurf-shop-filters__head {
  align-items: center;
  border-bottom: 1px solid var(--csurf-border);
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
}

.csurf-shop-filters__head button,
.csurf-filter-toggle {
  display: none;
}

.csurf-filter-widget + .csurf-filter-widget {
  border-top: 1px solid var(--csurf-border);
  margin-top: 20px;
  padding-top: 20px;
}

.csurf-filter-widget__title {
  font-size: 1rem;
}

.woocommerce .woocommerce-ordering select {
  background: var(--csurf-white);
  border: 1px solid var(--csurf-border);
  border-radius: 999px;
  min-height: 44px;
  padding: 8px 34px 8px 15px;
}

.woocommerce .woocommerce-result-count {
  color: var(--csurf-grey);
  font-size: 0.85rem;
  margin-top: 12px;
}

.woocommerce div.product {
  display: grid;
  gap: clamp(34px, 6vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  background: var(--csurf-cloud);
  border-radius: 24px;
  overflow: hidden;
}

.woocommerce div.product div.images img {
  object-fit: contain;
}

.woocommerce div.product .product_title {
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--csurf-black);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
}

.woocommerce div.product form.cart {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.woocommerce .quantity .qty {
  border: 1px solid var(--csurf-border);
  border-radius: 999px;
  min-height: 50px;
  padding: 8px;
  width: 76px;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related,
.woocommerce div.product .upsells {
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: var(--csurf-cloud);
  border-color: var(--csurf-border);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  background: var(--csurf-cloud);
  border-radius: 12px;
  border-top-color: var(--csurf-magenta);
  color: var(--csurf-black);
}

.woocommerce table.shop_table {
  border-color: var(--csurf-border);
  border-radius: 16px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 16px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  border: 1px solid var(--csurf-border);
  border-radius: 10px;
  min-height: 48px;
  padding: 10px 12px;
}

.woocommerce-checkout #payment {
  background: var(--csurf-cloud);
  border-radius: 16px;
}

/* Companion plugin integration */
.sdcs-contact-card {
  background: var(--csurf-white) !important;
  border: 1px solid var(--csurf-border) !important;
  border-radius: 24px !important;
  box-shadow: var(--csurf-shadow) !important;
	margin-inline: auto !important;
	max-width: 1320px !important;
	padding: clamp(20px, 3vw, 42px) !important;
}

.sdcs-contact-card__intro h2,
.sdcs-contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
}

.sdcs-contact-form input,
.sdcs-contact-form select,
.sdcs-contact-form textarea,
.sdcs-chat__lead-form input,
.sdcs-chat__lead-form select {
  border: 1px solid var(--csurf-border) !important;
  border-radius: 11px !important;
	min-height: 44px !important;
}

.sdcs-contact-centre__dock {
  bottom: 24px !important;
  left: 24px !important;
  right: auto !important;
}

.sdcs-contact-centre__action--primary,
.sdcs-chat__launcher {
  background: var(--csurf-magenta) !important;
}

.sdcs-chat__launcher {
  bottom: 24px !important;
  box-shadow: 0 14px 34px rgba(184, 0, 101, 0.3) !important;
  right: 24px !important;
}

.sdcs-chat__panel {
  border: 1px solid var(--csurf-border) !important;
  border-radius: 22px !important;
  bottom: 92px !important;
  box-shadow: var(--csurf-shadow) !important;
  max-height: min(680px, calc(100vh - 120px)) !important;
  right: 24px !important;
}

.sdcs-chat__header {
  background: var(--csurf-black) !important;
}

.sdcs-chat__header img {
  background: var(--csurf-white);
  border-radius: 8px;
  max-height: 48px;
  object-fit: contain;
  padding: 4px;
}

.sdcs-chat__message--user {
  background: var(--csurf-magenta) !important;
}

/* Footer */
.csurf-footer-cta {
  background: var(--csurf-magenta);
  color: var(--csurf-white);
}

.csurf-footer-cta__inner {
  align-items: center;
  display: flex;
  gap: 38px;
  justify-content: space-between;
  min-height: 240px;
  padding-block: 45px;
}

.csurf-footer-cta .csurf-kicker {
  color: var(--csurf-white);
  opacity: 0.78;
}

.csurf-footer-cta h2 {
  color: var(--csurf-white);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  margin: 0;
  max-width: 820px;
}

.csurf-footer-cta__inner > div:last-child {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.csurf-footer-cta .csurf-button {
  background: var(--csurf-black);
  border-color: var(--csurf-black);
}

.csurf-footer-cta .csurf-button--ghost {
  background: transparent;
  border-color: var(--csurf-white);
}

.csurf-site-footer {
  background: var(--csurf-black);
  color: #b9b9c1;
  padding-top: 70px;
}

.csurf-footer-grid {
  display: grid;
  gap: clamp(28px, 5vw, 75px);
  grid-template-columns: 1.6fr repeat(4, minmax(120px, 0.75fr));
  padding-bottom: 60px;
}

.csurf-footer-logo {
  background: var(--csurf-white);
  border-radius: 14px;
  display: inline-flex;
  margin-bottom: 24px;
  padding: 8px 14px;
}

.csurf-footer-logo img {
  height: 64px;
  object-fit: contain;
  width: 92px;
}

.csurf-footer-brand p {
  max-width: 360px;
}

.csurf-footer-brand > a {
  color: var(--csurf-white);
  display: block;
  text-decoration: none;
}

.csurf-footer-grid h2 {
  color: var(--csurf-white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.csurf-footer-grid ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.csurf-footer-grid li a {
  color: #b9b9c1;
  font-size: 0.83rem;
  text-decoration: none;
}

.csurf-footer-grid li a:hover {
  color: #ff84c8;
}

.csurf-footer-bottom {
  border-top: 1px solid #34343b;
  display: flex;
  font-size: 0.68rem;
  gap: 30px;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
}

.csurf-footer-bottom p {
  margin: 0;
}

@media (max-width: 1180px) {
  .csurf-brand > span,
  .csurf-account-link {
    display: none;
  }

  .csurf-menu {
    gap: 15px;
  }

  .csurf-menu a {
    font-size: 0.78rem;
  }

  .csurf-hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  }

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

  .csurf-footer-brand {
    grid-row: span 2;
  }
}

@media (max-width: 980px) {
  .csurf-topbar__inner > div {
    display: none;
  }

  .csurf-header-main__inner {
    min-height: 78px;
  }

  .csurf-brand > img {
    height: 50px;
    width: 73px;
  }

  .csurf-primary-nav {
    background: var(--csurf-white);
    box-shadow: -24px 0 60px rgba(13, 13, 17, 0.18);
    height: 100vh;
    margin: 0;
    max-width: 420px;
    overflow-y: auto;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 220ms ease;
    width: 88vw;
    z-index: 1002;
  }

  .csurf-primary-nav.is-open {
    transform: translateX(0);
  }

  .csurf-mobile-nav__head,
  .csurf-mobile-nav__contact {
    display: flex;
  }

  .csurf-mobile-nav__head {
    align-items: center;
    border-bottom: 1px solid var(--csurf-border);
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
  }

  .csurf-menu {
    align-items: stretch;
    display: grid;
    gap: 0;
  }

  .csurf-menu a {
    border-bottom: 1px solid var(--csurf-border);
    font-size: 1rem;
    padding: 17px 2px;
  }

  .csurf-menu a::after {
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    width: 48px;
  }

  .csurf-menu a:hover::after,
  .csurf-menu .current-menu-item > a::after {
    transform: scaleX(1);
  }

  .csurf-mobile-nav__contact {
    margin-top: 24px;
  }

  .csurf-mobile-nav__contact a {
    align-items: center;
    background: var(--csurf-black);
    border-radius: 15px;
    color: var(--csurf-white);
    display: flex;
    gap: 12px;
    padding: 16px;
    text-decoration: none;
    width: 100%;
  }

  .csurf-mobile-nav__contact svg {
    fill: none;
    height: 24px;
    stroke: var(--csurf-magenta);
    width: 24px;
  }

  .csurf-mobile-nav__contact span {
    display: grid;
  }

  .csurf-mobile-nav__contact small {
    color: #a9a9b1;
  }

  .csurf-nav-backdrop {
    background: rgba(13, 13, 17, 0.68);
    display: block;
    inset: 0;
    position: fixed;
    z-index: 1001;
  }

  .csurf-nav-backdrop[hidden] {
    display: none;
  }

  .csurf-menu-toggle {
    display: inline-flex;
  }

  .csurf-hero,
  .csurf-hero__slide,
  .csurf-hero__inner {
    min-height: 780px;
  }

  .csurf-hero__inner {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
    padding-top: 52px;
  }

  .csurf-hero h2 {
    max-width: 720px;
  }

  .csurf-hero__product {
    margin-inline: auto;
    max-width: 650px;
    width: 100%;
  }

  .csurf-hero__product-frame {
    aspect-ratio: 1.55;
  }

  .csurf-hero__product-frame > img {
    height: 110%;
  }

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

  .csurf-assurance__grid > div:nth-child(2) {
    border-right: 0;
  }

  .csurf-assurance__grid > div:nth-child(n + 3) {
    border-top: 1px solid var(--csurf-border);
    margin-top: 15px;
    padding-top: 20px;
  }

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

  .csurf-guidance__grid,
  .csurf-enterprise__panel,
  .csurf-page-banner__inner,
  .woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .csurf-enterprise__image {
    min-height: 430px;
  }

  .csurf-enterprise__copy {
    padding: 0 clamp(28px, 6vw, 70px) clamp(42px, 7vw, 72px);
  }

  .csurf-page-banner__visual {
    justify-self: center;
    max-width: 620px;
    width: 100%;
  }

  .csurf-page-banner__inner {
    padding-bottom: 55px;
    padding-top: 55px;
  }

  .csurf-commerce-shell {
    display: block;
  }

  .csurf-filter-toggle {
    display: inline-flex;
    margin-bottom: 25px;
  }

  .csurf-shop-filters {
    border-radius: 0;
    box-shadow: -22px 0 50px rgba(13, 13, 17, 0.18);
    height: 100vh;
    max-width: 390px;
    overflow-y: auto;
    padding: 24px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(105%);
    transition: transform 220ms ease;
    width: 88vw;
    z-index: 1100;
  }

  .csurf-shop-filters.is-open {
    transform: translateX(0);
  }

  .csurf-shop-filters__head button {
    display: inline-flex;
  }

  .csurf-404-links > div {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .admin-bar .csurf-header-main {
    top: 46px;
  }

  .csurf-topbar__inner {
    justify-content: center;
    min-height: 38px;
    text-align: center;
  }

  .csurf-topbar p {
    max-width: 94vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .csurf-header-main__inner {
    padding-inline: 16px;
  }

  .csurf-icon-button {
    height: 40px;
    width: 40px;
  }

  .csurf-menu-toggle span {
    display: none;
  }

  .csurf-search-dialog__panel {
    border-radius: 0 0 24px 24px;
  }

  .csurf-live-search__field {
    align-items: stretch;
    flex-wrap: wrap;
    padding-bottom: 12px;
  }

  .csurf-live-search__field > svg {
    margin-top: 18px;
  }

  .csurf-live-search__field input {
    font-size: 1.15rem;
    width: calc(100% - 45px);
  }

  .csurf-live-search__field button {
    width: 100%;
  }

  .csurf-hero,
  .csurf-hero__slide,
  .csurf-hero__inner {
    min-height: 710px;
  }

  .csurf-hero__inner {
    gap: 24px;
    padding-top: 42px;
  }

  .csurf-hero h2 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .csurf-hero__text {
    font-size: 0.98rem;
  }

  .csurf-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .csurf-hero__actions .csurf-button {
    width: 100%;
  }

  .csurf-hero__facts {
    display: grid;
    gap: 7px;
  }

  .csurf-hero__product-frame {
    aspect-ratio: 1.45;
  }

  .csurf-hero__product-note {
    display: none;
  }

  .csurf-carousel-actions [data-carousel-pause-label] {
    display: none;
  }

  .csurf-assurance__grid {
    grid-template-columns: 1fr;
  }

  .csurf-assurance__grid > div {
    border-right: 0;
    border-top: 1px solid var(--csurf-border);
    margin: 0 !important;
    padding: 14px 0 !important;
  }

  .csurf-assurance__grid > div:first-child {
    border-top: 0;
  }

  .csurf-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .csurf-discover-grid,
  .csurf-discover-stack,
  .csurf-entry-grid {
    grid-template-columns: 1fr;
  }

  .csurf-discover-card {
    min-height: 450px;
  }

  .csurf-discover-stack {
    grid-column: auto;
  }

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

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h2 {
    min-height: 0;
  }

  .csurf-enterprise__image {
    min-height: 290px;
  }

  .csurf-page-banner__inner {
    grid-template-columns: 1fr;
  }

  .csurf-page-banner__visual {
    aspect-ratio: 1.6;
  }

  .csurf-404-links > div {
    grid-template-columns: 1fr;
  }

  .csurf-footer-cta__inner,
  .csurf-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .sdcs-chat__panel {
    bottom: 82px !important;
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
  }

  .sdcs-chat__launcher {
    bottom: 14px !important;
    right: 14px !important;
  }

  .sdcs-contact-centre__dock {
    bottom: 14px !important;
    left: 14px !important;
  }
}

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

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

@media print {
  .csurf-site-header,
  .csurf-footer-cta,
  .csurf-site-footer,
  .sdcs-chat,
  .sdcs-contact-centre,
  .csurf-page-banner {
    display: none !important;
  }
}
