:root {
  --navy: #06265f;
  --navy-dark: #031b49;
  --blue: #0759cf;
  --blue-bright: #0b63f3;
  --ice: #eef7ff;
  --ice-strong: #dceeff;
  --red: #ef1f2f;
  --red-dark: #cf1221;
  --ink: #092557;
  --muted: #64748b;
  --line: #d9e4f2;
  --soft: #f6f9fd;
  --white: #fff;
  --success: #08783f;
  --shadow: 0 10px 30px rgb(4 37 88 / 10%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(100% - 80px, 1420px);
  margin-inline: auto;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  color: var(--white);
  background: var(--navy);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.utility-bar {
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
}

.utility-bar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.utility-bar p {
  margin: 0;
  font-weight: 800;
}

.utility-bar nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.utility-bar nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-left: 1px solid rgb(255 255 255 / 24%);
  font-weight: 600;
}

.utility-bar nav a:hover,
.utility-bar nav a:focus-visible {
  background: rgb(255 255 255 / 12%);
}

.utility-bar .dashicons {
  width: 17px;
  height: 17px;
  font-size: 17px;
}

.main-header {
  min-height: 88px;
  display: grid;
  grid-template-columns: 325px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: block;
  width: min(100%, 315px);
}

.brand img {
  width: 100%;
  height: auto;
}

.product-search {
  height: 48px;
  display: grid;
  grid-template-columns: 44px 1fr 126px;
  align-items: center;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid #cfdceb;
  border-radius: 7px;
}

.product-search .dashicons {
  justify-self: center;
  width: 22px;
  height: 22px;
  color: var(--blue);
  font-size: 22px;
}

.product-search input[type='search'] {
  min-width: 0;
  height: 46px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.product-search button {
  align-self: stretch;
  color: var(--white);
  background: var(--blue);
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.product-search button:hover,
.product-search button:focus-visible {
  background: var(--navy);
}

.header-actions {
  display: flex;
  align-items: stretch;
}

.header-actions > a {
  min-width: 120px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-left: 1px solid var(--line);
}

.header-actions .dashicons {
  width: 32px;
  height: 32px;
  color: var(--navy);
  font-size: 32px;
}

.header-actions a > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-actions strong {
  font-size: 13px;
}

.header-actions small {
  margin-top: 3px;
  font-size: 12px;
}

.mobile-menu-toggle {
  display: none;
}

.department-nav {
  border-top: 1px solid var(--line);
}

.department-nav__inner {
  height: 44px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.department-nav__inner > a,
.all-departments {
  height: 44px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-right: 1px solid #e5edf7;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.department-nav__inner > a .dashicons {
  display: none;
}

.department-nav__inner > a:hover,
.department-nav__inner > a:focus-visible,
.all-departments:hover,
.all-departments:focus-visible {
  color: var(--blue);
  background: var(--ice);
}

.department-nav__inner > a:nth-of-type(n + 10):not(.deals-link) {
  display: none;
}

.all-departments-menu {
  position: relative;
  flex: 0 0 auto;
}

.all-departments {
  padding-left: 4px;
  padding-right: 20px;
  font-size: 13px;
}

.all-departments .dashicons {
  color: var(--blue);
}

.all-departments__arrow {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.all-departments-menu.is-open .all-departments__arrow {
  transform: rotate(180deg);
}

.all-departments-dropdown {
  position: absolute;
  top: 44px;
  left: 0;
  z-index: 1100;
  width: min(900px, calc(100vw - 80px));
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
}

.all-departments-dropdown[hidden] {
  display: none;
}

.all-departments-dropdown__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.all-departments-dropdown__heading div {
  display: flex;
  flex-direction: column;
}

.all-departments-dropdown__heading small {
  color: var(--muted);
}

.all-departments-dropdown__heading a {
  color: var(--blue);
  font-weight: 800;
}

.all-departments-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.all-departments-dropdown__grid a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
}

.all-departments-dropdown__grid a:hover,
.all-departments-dropdown__grid a:focus-visible {
  color: var(--blue);
  background: var(--ice);
}

.all-departments-dropdown__grid .dashicons {
  color: var(--blue);
}

.deals-link {
  margin-left: auto;
  color: var(--red) !important;
}

.membership-ribbon {
  background: var(--ice-strong);
  border-bottom: 1px solid #c6def8;
}

.membership-ribbon__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.9fr) 1.1fr auto;
  align-items: center;
  gap: 22px;
}

.membership-ribbon__lead,
.membership-ribbon__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.membership-ribbon__lead p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.membership-ribbon__lead strong {
  color: var(--blue);
  font-size: 20px;
  line-height: 1.1;
}

.membership-ribbon__lead small {
  margin-top: 3px;
  color: var(--navy);
  font-size: 12px;
}

.membership-ribbon .dashicons {
  width: 38px;
  height: 38px;
  color: var(--blue);
  font-size: 38px;
}

.membership-ribbon__benefit {
  padding-left: 18px;
  border-left: 1px solid #bad4ef;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.membership-ribbon__benefit .dashicons {
  width: 28px;
  height: 28px;
  font-size: 28px;
}

.membership-ribbon__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
}

.membership-ribbon__price strong {
  white-space: nowrap;
  font-size: 20px;
}

.membership-ribbon__price small {
  font-size: 11px;
}

.membership-ribbon__price span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.primary-button,
.hero-button,
.membership-conversion__join {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
}

.primary-button:hover,
.primary-button:focus-visible,
.membership-conversion__join:hover,
.membership-conversion__join:focus-visible {
  background: var(--navy);
}

.club-hero {
  width: min(100%, 1488px);
  min-height: 352px;
  display: grid;
  grid-template-columns: 38% 36% 26%;
  margin-inline: auto;
  overflow: hidden;
  background: var(--navy);
}

.club-hero__copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 36px 42px 48px;
  color: var(--white);
  background: var(--navy);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.club-hero__copy .eyebrow,
.membership-conversion .eyebrow,
.supplier-banner .eyebrow {
  color: #79dbff;
}

.club-hero__copy h1 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.club-hero__copy > p:not(.eyebrow) {
  margin: 18px 0 22px;
  color: #e2ecfb;
  font-size: 16px;
}

.hero-button {
  min-width: 218px;
  background: var(--red);
}

.hero-button:hover,
.hero-button:focus-visible {
  background: var(--red-dark);
}

.club-hero__image {
  min-width: 0;
  background: #0f3159;
}

.club-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.club-hero__membership {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 34px;
  background: var(--white);
}

.club-hero__membership h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 3.2vw, 54px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-transform: uppercase;
}

.club-hero__membership ul {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.club-hero__membership li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.club-hero__membership li .dashicons {
  width: 18px;
  height: 18px;
  color: var(--blue);
  font-size: 18px;
}

.club-hero__plan {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 12px;
  color: var(--blue);
}

.club-hero__plan strong {
  font-size: 20px;
}

.club-hero__plan small {
  font-size: 11px;
}

.club-hero__plan > span {
  width: 1px;
  height: 22px;
  background: var(--line);
}

.club-hero__membership .primary-button {
  width: 100%;
}

.service-strip {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  width: 100%;
  padding-inline: max(40px, calc((100vw - 1420px) / 2));
  background: var(--ice);
  border-bottom: 1px solid var(--line);
}

.service-strip > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  border-right: 1px solid var(--line);
}

.service-strip > div:last-child {
  border-right: 0;
}

.service-strip .dashicons {
  width: 38px;
  height: 38px;
  color: var(--blue);
  font-size: 38px;
}

.service-strip p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.service-strip strong {
  color: var(--navy);
  font-size: 14px;
}

.service-strip small {
  color: var(--muted);
  font-size: 11px;
}

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

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-heading p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-heading > a {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.department-showcase {
  padding-top: 68px;
  padding-bottom: 74px;
}

.department-showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 16px;
}

.department-showcase__grid > a {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 8px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.department-showcase__grid > a:hover,
.department-showcase__grid > a:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.department-showcase__icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.department-showcase__icon .dashicons {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.department-showcase__grid strong {
  color: var(--navy);
  font-size: 13px;
}

.featured-deals {
  padding-top: 62px;
  padding-bottom: 78px;
  border-top: 1px solid var(--line);
}

.featured-deals__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.deal-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.deal-card:hover {
  border-color: #a6c2e8;
  box-shadow: var(--shadow);
}

.deal-card__saving {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--red);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 850;
}

.deal-card__image {
  height: 174px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 8px;
  background: var(--white);
}

.deal-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.deal-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 13px 13px 14px;
}

.deal-card h3 {
  min-height: 51px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.deal-card h3 a:hover,
.deal-card h3 a:focus-visible {
  color: var(--blue);
}

.deal-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 5px;
  margin-top: 3px;
  font-size: 11px;
}

.deal-card__price--normal {
  color: var(--muted);
}

.deal-card__price--normal del {
  white-space: nowrap;
}

.deal-card__price--member {
  color: var(--red);
  font-weight: 850;
}

.deal-card__price--normal strong,
.deal-card__price--member strong {
  white-space: nowrap;
  font-size: 16px;
}

.deal-card__button {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 13px;
  color: var(--white);
  background: var(--blue);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 800;
}

.deal-card__button:hover,
.deal-card__button:focus-visible {
  background: var(--navy);
}

.deal-card__button .dashicons {
  width: 17px;
  height: 17px;
  font-size: 17px;
}

.shopping-paths {
  padding-top: 68px;
  padding-bottom: 78px;
}

.shopping-paths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shopping-paths__grid > a {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--navy);
}

.shopping-paths__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 180ms ease;
}

.shopping-paths__grid > a:hover img,
.shopping-paths__grid > a:focus-visible img {
  transform: scale(1.025);
}

.shopping-paths__grid > a > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 28px;
  color: var(--white);
  background: rgb(3 27 73 / 82%);
}

.shopping-paths__grid small {
  color: #9ddfff;
  font-weight: 800;
  text-transform: uppercase;
}

.shopping-paths__grid strong {
  margin: 3px 0 12px;
  font-size: 30px;
  line-height: 1;
}

.shopping-paths__grid em {
  color: var(--white);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.membership-conversion {
  color: var(--white);
  background: var(--navy);
}

.membership-conversion__inner {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.membership-conversion__copy h2 {
  margin: 0;
  font-size: clamp(50px, 5.6vw, 82px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.membership-conversion__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0;
  color: #d7e5fb;
}

.membership-conversion__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.membership-conversion__copy li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.membership-conversion__copy li .dashicons {
  color: #70dcff;
}

.membership-conversion__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.membership-plan {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  color: var(--navy);
  background: var(--white);
  border: 3px solid transparent;
  border-radius: 9px;
  cursor: pointer;
  text-align: left;
}

.membership-plan.is-selected {
  border-color: #77d8ff;
  box-shadow: 0 0 0 2px var(--blue);
}

.membership-plan small {
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
}

.membership-plan strong {
  margin: 8px 0 5px;
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
}

.membership-plan strong span {
  font-size: 13px;
}

.membership-plan em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.membership-conversion__join {
  grid-column: 1 / -1;
  min-height: 58px;
  background: var(--red);
  font-size: 17px;
}

.membership-conversion__join:hover,
.membership-conversion__join:focus-visible {
  background: var(--red-dark);
}

.trusted-brands {
  padding-top: 70px;
  padding-bottom: 72px;
  text-align: center;
}

.trusted-brands h2 {
  margin: 0 0 34px;
  color: var(--navy);
  font-size: 42px;
  letter-spacing: -0.04em;
}

.trusted-brands__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trusted-brands__row strong {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: #637792;
  border-right: 1px solid var(--line);
  font-size: clamp(14px, 1.8vw, 24px);
  letter-spacing: -0.03em;
}

.trusted-brands__row strong:last-child {
  border-right: 0;
}

.service-strip--lower {
  margin-bottom: 70px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.supplier-banner {
  color: var(--white);
  background: var(--blue);
}

.supplier-banner__inner {
  min-height: 330px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: stretch;
  overflow: hidden;
}

.supplier-banner__inner > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 50px 50px 50px 0;
}

.supplier-banner h2 {
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.supplier-banner p:not(.eyebrow) {
  max-width: 640px;
  margin: 16px 0 22px;
}

.supplier-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  color: #d6e4f9;
  background: var(--navy-dark);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 48px;
  padding-top: 62px;
  padding-bottom: 48px;
}

.site-footer__grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__brand img {
  width: 240px;
  padding: 12px;
  background: var(--white);
  border-radius: 5px;
}

.site-footer__brand p {
  max-width: 320px;
  margin: 8px 0 0;
}

.site-footer strong {
  color: var(--white);
}

.site-footer__grid > div:not(.site-footer__brand) > strong {
  margin-bottom: 7px;
  font-size: 15px;
}

.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 12px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #79dbff;
}

.site-footer__socials {
  display: flex;
  gap: 8px;
}

.site-footer__socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgb(255 255 255 / 11%);
  border-radius: 50%;
}

.site-footer__bottom {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgb(255 255 255 / 14%);
  font-size: 11px;
}

.membership-dialog {
  width: min(92vw, 520px);
  padding: 36px;
  color: var(--navy);
  background: var(--white);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 26px 90px rgb(3 27 73 / 40%);
}

.membership-dialog::backdrop {
  background: rgb(3 27 73 / 74%);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  color: var(--navy);
  background: var(--ice);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.membership-dialog h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1;
}

.membership-dialog > p:not(.eyebrow) {
  color: var(--muted);
}

.membership-dialog .selected-plan {
  padding: 12px 14px;
  color: var(--navy) !important;
  background: var(--ice);
  border-radius: 6px;
  font-weight: 800;
}

.membership-interest-form {
  display: grid;
  gap: 8px;
}

.membership-interest-form label {
  font-size: 13px;
  font-weight: 800;
}

.membership-interest-form input {
  height: 48px;
  padding: 0 13px;
  border: 1px solid #afc5e1;
  border-radius: 6px;
}

.membership-interest-form button {
  min-height: 48px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

.form-success {
  padding: 14px;
  color: var(--success) !important;
  background: #edf9f3;
  border-radius: 6px;
  font-weight: 700;
}

.content-page,
.commerce-page {
  min-height: 58vh;
  padding-top: 54px;
  padding-bottom: 72px;
}

.content-page article {
  max-width: 920px;
  margin-inline: auto;
}

.content-page h1,
.supplier-hero h1 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.content-page h2 {
  margin: 36px 0 10px;
  color: var(--navy);
}

.content-page p,
.content-page li {
  color: var(--muted);
  font-size: 17px;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button {
  color: var(--white);
  background: var(--blue);
  border-radius: 6px;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover {
  color: var(--white);
  background: var(--navy);
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--blue);
}

.woocommerce .dual-price {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 13px;
}

.woocommerce .dual-price__normal,
.woocommerce .dual-price__member {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.woocommerce .dual-price__member {
  color: var(--red);
  font-weight: 850;
}

.woocommerce .dual-price__normal strong,
.woocommerce .dual-price__member strong {
  font-size: 1.2em;
}

.supplier-hero {
  color: var(--white);
  background: var(--navy);
}

.supplier-hero__inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 54px;
  overflow: hidden;
}

.supplier-hero h1 {
  color: var(--white);
}

.supplier-hero p:not(.eyebrow) {
  max-width: 660px;
  color: #d9e7ff;
}

.supplier-hero img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}

.supplier-benefits,
.supplier-application {
  padding-top: 72px;
  padding-bottom: 72px;
}

.supplier-benefits h2,
.supplier-requirements h2,
.supplier-application h2 {
  color: var(--navy);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.supplier-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.supplier-benefit-grid article {
  padding: 30px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.supplier-benefit-grid .dashicons {
  width: 42px;
  height: 42px;
  color: var(--blue);
  font-size: 42px;
}

.supplier-requirements {
  padding: 58px 0;
  background: var(--soft);
}

.supplier-requirements__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.supplier-requirements ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supplier-requirements li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

.supplier-application {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.supplier-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 28px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.supplier-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.supplier-form input,
.supplier-form select,
.supplier-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px;
  background: var(--white);
  border: 1px solid #b8cce7;
  border-radius: 6px;
}

.supplier-form__wide {
  grid-column: 1 / -1;
}

.supplier-form__notice {
  padding: 14px;
  color: var(--success);
  background: #edf9f3;
  border-radius: 6px;
  font-weight: 700;
}

/* Approved reference: compact warehouse-club homepage proportions. */
.club-hero__image {
  position: relative;
}

.club-hero__image img {
  object-position: center;
}

.club-hero__motto {
  position: absolute;
  bottom: 38px;
  left: 40px;
  color: var(--white);
  font-family: cursive;
  font-size: 22px;
  font-style: italic;
  line-height: 0.95;
  text-shadow: 0 2px 8px rgb(0 0 0 / 35%);
  transform: rotate(-7deg);
}

.department-showcase {
  padding-top: 34px;
  padding-bottom: 42px;
}

.department-showcase .section-heading {
  margin-bottom: 18px;
}

.department-showcase__grid {
  gap: 14px 16px;
}

.department-showcase__grid > a {
  min-height: 102px;
  gap: 8px;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.department-showcase__grid > a:hover,
.department-showcase__grid > a:focus-visible {
  background: var(--ice);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.department-showcase__icon {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 0;
}

.department-showcase__icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-deals {
  padding-top: 34px;
  padding-bottom: 38px;
}

.featured-deals .section-heading {
  margin-bottom: 15px;
}

.deal-card__saving {
  display: none;
}

.deal-card__image {
  height: 142px;
  padding: 12px 10px 4px;
}

.deal-card__content {
  padding: 9px 10px 11px;
}

.deal-card h3 {
  min-height: 43px;
  margin-bottom: 7px;
  font-size: 11px;
  line-height: 1.25;
}

.deal-card__price {
  margin-top: 1px;
  font-size: 10px;
}

.deal-card__price--normal strong,
.deal-card__price--member strong {
  font-size: 14px;
}

.deal-card__button {
  min-height: 36px;
  margin-top: 8px;
  font-size: 11px;
}

.shopping-paths {
  padding-top: 18px;
  padding-bottom: 18px;
}

.shopping-paths__grid {
  gap: 10px;
}

.shopping-paths__grid > a {
  min-height: 300px;
  border-radius: 0;
}

.shopping-paths__grid > a > span {
  padding: 26px 24px 22px;
}

.shopping-paths__grid strong {
  margin: 2px 0 6px;
  font-size: 26px;
}

.membership-conversion__inner {
  min-height: 320px;
  gap: 56px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.membership-conversion__mini-logo {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.membership-conversion__copy .eyebrow {
  display: none;
}

.membership-conversion__copy h2 {
  font-size: clamp(48px, 5vw, 68px);
}

.membership-conversion__copy > p:not(.eyebrow) {
  margin: 14px 0;
  font-size: 13px;
}

.membership-conversion__copy ul {
  display: none;
}

.membership-conversion__plans {
  gap: 8px;
}

.membership-plan {
  min-height: 150px;
  padding: 18px;
  border-radius: 5px;
}

.membership-plan strong {
  margin: 4px 0;
  font-size: 34px;
}

.membership-plan em {
  font-size: 10px;
}

.membership-plan__benefits {
  margin-top: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.45;
}

.membership-conversion__join {
  min-height: 42px;
  background: var(--blue);
  font-size: 13px;
}

.trusted-brands {
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
}

.trusted-brands h2 {
  margin: 0;
  font-size: 30px;
}

.trusted-brands > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
}

.trusted-brands__row {
  grid-template-columns: repeat(8, 1fr);
  border: 0;
}

.trusted-brands__row strong {
  min-height: 52px;
  padding: 6px;
  border: 0;
  font-size: clamp(13px, 1.55vw, 22px);
}

.brand-bosch,
.brand-tac,
.brand-3m {
  color: #ed1b24 !important;
}

.brand-makita {
  padding: 5px 10px !important;
  color: var(--white) !important;
  background: #e21728;
  font-style: italic;
}

.brand-dewalt {
  color: #111 !important;
  background: #f4c300;
}

.brand-stanley {
  color: #111 !important;
}

.brand-nippon {
  color: #16469c !important;
}

.brand-panasonic {
  color: #16469c !important;
}

.service-strip--lower {
  min-height: 58px;
  margin-bottom: 0;
  background: var(--ice);
  border: 0;
  border-radius: 0;
}

.service-strip--lower .dashicons {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.supplier-banner {
  color: var(--navy);
  background: var(--ice);
}

.supplier-banner__inner {
  min-height: 190px;
  grid-template-columns: 0.95fr 1.1fr 0.8fr;
  align-items: center;
}

.supplier-banner__inner > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.supplier-banner__inner > div {
  padding: 22px 30px;
}

.supplier-banner h2 {
  font-size: 32px;
}

.supplier-banner p:not(.eyebrow) {
  margin: 5px 0 12px;
  font-size: 12px;
}

.supplier-banner .hero-button {
  min-width: 160px;
  min-height: 38px;
  background: var(--blue);
  font-size: 11px;
}

.supplier-banner ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 20px;
  list-style: none;
  font-size: 12px;
}

.supplier-banner li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.supplier-banner li .dashicons {
  color: var(--blue);
}

.site-footer__grid {
  gap: 34px;
  padding-top: 28px;
  padding-bottom: 22px;
}

.site-footer__brand img {
  width: 200px;
  padding: 8px;
}

.site-footer__brand p {
  margin-top: 3px;
}

.site-footer__grid > div {
  gap: 6px;
}

.site-footer__bottom {
  min-height: 42px;
}

@media (max-width: 1240px) {
  .shell {
    width: min(100% - 48px, 1420px);
  }

  .main-header {
    grid-template-columns: 240px minmax(280px, 1fr) auto;
    gap: 20px;
  }

  .brand {
    width: 235px;
  }

  .header-actions > a {
    min-width: auto;
    padding-inline: 12px;
  }

  .department-nav__inner > a:nth-of-type(n + 7):not(.deals-link) {
    display: none;
  }

  .membership-ribbon__inner {
    grid-template-columns: 1.5fr repeat(2, 0.8fr) 1.1fr auto;
  }

  .membership-ribbon__benefit:nth-of-type(4) {
    display: none;
  }

  .club-hero {
    grid-template-columns: 36% 39% 25%;
  }

  .club-hero__copy {
    padding-left: 30px;
  }

  .club-hero__membership {
    padding: 24px;
  }

  .featured-deals__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .deal-card:nth-child(n + 9) {
    display: none;
  }
}

@media (max-width: 960px) {
  .utility-bar__inner {
    width: 100%;
    padding-inline: 20px;
  }

  .utility-bar p {
    display: none;
  }

  .utility-bar nav {
    width: 100%;
    justify-content: center;
  }

  .main-header {
    grid-template-columns: 220px 1fr auto;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .product-search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .header-actions > a:first-child {
    display: none;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--ice);
    border: 0;
    border-radius: 6px;
  }

  .department-nav {
    display: none;
  }

  .department-nav.is-open {
    display: block;
    max-height: 70vh;
    overflow-y: auto;
  }

  .department-nav__inner {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 20px 18px;
  }

  .all-departments-menu {
    grid-column: 1 / -1;
  }

  .all-departments {
    width: 100%;
    justify-content: flex-start;
    padding-left: 12px;
  }

  .all-departments__arrow {
    margin-left: auto;
  }

  .department-nav__inner > a,
  .department-nav__inner > a:nth-of-type(n) {
    display: inline-flex;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
  }

  .department-nav__inner > a .dashicons {
    display: inline-block;
    color: var(--blue);
  }

  .deals-link {
    margin-left: 0;
  }

  .all-departments-dropdown {
    position: static;
    width: 100%;
    border-top-width: 1px;
    box-shadow: none;
  }

  .all-departments-dropdown__grid {
    grid-template-columns: 1fr 1fr;
  }

  .membership-ribbon__inner {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .membership-ribbon__benefit,
  .membership-ribbon__price {
    display: none;
  }

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

  .club-hero__copy,
  .club-hero__image {
    min-height: 390px;
  }

  .club-hero__membership {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 32px;
    padding: 36px;
  }

  .club-hero__membership .eyebrow,
  .club-hero__membership h2 {
    grid-column: 1;
  }

  .club-hero__membership ul {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .club-hero__plan {
    grid-column: 1;
  }

  .club-hero__membership .primary-button {
    grid-column: 2;
    align-self: end;
  }

  .department-showcase__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured-deals__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .deal-card:nth-child(n) {
    display: flex;
  }

  .shopping-paths__grid {
    gap: 14px;
  }

  .shopping-paths__grid > a {
    min-height: 310px;
  }

  .membership-conversion__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .service-strip > div {
    padding-inline: 12px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(100% - 32px, 1420px);
  }

  .site-header {
    position: sticky;
  }

  .utility-bar {
    display: none;
  }

  .main-header {
    min-height: 74px;
    grid-template-columns: minmax(150px, 1fr) auto auto;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    width: 190px;
  }

  .header-actions > a {
    min-width: 44px;
    min-height: 44px;
    padding: 6px;
    border: 0;
  }

  .header-actions > a span:last-child {
    display: none;
  }

  .header-actions .dashicons {
    width: 28px;
    height: 28px;
    font-size: 28px;
  }

  .product-search {
    height: 46px;
    grid-template-columns: 40px 1fr 82px;
  }

  .product-search button {
    font-size: 13px;
  }

  .department-nav__inner {
    padding-inline: 16px;
  }

  .department-nav__inner > a {
    min-height: 48px;
    height: auto;
    padding: 8px;
    white-space: normal;
  }

  .all-departments-dropdown {
    padding: 16px 8px;
  }

  .all-departments-dropdown__heading {
    align-items: flex-start;
  }

  .all-departments-dropdown__heading small {
    display: none;
  }

  .all-departments-dropdown__grid a {
    padding-inline: 5px;
  }

  .membership-ribbon__inner {
    width: 100%;
    padding: 10px 16px;
  }

  .membership-ribbon__lead .dashicons {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }

  .membership-ribbon__lead strong {
    font-size: 15px;
  }

  .membership-ribbon__lead small {
    display: none;
  }

  .membership-ribbon .primary-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 12px;
  }

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

  .club-hero__copy {
    min-height: 335px;
    padding: 42px 26px;
  }

  .club-hero__copy h1 {
    font-size: clamp(52px, 17vw, 72px);
  }

  .club-hero__image {
    min-height: 300px;
  }

  .club-hero__membership {
    grid-column: auto;
    display: flex;
    padding: 36px 24px;
  }

  .club-hero__membership h2 {
    font-size: 42px;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .service-strip > div {
    min-height: 76px;
    justify-content: flex-start;
    padding: 10px 12px;
    border-bottom: 1px solid var(--line);
  }

  .service-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .service-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-strip .dashicons {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }

  .service-strip small {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 22px;
  }

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

  .section-heading > a {
    margin-top: 28px;
    font-size: 11px;
  }

  .department-showcase,
  .featured-deals,
  .shopping-paths,
  .trusted-brands {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .department-showcase__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .department-showcase__grid > a {
    min-height: 124px;
  }

  .featured-deals__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .deal-card__image {
    height: 148px;
    padding-inline: 8px;
  }

  .deal-card__content {
    padding: 11px 10px 12px;
  }

  .deal-card h3 {
    min-height: 63px;
    font-size: 12px;
  }

  .deal-card__price {
    display: grid;
    gap: 0;
  }

  .deal-card__price--normal strong,
.deal-card__price--member strong {
    font-size: 15px;
  }

  .deal-card__button {
    min-height: 44px;
  }

  .shopping-paths__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shopping-paths__grid > a {
    min-height: 300px;
  }

  .membership-conversion__inner {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .membership-conversion__copy h2 {
    font-size: clamp(47px, 15vw, 66px);
  }

  .membership-conversion__copy ul {
    display: grid;
    gap: 10px;
  }

  .membership-conversion__plans {
    grid-template-columns: 1fr;
  }

  .membership-conversion__join {
    grid-column: auto;
  }

  .trusted-brands__row {
    grid-template-columns: 1fr 1fr;
  }

  .trusted-brands__row strong {
    min-height: 68px;
    border-bottom: 1px solid var(--line);
  }

  .trusted-brands__row strong:nth-child(2n) {
    border-right: 0;
  }

  .trusted-brands__row strong:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-strip--lower {
    margin-bottom: 48px;
  }

  .supplier-banner__inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .supplier-banner__inner > div {
    padding: 48px 24px;
  }

  .supplier-banner img {
    max-height: 270px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding-top: 48px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .supplier-hero__inner,
  .supplier-requirements__grid,
  .supplier-application,
  .supplier-benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .supplier-form__wide {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 166px;
  }

  .section-heading > a {
    display: none;
  }

  .deal-card__image {
    height: 132px;
  }

  .deal-card__saving {
    top: 7px;
    left: 7px;
    font-size: 10px;
  }

  .deal-card h3 {
    min-height: 68px;
  }
}

/* Shared footer reference: membership, brands, services and five columns. */
.club-footer-intro{background:#fff;padding-top:28px}
.club-footer-membership{display:flex;align-items:center;gap:24px;background:#00366c;color:#fff;padding:30px 34px;border-radius:6px;min-height:180px}
.club-footer-pitch{flex:1;min-width:0}
.club-footer-pitch p{color:#09d4ec;font-size:13px;font-weight:700;letter-spacing:1.4px;margin:0 0 5px}
.club-footer-pitch h2{font-size:clamp(26px,2.9vw,44px);line-height:1.1;letter-spacing:-1px;margin:0 0 8px;color:white;font-weight:800}
.club-footer-pitch>span{font-size:16px}
.club-footer-plans{display:flex;gap:14px}
.club-footer-plans .membership-plan{display:flex;flex-direction:column;align-items:center;justify-content:center;width:146px;min-height:132px;margin:0;padding:12px 10px;background:#fff;border:2px solid transparent;border-radius:5px;color:#053069;box-shadow:none;text-align:center;cursor:pointer}
.club-footer-plans .membership-plan>strong{display:block;color:#0057ef;font-size:28px;line-height:1.2;white-space:nowrap}
.club-footer-plans .membership-plan strong small{font-size:13px}
.club-footer-plans .membership-plan>span{display:block;font-size:12px;font-weight:400;line-height:1.4;margin-top:8px}
.club-footer-plans .membership-plan i{width:16px;height:16px;display:block;border:2px solid #0057ef;border-radius:100%;margin-top:8px}
.club-footer-plans .membership-plan.is-selected{border-color:#00c9ed}
.club-footer-plans .membership-plan.is-selected i{background:#0057ef;box-shadow:inset 0 0 0 3px white}
.club-footer-join{display:flex;align-items:center;gap:12px;background:#005df5;color:#fff;border:0;border-radius:5px;padding:18px 24px;white-space:nowrap;font:inherit;font-weight:600;cursor:pointer}
.club-footer-brands{padding-top:27px;padding-bottom:28px}
.club-footer-brands-heading{display:flex;gap:24px;align-items:center;margin-bottom:20px}
.club-footer-brands-heading h2{font-size:24px;margin:0;font-weight:800;letter-spacing:-.5px}
.club-footer-brands-heading p{font-size:12px;color:#657997;margin:0}
.club-footer-brands-heading>a{margin-left:auto;display:flex;align-items:center;gap:8px;font-size:13px;color:#0057ef;font-weight:600;text-decoration:none}
.club-footer-brand-row{display:grid;grid-template-columns:repeat(8,1fr);gap:34px;align-items:center}
.club-footer-brand-row a{height:44px;display:flex;justify-content:center;align-items:center}
.club-footer-brand-row img{max-width:100%;max-height:42px;width:auto;height:auto;object-fit:contain}
.club-footer-brand-row a:nth-child(5) img{max-height:46px}
.club-footer-services{background:#eaf7ff;padding:23px 0}
.club-footer-services>.shell{display:grid;grid-template-columns:repeat(4,1fr)}
.club-footer-services a{display:flex;align-items:center;gap:20px;text-decoration:none;color:#052963;padding:0 26px;border-right:1px solid #c5def0}
.club-footer-services a:first-child{padding-left:20px}.club-footer-services a:last-child{border-right:0}
.club-footer-services img{width:46px;height:46px;filter:invert(26%) sepia(100%) saturate(5073%) hue-rotate(220deg) brightness(99%) contrast(108%)}
.club-footer-services strong,.club-footer-services small{display:block}.club-footer-services strong{font-size:14px}.club-footer-services small{font-size:11px;color:#657997;margin-top:5px}
.site-footer.club-footer{background:#002c5c;padding:36px 0 48px;border-radius:0 0 36px 36px;color:#eaf3ff}
.club-footer-grid{display:grid;grid-template-columns:1.45fr 1fr 1fr 1.1fr 1fr;gap:46px}
.club-footer-brand>img{width:260px;max-width:100%;filter:brightness(0) invert(1);background:none;padding:0}
.club-footer-brand>p{font-size:13px;line-height:1.5;max-width:255px;margin:18px 0 24px;color:#d5e3f5}
.club-footer-socials{display:flex;gap:18px;align-items:center}
.club-footer-socials span{display:block;width:23px;height:23px}
.club-footer-socials img{width:23px;height:23px;filter:brightness(0) invert(1)}
.club-footer nav h2{font-size:14px;font-weight:700;margin:0 0 14px;color:white;line-height:1.4}
.club-footer nav>a{display:block;font-size:13px;line-height:1.55;margin-bottom:7px;color:#d5e3f5;text-decoration:none}
.club-footer nav>a:hover,.club-footer-bottom a:hover{color:#fff;text-decoration:underline}
.club-footer-bottom{margin-top:30px;border-top:1px solid #7890aa;padding-top:24px;display:flex;align-items:center;justify-content:space-between;gap:20px;font-size:11px;color:#d5e3f5}
.club-footer-bottom>div{display:flex;align-items:center;gap:16px}.club-footer-bottom a{color:inherit;text-decoration:none}.club-footer-bottom p{margin:0;font-size:11px}
.club-footer-intro :focus-visible,.club-footer :focus-visible{outline:3px solid #15cbe7;outline-offset:4px}
@media(max-width:1050px){.club-footer-membership{gap:16px;padding:24px}.club-footer-pitch h2{font-size:30px}.club-footer-plans .membership-plan{width:116px}.club-footer-join{padding:16px}.club-footer-grid{gap:25px}.club-footer-brand-row{gap:20px}.club-footer-services a{gap:12px;padding:0 15px}}
@media(max-width:760px){.club-footer-membership{flex-wrap:wrap;gap:20px}.club-footer-pitch{flex-basis:100%}.club-footer-pitch h2{font-size:30px}.club-footer-plans{flex:1}.club-footer-plans .membership-plan{flex:1;width:auto}.club-footer-join{justify-content:center;width:100%}.club-footer-brands-heading{flex-wrap:wrap;gap:8px}.club-footer-brands-heading h2{font-size:22px}.club-footer-brands-heading p{flex-basis:100%;order:3}.club-footer-brand-row{grid-template-columns:repeat(4,1fr);gap:22px}.club-footer-brand-row a{height:36px}.club-footer-brand-row img{max-height:32px}.club-footer-services>.shell{grid-template-columns:1fr 1fr;gap:24px 0}.club-footer-services a{padding:0 12px!important;gap:10px}.club-footer-services a:nth-child(2){border:0}.club-footer-services img{width:32px;height:32px}.club-footer-services strong{font-size:12px}.club-footer-services small{font-size:10px}.club-footer-grid{grid-template-columns:1fr 1fr;gap:28px}.club-footer-brand{grid-column:1/-1}.club-footer-brand>img{width:230px}.club-footer-brand>p{max-width:320px;margin:12px 0 18px}.club-footer nav h2{font-size:14px}.club-footer nav>a{font-size:13px;min-height:30px;margin-bottom:3px}.club-footer-bottom{flex-direction:column;align-items:flex-start;font-size:10px}.club-footer-bottom>div{gap:10px}.site-footer.club-footer{border-radius:0 0 22px 22px}.club-footer-bottom p{font-size:10px}}

/* New brand lockup: crop transparent canvas only in layout, retain flag colour. */
.brand img,.footer-logo img{width:100%;height:auto;aspect-ratio:5.75;object-fit:cover;object-position:center 48%;display:block}
.footer-logo{display:block;position:relative;width:260px;max-width:100%}
.footer-logo>img:first-child{filter:brightness(0) invert(1)}
.footer-logo .footer-logo-flag{position:absolute;inset:0;clip-path:polygon(81% 61%,90% 61%,90% 100%,81% 100%)}
@media(max-width:760px){.footer-logo{width:230px}}

.club-footer-plans .membership-plan strong small{text-transform:none;font-weight:500}

/* Full-width footer corners, as requested: no white cutouts. */
.site-footer.club-footer{border-radius:0}

/* Standard and member prices share equal typography; colour identifies membership. */
.deal-card__price--normal,.woocommerce .dual-price__normal{color:var(--navy);font-weight:850}
.deal-card__price--member,.woocommerce .dual-price__member{color:var(--red);font-weight:850}

/* Clear member-first pricing with consistent alignment and lighter typography. */
.deal-card__price,.woocommerce .dual-price{font-family:Arial,Helvetica,sans-serif;letter-spacing:0;font-variant-numeric:tabular-nums;line-height:1.45}
.deal-card__price{display:flex;align-items:baseline;justify-content:space-between;gap:4px;margin-top:5px}
.deal-card__price--member,.woocommerce .dual-price__member{font-size:12px;font-weight:600;color:#d91f35}
.deal-card__price--member strong{font-size:17px;font-weight:600;white-space:nowrap}
.deal-card__price--normal,.woocommerce .dual-price__normal{font-size:11px;font-weight:400;color:#586577}
.deal-card__price--normal strong{font-size:13px;font-weight:400;white-space:nowrap}
.woocommerce .dual-price{gap:6px}
.woocommerce .dual-price__member{font-size:14px}
.woocommerce .dual-price__member strong{font-size:20px;font-weight:600}
.woocommerce .dual-price__normal{font-size:12px}
.woocommerce .dual-price__normal strong{font-size:15px;font-weight:400}
@media(max-width:480px){.deal-card__price--member{font-size:10px}.deal-card__price--member strong{font-size:16px}.deal-card__price--normal{font-size:10px}.deal-card__price--normal strong{font-size:12px}}
