:root {
  --cc-ink: #000b3b;
  --cc-navy: #091553;
  --cc-panel: #11206f;
  --cc-panel-soft: #18266b;
  --cc-accent: #4bffb4;
  --cc-accent-deep: #16c782;
  --cc-text: #f4f7ff;
  --cc-subtle: #c9d3ff;
  --cc-muted: #667085;
  --cc-line: rgba(88, 98, 255, 0.28);
  --cc-paper: #f7f9fc;
  --cc-white: #ffffff;
  --cc-shadow: 0 16px 32px rgba(0, 11, 59, 0.08);
  --cc-width: 1280px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(0, 11, 59, 0.04), rgba(0, 11, 59, 0) 24rem),
    var(--cc-paper);
  color: #27323c;
  font-family: "Figtree", "Fig Tree", Manrope, Inter, Assistant, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: var(--cc-panel);
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--cc-accent-deep);
}

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

.cc-icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.16em;
}

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

.skip-link:focus {
  z-index: 999;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--cc-white);
  color: var(--cc-ink);
}

.cc-header {
  background:
    linear-gradient(135deg, rgba(88, 98, 255, 0.2), rgba(75, 255, 180, 0.04) 44%, rgba(0, 11, 59, 0)),
    var(--cc-ink);
  color: var(--cc-text);
}

.cc-announce {
  position: relative;
  display: grid;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--cc-white);
  color: var(--cc-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.cc-announce span {
  grid-area: 1 / 1;
  padding: 0 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: cc-announcement-rotate 12s infinite;
}

.cc-announce span:nth-child(2) {
  animation-delay: 4s;
}

.cc-announce span:nth-child(3) {
  animation-delay: 8s;
}

@keyframes cc-announcement-rotate {
  0%,
  8% {
    opacity: 0;
    transform: translateY(12px);
  }

  12%,
  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.cc-header__inner {
  display: flex;
  max-width: var(--cc-width);
  margin-inline: auto;
  padding: 22px clamp(20px, 6vw, 72px) 24px;
  flex-direction: column;
  gap: 18px;
}

.cc-header__top {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cc-header__nav-row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.cc-brand {
  display: inline-flex;
  align-items: center;
  color: var(--cc-text);
  text-decoration: none;
}

.cc-brand:hover {
  color: var(--cc-text);
}

.cc-brand--image {
  flex: 0 0 auto;
  min-width: 0;
}

.cc-brand__logo {
  display: block;
  width: clamp(190px, 18vw, 300px);
  max-width: 100%;
  height: auto;
}

.cc-brand__mark {
  display: inline-flex;
  width: 36px;
  height: 36px;
  margin-right: 9px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  font-size: 23px;
  font-weight: 900;
}

.cc-brand__text {
  color: var(--cc-text);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 850;
  letter-spacing: -0.03em;
}

.custom-logo-link img {
  display: block;
  max-width: 230px;
  max-height: 58px;
  width: auto;
}

.cc-nav__list,
.cc-footer__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-nav__list {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px 22px;
}

.cc-nav {
  min-width: 0;
  flex: 1 1 auto;
  padding-top: 9px;
}

.cc-nav__list a {
  color: var(--cc-text);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.cc-nav__list a:hover,
.current-menu-item > a {
  color: var(--cc-accent);
}

.cc-header__actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.cc-header__search {
  display: flex;
  justify-content: flex-end;
  flex: 0 1 340px;
  margin-left: auto;
}

.cc-header__search input[type="search"],
.cc-header__search input[type="search"]:focus,
.cc-header__search input[type="search"]:focus-visible,
.cc-site-search input[type="search"],
.cc-site-search input[type="search"]:focus,
.cc-site-search input[type="search"]:focus-visible {
  background: #fff !important;
  color: var(--cc-ink) !important;
  caret-color: var(--cc-ink);
}

.cc-header__search input[type="search"]:focus,
.cc-header__search input[type="search"]:focus-visible,
.cc-site-search input[type="search"]:focus,
.cc-site-search input[type="search"]:focus-visible {
  border-color: var(--cc-accent-deep);
  outline: 2px solid var(--cc-accent);
  outline-offset: 2px;
}

.cc-icon-link,
.cc-cart-link,
.cc-button,
.button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  box-shadow: none;
  font-weight: 800;
  gap: 8px;
  padding: 9px 14px;
  text-decoration: none;
}

.cc-icon-link {
  border: 1px solid rgba(201, 211, 255, 0.2);
  background: transparent;
  color: var(--cc-text);
}

.cc-cart-link .cc-cart-count {
  display: inline-flex;
  min-width: 19px;
  height: 19px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cc-ink);
  color: var(--cc-text);
  font-size: 11px;
}

.cc-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #37f1a3;
  color: var(--cc-ink);
}

.cc-button--secondary {
  border: 1px solid rgba(0, 11, 59, 0.22);
  background: transparent;
  color: var(--cc-ink);
}

.cc-button::before {
  content: "";
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 11, 59, 0.12);
  color: currentColor;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.cc-actions .cc-button:nth-child(1)::before {
  content: "A";
}

.cc-actions .cc-button:nth-child(2)::before {
  content: "B";
}

.cc-actions .cc-button:nth-child(3)::before {
  content: "V";
}

.cc-button--icon::before {
  display: none;
}

.cc-button--icon .cc-icon {
  width: 17px;
  height: 17px;
}

.cc-hero-strip {
  width: 100%;
  overflow: hidden;
  background: #eef2f7;
}

.cc-hero-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.cc-section {
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 72px);
}

body.page-slug-trade-pallets .cc-section,
body.page-slug-trade-pallets-graded-returns .cc-section {
  padding-top: clamp(16px, 2.4vw, 28px);
  padding-bottom: clamp(28px, 4vw, 52px);
}

.cc-section__inner {
  max-width: var(--cc-width);
  margin-inline: auto;
}

body.page-slug-trade-pallets .cc-section__inner,
body.page-slug-trade-pallets-graded-returns .cc-section__inner {
  max-width: min(1540px, calc(100vw - clamp(28px, 4vw, 64px)));
}

.cc-section__inner--narrow {
  max-width: 960px;
  text-align: center;
}

.cc-section--dark {
  background: var(--cc-ink);
  color: var(--cc-text);
}

.cc-kicker {
  margin: 0 0 10px;
  color: var(--cc-accent-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cc-section--dark .cc-kicker {
  color: var(--cc-accent);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--cc-ink);
  letter-spacing: -0.01em;
  line-height: 1.14;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 850;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 850;
}

.cc-section--dark h2,
.cc-section--dark h3 {
  color: var(--cc-text);
}

.cc-welcome p {
  color: #4b5563;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 650;
}

.cc-section--intro {
  background: var(--cc-white);
  padding-top: clamp(20px, 3vw, 34px);
  padding-bottom: clamp(20px, 3vw, 34px);
}

.cc-home-lead {
  display: grid;
  gap: clamp(20px, 3.5vw, 40px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
}

.cc-home-lead__copy {
  max-width: 610px;
}

.cc-home-lead__copy h1 {
  margin-bottom: 14px;
}

.cc-home-lead__copy p {
  margin-bottom: 0;
}

.cc-featured-events {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  min-width: 0;
}

.cc-featured-events__head {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 11, 59, 0.1);
  padding-bottom: 8px;
  text-align: right;
}

.cc-featured-events__head h2,
.cc-featured-events__head p {
  margin: 0;
}

.cc-featured-events__grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cc-featured-event {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-featured-event__image {
  display: block;
  min-height: 72px;
  aspect-ratio: auto;
  background-image:
    linear-gradient(180deg, rgba(0, 11, 59, 0), rgba(0, 11, 59, 0.04)),
    url("../images/clearcycle-b-grade-stock-homepage-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #eef2f7;
}

.cc-featured-event__body {
  display: grid;
  gap: 3px;
  align-content: center;
  min-width: 0;
  padding: 9px 10px;
}

.cc-featured-event strong {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.cc-featured-event small {
  color: var(--cc-muted);
  font-size: 10px;
  font-weight: 750;
}

.cc-featured-event:hover {
  color: var(--cc-ink);
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.cc-actions--left {
  justify-content: flex-start;
}

.cc-trade-home {
  background:
    linear-gradient(135deg, rgba(0, 11, 59, 0.96), rgba(17, 32, 111, 0.94)),
    var(--cc-ink);
  color: var(--cc-text);
  padding-top: clamp(22px, 3.2vw, 42px);
  padding-bottom: clamp(22px, 3.2vw, 42px);
}

.cc-trade-home__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
}

.cc-trade-home h2 {
  color: var(--cc-text);
  font-size: clamp(26px, 3.2vw, 42px);
}

.cc-trade-home p {
  max-width: 780px;
  color: #d7ddff;
  font-size: 17px;
  font-weight: 650;
}

.cc-trade-home .cc-button--secondary {
  border-color: rgba(244, 247, 255, 0.28);
  color: var(--cc-text);
}

.cc-trade-home__points {
  display: grid;
  gap: 10px;
}

.cc-trade-home__points span {
  position: relative;
  display: block;
  border: 1px solid rgba(75, 255, 180, 0.26);
  border-radius: 8px;
  background: rgba(244, 247, 255, 0.06);
  color: var(--cc-text);
  font-weight: 850;
  padding: 14px 16px 14px 42px;
}

.cc-trade-home__points span::before {
  content: "\2713";
  position: absolute;
  left: 16px;
  color: var(--cc-accent);
  font-weight: 900;
}

.cc-feature-grid .cc-section__inner,
.cc-post-grid,
.woocommerce ul.products {
  display: grid;
  gap: 18px;
}

.cc-feature-grid .cc-section__inner {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cc-card,
.cc-post-card,
.woocommerce ul.products li.product,
.cc-page,
.woocommerce div.product {
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
  overflow: hidden;
}

.cc-card {
  border-color: rgba(201, 211, 255, 0.16);
  background: var(--cc-navy);
  color: var(--cc-subtle);
  padding: 26px;
}

.cc-card p {
  margin-bottom: 0;
}

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

.cc-event-marketplace {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.cc-event-column {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.cc-event-column__heading {
  display: flex;
  min-height: auto;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(0, 11, 59, 0.1);
  padding-bottom: 12px;
}

.cc-event-column__heading h2,
.cc-event-column__heading h3 {
  margin: 0;
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: 0;
}

.cc-event-list {
  display: grid;
  gap: 10px;
}

.cc-event-column__footer {
  margin: 4px 0 0;
}

.cc-event-column__footer .cc-button {
  width: 100%;
  justify-content: center;
}

.cc-event-group {
  margin-top: 38px;
}

.cc-event-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-event-card__image {
  width: 100%;
  min-height: 92px;
  aspect-ratio: auto;
  background-image:
    linear-gradient(180deg, rgba(0, 11, 59, 0), rgba(0, 11, 59, 0.04)),
    url("../images/clearcycle-b-grade-stock-homepage-banner.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #eef2f7;
}

.cc-event-card--vendor .cc-event-card__image {
  position: relative;
}

.cc-vendor-logo {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cc-white);
  border-radius: 50%;
  background: var(--cc-accent-deep);
  color: var(--cc-white);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(0, 11, 59, 0.22);
}

.cc-event-card__body {
  display: grid;
  align-content: center;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
}

.cc-event-card strong {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.cc-event-card small {
  color: var(--cc-muted);
  font-weight: 700;
}

.cc-event-owner {
  color: var(--cc-accent-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-event-card:hover {
  color: var(--cc-ink);
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.cc-vendor-ad {
  display: grid;
  min-height: 184px;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(75, 255, 180, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(75, 255, 180, 0.12), rgba(88, 98, 255, 0.08)),
    var(--cc-white);
  color: var(--cc-ink);
  padding: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 11, 59, 0.055);
}

.cc-vendor-ad__eyebrow {
  color: var(--cc-accent-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-vendor-ad strong {
  font-size: 22px;
  line-height: 1.14;
}

.cc-vendor-ad span:not(.cc-vendor-ad__eyebrow) {
  color: #27323c;
  font-weight: 760;
}

.cc-vendor-ad__checks {
  display: grid;
  gap: 6px 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 8px 0 0;
  padding: 0;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
}

.cc-vendor-ad__checks li {
  position: relative;
  padding-left: 20px;
}

.cc-vendor-ad__checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cc-accent-deep);
  font-weight: 900;
}

.cc-brands-section {
  background: var(--cc-white);
}

.cc-brand-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.cc-brand-tile {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: 0 10px 24px rgba(0, 11, 59, 0.06);
  color: var(--cc-ink);
  font-size: 18px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.cc-brand-tile:hover {
  border-color: rgba(75, 255, 180, 0.7);
  color: var(--cc-ink);
}

.cc-ad-strip {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
  background: var(--cc-paper);
}

.cc-ad-track {
  display: grid;
  grid-auto-columns: minmax(100%, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cc-accent) rgba(0, 11, 59, 0.12);
}

.cc-ad-slide {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eef2f7;
  box-shadow: var(--cc-shadow);
  scroll-snap-align: start;
}

.cc-ad-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 1.45;
  object-fit: cover;
}

.cc-service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(0, 11, 59, 0.12);
  background:
    linear-gradient(135deg, rgba(0, 11, 59, 0.96), rgba(17, 32, 111, 0.96)),
    var(--cc-ink);
  color: var(--cc-text);
  padding: clamp(18px, 3vw, 28px);
  text-decoration: none;
}

.cc-service-cta:hover {
  color: var(--cc-text);
}

.cc-service-cta__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  font-weight: 900;
}

.cc-service-cta__icon .cc-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.cc-service-cta small {
  display: block;
  color: var(--cc-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-service-cta strong {
  display: block;
  max-width: 780px;
  margin-top: 4px;
  color: var(--cc-text);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
}

.cc-service-cta em {
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  font-style: normal;
  font-weight: 900;
  padding: 10px 14px;
}

.cc-service-cta--warehouse {
  background:
    linear-gradient(135deg, rgba(0, 11, 59, 0.93), rgba(0, 137, 82, 0.9)),
    var(--cc-ink);
}

.cc-warehouse-page {
  display: grid;
  gap: clamp(22px, 4vw, 40px);
}

.cc-warehouse-hero,
.cc-warehouse-details,
.cc-warehouse-contact {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.cc-warehouse-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 12%, rgba(75, 255, 180, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(0, 11, 59, 0.96), rgba(5, 18, 59, 0.94)),
    var(--cc-ink);
  color: var(--cc-text);
  padding: clamp(24px, 5vw, 52px);
  overflow: hidden;
}

.cc-warehouse-hero h1 {
  color: var(--cc-text);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.cc-warehouse-hero p {
  max-width: 720px;
  color: rgba(244, 247, 255, 0.78);
  font-size: clamp(17px, 1.5vw, 21px);
}

.cc-warehouse-hero .cc-button--secondary {
  border-color: rgba(244, 247, 255, 0.3);
  color: var(--cc-text);
}

.cc-warehouse-flyer-card {
  margin: 0;
}

.cc-warehouse-flyer-card img {
  display: block;
  width: 100%;
  border: 1px solid rgba(244, 247, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.cc-warehouse-catalogues {
  display: grid;
  gap: 20px;
}

.cc-warehouse-catalogues__heading {
  max-width: 780px;
}

.cc-warehouse-catalogues__heading h2 {
  margin-bottom: 8px;
}

.cc-warehouse-catalogues__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.cc-warehouse-catalogues figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.12);
  border-radius: 6px;
  background: #000b3b;
}

.cc-warehouse-catalogues img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

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

.cc-warehouse-grid .cc-service-card ul,
.cc-warehouse-details ul {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.cc-warehouse-grid .cc-service-card li,
.cc-warehouse-details li {
  position: relative;
  padding-left: 28px;
}

.cc-warehouse-grid .cc-service-card li::before,
.cc-warehouse-details li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--cc-accent-deep);
  font-weight: 950;
}

.cc-warehouse-details {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
  padding: clamp(24px, 4vw, 40px);
}

.cc-warehouse-contact {
  grid-template-columns: minmax(0, 1fr) auto;
  border-radius: 8px;
  background: #eef2f7;
  padding: clamp(22px, 4vw, 34px);
}

.cc-market-lots {
  background: var(--cc-white);
}

.cc-market-lots__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.cc-market-panel,
.cc-latest-panel {
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
  padding: clamp(22px, 3vw, 34px);
}

.cc-market-panel p {
  color: #4b5563;
  font-weight: 650;
}

.cc-market-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.cc-market-links a {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 98, 255, 0.08), rgba(75, 255, 180, 0.05)),
    var(--cc-paper);
  color: var(--cc-ink);
  font-weight: 850;
  padding: 16px 18px;
  text-decoration: none;
}

.cc-market-links strong {
  min-width: 0;
  font-weight: 850;
}

.cc-market-links span {
  color: var(--cc-muted);
  font-size: 13px;
  font-weight: 750;
  text-align: right;
}

.cc-market-link__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--cc-ink);
  color: var(--cc-accent) !important;
  font-size: 16px;
  font-weight: 900;
  text-align: center !important;
}

.cc-market-link__icon .cc-icon {
  width: 21px;
  height: 21px;
  stroke-width: 2.1;
}

.cc-title-row--compact {
  margin-bottom: 16px;
}

.cc-lot-list {
  display: grid;
  gap: 12px;
}

.cc-lot-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  min-height: 86px;
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: var(--cc-paper);
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-lot-row__image {
  background: #eef2f7;
}

.cc-lot-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-lot-row__body {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 14px;
}

.cc-lot-row strong {
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.cc-lot-row small {
  color: var(--cc-panel);
  font-weight: 850;
}

.cc-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.cc-text-link {
  color: var(--cc-panel);
  font-weight: 800;
  text-decoration: none;
}

.cc-post-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cc-post-card__body,
.cc-page {
  padding: 24px;
}

.cc-post-card h2 a {
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-page {
  max-width: 960px;
}

.cc-page__content > *:first-child {
  margin-top: 0;
}

body.page-slug-submit-trade-deal .cc-page > h1:first-child {
  display: none;
}

body.page-slug-trade-pallets .cc-page > h1:first-child {
  display: none;
}

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

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

.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  padding: 0 0 18px !important;
  text-align: left;
}

.woocommerce ul.products li.product a,
.woocommerce ul.products li.product a:hover,
.woocommerce ul.products li.product a:focus {
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin: 0 0 16px;
  background: #eef2f7;
}

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

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: var(--cc-ink);
  font-size: 18px;
  font-weight: 850;
}

.woocommerce .price,
.woocommerce ul.products li.product .price {
  color: var(--cc-panel);
  font-weight: 850;
}

.woocommerce span.onsale {
  min-height: auto;
  min-width: auto;
  border: 1px solid rgba(75, 255, 180, 0.45);
  border-radius: 999px;
  background: rgba(75, 255, 180, 0.92);
  color: var(--cc-ink);
  font-weight: 850;
  line-height: 1;
  padding: 8px 10px;
}

.woocommerce div.product {
  padding: clamp(20px, 4vw, 36px);
}

.woocommerce div.product .product_title {
  color: var(--cc-ink);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--cc-accent);
  border-radius: 8px;
  background: var(--cc-white);
  box-shadow: var(--cc-shadow);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--cc-accent-deep);
}

.clearcycle-no-ebay-resale {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: #f7f9fc;
  padding: 12px 14px;
}

.clearcycle-no-ebay-resale label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0;
  color: var(--cc-ink);
  font-weight: 850;
}

.clearcycle-no-ebay-resale input[type="checkbox"] {
  margin-top: 0.25em;
}

.clearcycle-no-ebay-resale__note {
  display: block;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}

.woocommerce-coming-soon-default {
  background:
    radial-gradient(circle at 14% 6%, rgba(75, 255, 180, 0.2), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(88, 98, 255, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(0, 11, 59, 0.06), rgba(0, 11, 59, 0) 26rem),
    var(--cc-paper) !important;
  color: #27323c !important;
}

.woocommerce-coming-soon-default .coming-soon-cover {
  align-items: stretch;
  padding: 0 !important;
}

.woocommerce-coming-soon-banner-container {
  min-height: 100vh;
  gap: 0 !important;
  background:
    linear-gradient(180deg, rgba(0, 11, 59, 0.02), rgba(0, 11, 59, 0.06)),
    var(--cc-paper);
}

.woocommerce-coming-soon-header {
  width: 100%;
  padding: 30px clamp(22px, 7vw, 104px) 18px !important;
  background:
    radial-gradient(circle at 85% 20%, rgba(75, 255, 180, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(88, 98, 255, 0.22), rgba(75, 255, 180, 0.05) 44%, rgba(0, 11, 59, 0)),
    var(--cc-ink) !important;
  color: var(--cc-text) !important;
  box-shadow: inset 0 -1px rgba(201, 211, 255, 0.16);
}

.woocommerce-coming-soon-header::before {
  content: "Fixed 20% Buyers Premium on All Auction Events";
  display: flex;
  height: 38px;
  margin: -30px calc(clamp(22px, 7vw, 104px) * -1) 28px;
  align-items: center;
  justify-content: center;
  background: var(--cc-white);
  color: var(--cc-ink);
  font: 700 13px/1 "Figtree", "Fig Tree", Manrope, Inter, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: cc-coming-soon-announcement 12s infinite;
}

@keyframes cc-coming-soon-announcement {
  0%,
  30% {
    content: "Fixed 20% Buyers Premium on All Auction Events";
  }

  34%,
  63% {
    content: "Buyers and Vendors Register for Free";
  }

  67%,
  100% {
    content: "Auctions, Trade Deals, Managed Sales, Returns Handling";
  }
}

.woocommerce-coming-soon-header::after {
  content: "";
  display: block;
  height: clamp(112px, 13vw, 176px);
  margin: 18px calc(clamp(22px, 7vw, 104px) * -1) -18px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 45%, rgba(0, 0, 0, 0.52)),
    url("../images/clearcycle-warehouse-clearance-event.webp") center 39% / cover no-repeat,
    #0a0d12;
}

.woocommerce-coming-soon-header .wp-block-site-title {
  color: var(--cc-text) !important;
  font-family: "Figtree", "Fig Tree", Manrope, Inter, sans-serif !important;
  font-size: 0 !important;
  font-weight: 850 !important;
  letter-spacing: -0.02em !important;
}

.woocommerce-coming-soon-header .wp-block-site-title a {
  display: inline-flex;
  width: clamp(260px, 36vw, 470px);
  max-width: 100%;
  height: clamp(58px, 8vw, 104px);
  align-items: center;
  color: transparent !important;
  text-decoration: none;
}

.woocommerce-coming-soon-header .wp-block-site-title a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/clearcycle-auctions-trade-logo-transparent.png") left center / contain no-repeat;
}

.woocommerce-coming-soon-social-login,
.wp-block-social-links {
  color: var(--cc-text) !important;
}

.woocommerce-coming-soon-social-login svg,
.wp-block-social-links svg {
  fill: currentColor;
}

.woocommerce-coming-soon-default .logged-out.wp-block-loginout {
  padding: 0 !important;
  background: transparent !important;
}

.woocommerce-coming-soon-default .logged-out.wp-block-loginout a {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
}

.woocommerce-coming-soon-banner {
  max-width: 960px;
  margin: 24px auto 0;
  color: #27323c !important;
  font-family: "Figtree", "Fig Tree", Manrope, Inter, sans-serif !important;
  font-size: clamp(22px, 2.3vw, 34px) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}

.woocommerce-coming-soon-banner::after {
  content: "Auction lots, trade stock, clearance and returns will be available here soon.";
  display: block;
  max-width: 820px;
  margin: 18px auto 0;
  color: #4b5563;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 650;
  line-height: 1.55;
}

body:not(.woocommerce-coming-soon-default) .cc-coming-soon-panels {
  display: none;
}

.woocommerce-coming-soon-default .cc-coming-soon-panels {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  margin: -18px auto 42px;
  gap: 16px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: stretch;
  font-family: "Figtree", "Fig Tree", Manrope, Inter, sans-serif;
}

.cc-coming-soon-logo,
.cc-coming-soon-store-alert,
.cc-warehouse-cta {
  border-radius: 8px;
  box-shadow: var(--cc-shadow);
}

.cc-coming-soon-logo {
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: contain;
  background: var(--cc-ink);
  padding: 20px;
}

.cc-coming-soon-store-alert,
.cc-warehouse-cta {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 22px;
  text-decoration: none;
}

.cc-coming-soon-store-alert {
  border: 1px solid rgba(0, 11, 59, 0.12);
  background: var(--cc-white);
  color: var(--cc-ink);
}

.cc-coming-soon-store-alert strong,
.cc-warehouse-cta strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
}

.cc-coming-soon-store-alert span,
.cc-warehouse-cta em {
  color: #4b5563;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

.cc-coming-soon-store-alert em {
  align-self: flex-start;
  border-radius: 6px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  font-style: normal;
  font-weight: 900;
  padding: 9px 12px;
}

.cc-warehouse-cta {
  border: 1px solid rgba(75, 255, 180, 0.32);
  background:
    linear-gradient(135deg, rgba(0, 11, 59, 0.94), rgba(0, 137, 82, 0.86)),
    var(--cc-ink);
  color: var(--cc-text);
}

.cc-warehouse-cta span {
  color: var(--cc-accent);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-warehouse-cta em {
  color: rgba(244, 247, 255, 0.78);
}

.cc-footer {
  background:
    linear-gradient(145deg, rgba(88, 98, 255, 0.14), rgba(75, 255, 180, 0.06) 40%, rgba(0, 11, 59, 0)),
    var(--cc-ink);
  color: var(--cc-text);
}

.cc-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 2.28fr);
  max-width: var(--cc-width);
  margin-inline: auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 72px);
  gap: clamp(30px, 5vw, 64px);
}

.cc-footer p {
  max-width: 520px;
  color: var(--cc-subtle);
}

.cc-footer a {
  color: var(--cc-text);
}

.cc-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-footer__list a {
  color: rgba(244, 247, 255, 0.78);
  font-size: 13px;
  text-decoration: none;
}

.cc-footer__list a:hover {
  color: var(--cc-accent);
}

.cc-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: clamp(20px, 3vw, 38px);
}

.cc-footer__group h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.cc-home-updates {
  background: #eef2f7;
}

.cc-home-updates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cc-update-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: #fff;
}

.cc-update-card__image {
  display: grid;
  min-height: 156px;
  place-items: center;
  background: var(--cc-ink);
  color: var(--cc-accent);
}

.cc-update-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cc-update-card__image .cc-icon {
  width: 42px;
  height: 42px;
}

.cc-update-card__body {
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 15px;
}

.cc-update-card h3,
.cc-update-card p {
  margin: 0;
}

.cc-update-card h3 {
  font-size: 17px;
  line-height: 1.2;
}

.cc-update-card h3 a {
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-update-card p {
  color: #4b5563;
  font-size: 13px;
  line-height: 1.4;
}

.cc-update-card .cc-text-link {
  align-self: end;
  font-size: 12px;
}

@media (max-width: 980px) {
  .cc-header__inner {
    align-items: stretch;
  }

  .cc-header__nav-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-nav__list {
    justify-content: flex-start;
  }

  .cc-nav {
    padding-top: 0;
  }

  .cc-header__actions {
    flex-basis: auto;
  }

  .cc-header__search {
    justify-content: flex-start;
    flex-basis: auto;
    margin-left: 0;
  }

  .cc-feature-grid .cc-section__inner,
  .cc-market-lots__grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-market-lots__grid {
    grid-template-columns: 1fr;
  }

  .cc-trade-home__grid {
    grid-template-columns: 1fr;
  }

  .cc-home-lead {
    grid-template-columns: 1fr;
  }

  .cc-home-lead__copy {
    max-width: none;
  }

  .woocommerce-coming-soon-default .cc-coming-soon-panels,
  .cc-warehouse-hero,
  .cc-warehouse-details,
  .cc-warehouse-contact,
  .cc-warehouse-grid {
    grid-template-columns: 1fr;
  }

  .cc-coming-soon-logo {
    min-height: 118px;
  }

  .cc-warehouse-contact {
    justify-items: start;
  }
}

@media (max-width: 640px) {
	.cc-warehouse-catalogues__grid {
		grid-template-columns: 1fr;
	}

  .cc-announce {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .cc-brand__text {
    font-size: 28px;
  }

  .cc-brand__mark {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .custom-logo-link img {
    max-width: 190px;
    max-height: 48px;
  }

  .cc-header__actions,
  .cc-actions,
  .cc-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .cc-footer__inner {
    grid-template-columns: 1fr;
  }

  .cc-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cc-home-updates__grid {
    grid-template-columns: 1fr;
  }

  .cc-icon-link,
  .cc-cart-link,
  .cc-button {
    width: 100%;
  }

  .cc-hero-strip {
    min-height: 0;
  }

  .woocommerce-coming-soon-header::before {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .woocommerce-coming-soon-header::after {
    height: 118px;
  }

  .woocommerce-coming-soon-default .cc-coming-soon-panels {
    width: min(100% - 28px, 520px);
    margin-top: -8px;
  }

  .cc-coming-soon-store-alert,
  .cc-warehouse-cta {
    min-height: 0;
    padding: 18px;
  }

  .cc-coming-soon-logo {
    min-height: 96px;
  }

  .cc-warehouse-hero {
    padding: 22px;
  }

  .cc-feature-grid .cc-section__inner,
  .cc-event-grid,
  .cc-featured-events__grid,
  .cc-brand-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .cc-market-links a {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-market-links span {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .cc-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 26px 18px;
  }

  .cc-update-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

/* Catalogue refinement pass: keep the shop front compact, browsable and product-led. */
body {
  font-size: 15px;
  line-height: 1.5;
}

.cc-announce {
  min-height: 30px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.cc-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 10px;
}

.cc-header__top {
  min-height: 42px;
  gap: 16px;
}

.cc-brand__mark {
  width: 30px;
  height: 30px;
  font-size: 19px;
}

.cc-brand__text {
  font-size: clamp(22px, 2vw, 28px);
}

.custom-logo-link img {
  max-width: 180px;
  max-height: 44px;
}

.cc-nav__list {
  gap: 4px 18px;
}

.cc-nav__list a {
  font-size: 13px;
}

.cc-icon-link,
.cc-cart-link,
.cc-button,
.button,
button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 13px;
}

.cc-hero-strip,
.cc-hero-strip img {
  max-height: 155px;
}

.cc-hero-strip img {
  object-fit: contain;
  background: #f7f9fc;
}

.cc-section {
  padding: clamp(24px, 3.5vw, 42px) clamp(18px, 4vw, 52px);
}

.cc-section--intro {
  padding-top: clamp(18px, 2.6vw, 30px);
  padding-bottom: clamp(18px, 2.6vw, 30px);
}

.cc-section__inner--narrow {
  max-width: 840px;
}

h1 {
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(21px, 2.1vw, 29px);
}

.cc-welcome p {
  max-width: 720px;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 550;
}

.cc-home-lead {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.cc-home-lead__copy {
  max-width: 680px;
}

.cc-featured-events__grid {
  gap: 8px;
}

.cc-featured-event__image {
  min-height: 66px;
  aspect-ratio: auto;
}

.cc-featured-event__body {
  padding: 8px 10px;
}

.cc-featured-event strong {
  font-size: 13px;
}

.cc-featured-event small {
  font-size: 10px;
}

.cc-actions {
  margin-top: 16px;
}

.cc-title-row {
  margin-bottom: 16px;
}

.cc-kicker {
  margin-bottom: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.cc-card,
.cc-post-card,
.woocommerce ul.products li.product,
.cc-page,
.woocommerce div.product,
.cc-event-card,
.cc-brand-tile,
.cc-market-panel,
.cc-latest-panel,
.cc-ad-slide {
  box-shadow: 0 8px 20px rgba(0, 11, 59, 0.055);
}

.cc-event-grid {
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.cc-event-group {
  margin-top: 26px;
}

.cc-event-card__image {
  aspect-ratio: 4 / 3;
}

.cc-vendor-logo {
  width: 42px;
  height: 42px;
  left: 10px;
  bottom: 10px;
  font-size: 13px;
}

.cc-event-card__body {
  padding: 12px 14px;
}

.cc-event-card strong {
  font-size: 15px;
  line-height: 1.25;
}

.cc-event-card small,
.cc-event-owner {
  font-size: 11px;
}

.cc-brand-grid {
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.cc-brand-tile {
  min-height: 54px;
  font-size: 14px;
}

.cc-ad-strip {
  padding-top: 22px;
  padding-bottom: 22px;
}

.cc-ad-slide img {
  aspect-ratio: 7 / 1.25;
  object-fit: cover;
}

.cc-market-lots__grid {
  gap: 16px;
}

.cc-market-panel,
.cc-latest-panel {
  padding: 20px;
}

.cc-market-links {
  gap: 8px;
  margin-top: 16px;
}

.cc-market-links a {
  min-height: 56px;
  padding: 12px 14px;
  font-size: 14px;
}

.cc-market-links span {
  font-size: 12px;
}

.cc-lot-list {
  gap: 8px;
}

.cc-lot-row {
  grid-template-columns: 72px 1fr;
  min-height: 72px;
}

.cc-lot-row__body {
  padding: 10px 12px;
}

.cc-lot-row strong {
  font-size: 13px;
}

.woocommerce ul.products {
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.woocommerce ul.products li.product {
  padding-bottom: 12px !important;
}

.woocommerce.tax-product_cat ul.products li.product,
.woocommerce.post-type-archive-product ul.products li.product {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.woocommerce.tax-product_cat ul.products li.product .woocommerce-loop-product__link,
.woocommerce.post-type-archive-product ul.products li.product .woocommerce-loop-product__link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.woocommerce.tax-product_cat ul.products li.product .cc-trade-pallet-meta,
.woocommerce.post-type-archive-product ul.products li.product .cc-trade-pallet-meta {
  margin-bottom: 14px;
}

.woocommerce.tax-product_cat ul.products li.product .price,
.woocommerce.post-type-archive-product ul.products li.product .price {
  margin-top: auto;
  color: #111827;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.2;
}

.woocommerce.tax-product_cat ul.products li.product .price .amount,
.woocommerce.post-type-archive-product ul.products li.product .price .amount {
  color: #111827;
}

.woocommerce.tax-product_cat ul.products li.product .button,
.woocommerce.post-type-archive-product ul.products li.product .button {
  margin-top: 10px;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}

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

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px;
  line-height: 1.28;
}

.woocommerce .price,
.woocommerce ul.products li.product .price {
  font-size: 14px;
}

.woocommerce span.onsale {
  padding: 6px 8px;
  font-size: 11px;
}

.woocommerce div.product {
  padding: clamp(16px, 3vw, 28px);
}

.woocommerce div.product .product_title {
  font-size: clamp(24px, 2.8vw, 36px);
}

.woocommerce-products-header,
.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 14px;
}

.woocommerce-products-header__title,
.page-title {
  font-size: clamp(24px, 2.6vw, 34px);
}

body:not(:has(.woocommerce-coming-soon-default)) header.wp-block-template-part::before {
  height: 30px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

body:not(:has(.woocommerce-coming-soon-default)) header.wp-block-template-part::after {
  height: clamp(92px, 10vw, 145px);
  background-size: contain;
}

body:not(:has(.woocommerce-coming-soon-default)) header.wp-block-template-part > .wp-block-group {
  padding: 14px clamp(18px, 4vw, 52px) 14px !important;
  gap: 12px !important;
}

body:not(:has(.woocommerce-coming-soon-default)) header .wp-block-site-title {
  font-size: 0 !important;
}

body:not(:has(.woocommerce-coming-soon-default)) header .wp-block-site-title a::before {
  content: "";
  display: inline-block;
  width: clamp(170px, 16vw, 280px);
  height: clamp(38px, 4.8vw, 62px);
  background: url("../images/clearcycle-auctions-trade-logo-transparent.png") left center / contain no-repeat;
}

body:not(:has(.woocommerce-coming-soon-default)) header .wp-block-navigation a {
  font-size: 13px;
}

body:not(:has(.woocommerce-coming-soon-default)) header .wp-block-loginout a {
  min-height: 34px;
  padding: 8px 12px;
}

body:not(:has(.woocommerce-coming-soon-default)) main.wp-block-group {
  padding: clamp(24px, 3.5vw, 44px) clamp(18px, 4vw, 52px) !important;
}

body:not(:has(.woocommerce-coming-soon-default)).home main.wp-block-group > h1:first-child {
  max-width: 820px;
  font-size: clamp(26px, 2.8vw, 38px);
}

body:not(:has(.woocommerce-coming-soon-default)).home main.wp-block-group > h1:first-child::after {
  margin-top: 10px;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
}

body:not(:has(.woocommerce-coming-soon-default)) .wp-block-post-template {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

body:not(:has(.woocommerce-coming-soon-default)) .wp-block-post-template .wp-block-post {
  padding: 16px;
}

body:not(:has(.woocommerce-coming-soon-default)) footer.wp-block-template-part > .wp-block-group {
  padding: 28px clamp(18px, 4vw, 52px) !important;
}

@media (max-width: 1180px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cc-home-lead {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cc-section {
    padding: 22px 16px;
  }

  .cc-hero-strip,
  .cc-hero-strip img {
    max-height: 92px;
  }

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

  .cc-featured-events__grid {
    grid-template-columns: 1fr;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px;
  }
}

.cc-event-marketplace {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
}

.cc-event-marketplace .cc-event-list {
  display: grid;
  gap: 10px;
}

.cc-event-marketplace .cc-event-card {
  grid-template-columns: 104px minmax(0, 1fr);
}

.cc-event-marketplace .cc-event-card__image {
  min-height: 86px;
  aspect-ratio: auto;
}

.cc-service-cta {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(75, 255, 180, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 11, 59, 0.94), rgba(17, 32, 111, 0.95)),
    var(--cc-ink);
  color: var(--cc-text);
  padding: 22px 24px;
  text-decoration: none;
}

.cc-service-cta small {
  display: block;
  margin-bottom: 5px;
  color: var(--cc-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cc-service-cta strong {
  display: block;
  max-width: 740px;
  color: var(--cc-text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.2;
}

.cc-service-cta em {
  flex: 0 0 auto;
  border-radius: 6px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  font-style: normal;
  font-weight: 900;
  padding: 10px 14px;
}

.cc-featured-event--placeholder,
.cc-event-card--placeholder,
.cc-auction-placeholder-panel {
  border-style: dashed;
}

.cc-featured-event--placeholder small,
.cc-event-card--placeholder small {
  color: var(--cc-accent);
  font-weight: 850;
}

.cc-featured-event--vendor-cta {
  border-color: rgba(11, 180, 125, 0.42);
  background: #f7fffb;
}

.cc-featured-event--vendor-cta .cc-featured-event__image {
  background-color: var(--cc-ink);
  background-image: url("../images/clearcycle-auctions-trade-logo-transparent.png");
  background-position: 8% center;
  background-size: 215px auto;
}

.cc-featured-event--vendor-cta:hover {
  border-color: var(--cc-accent-deep);
}

.cc-auction-placeholder-panel {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 190px;
  border: 1px dashed rgba(0, 11, 59, 0.22);
  border-radius: 8px;
  background: #f7f9fc;
  padding: 18px;
}

.cc-auction-placeholder-panel p {
  margin: 0;
  color: var(--cc-muted);
  font-weight: 650;
  line-height: 1.55;
}

.cc-cart-link--external {
  gap: 0;
}

.cc-trade-pallets-page {
  display: grid;
  gap: clamp(10px, 1.7vw, 18px);
}

.cc-trade-pallets-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: 0;
  padding: clamp(12px, 1.8vw, 20px) clamp(16px, 2.4vw, 28px);
}

.cc-service-hero.cc-trade-pallets-hero h1,
.cc-trade-pallets-hero h1 {
  max-width: 700px;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.08;
}

.cc-service-hero.cc-trade-pallets-hero p,
.cc-trade-pallets-hero p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 600;
  line-height: 1.36;
}

.cc-trade-pallets-hero__aside {
  display: grid;
  gap: 8px;
}

.cc-trade-pallets-hero__copy {
  min-width: 0;
}

.cc-trade-pallets-hero__text {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cc-trade-pallets-hero__aside {
  width: 100%;
  max-width: 410px;
  justify-self: end;
  justify-items: stretch;
  align-content: center;
  gap: 10px;
}

.cc-trade-pallets-hero__aside .cc-buyer-protection-badge--shop {
  justify-self: center;
  width: 88px;
}

.cc-trade-pallets-hero__aside .cc-buyer-protection-badge--shop .cc-buyer-protection-badge__mark {
  width: 88px;
  height: auto;
}

.cc-trade-route-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 8px;
  margin-top: 0;
  width: min(100%, 390px);
}

.cc-trade-route-strip a {
  display: grid;
  gap: 2px;
  border: 1px solid rgba(75, 255, 180, 0.44);
  border-radius: 8px;
  background: rgba(75, 255, 180, 0.14);
  color: var(--cc-text);
  padding: 9px 10px;
  text-decoration: none;
}

.cc-trade-route-strip a:hover,
.cc-trade-route-strip a.is-active {
  border-color: var(--cc-accent);
  background: var(--cc-accent);
  color: var(--cc-ink);
}

.cc-trade-route-strip span {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.cc-trade-route-strip small {
  color: currentColor;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  opacity: 0.82;
}

.cc-trade-pallets-page .cc-trade-route-strip--catalogue {
  width: 100%;
  max-width: none;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
}

.cc-trade-route-strip--catalogue a {
  border-color: rgba(0, 11, 59, 0.16);
  background: #eefbf5;
  color: var(--cc-ink);
  text-align: center;
}

.cc-trade-route-strip--catalogue a:hover,
.cc-trade-route-strip--catalogue a.is-active {
  border-color: var(--cc-accent-deep);
  background: var(--cc-accent);
  color: var(--cc-ink);
}

.cc-trade-pallets-hero .cc-service-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  justify-content: stretch;
  gap: 10px;
  margin-top: 0;
}

.cc-trade-pallets-hero .cc-button {
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  font-size: 14px;
  text-align: center;
}

.cc-trade-brand-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.cc-trade-archive-filters {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
}

.cc-trade-brand-filter a.is-active {
  border-color: var(--cc-accent);
  background: var(--cc-ink);
  color: #fff;
}

.cc-trade-brand-filter a {
  border: 1px solid rgba(0, 11, 59, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--cc-ink);
  font-size: 12px;
  font-weight: 850;
  padding: 7px 10px;
  text-decoration: none;
}

.cc-trade-pallet-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.cc-trade-pallet-card {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 11, 59, 0.06);
}

.cc-trade-pallet-card__image {
  display: block;
  background: #f7f9fc;
}

.cc-trade-pallet-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 118px;
  aspect-ratio: auto;
  object-fit: cover;
}

.cc-trade-pallet-card__body {
  display: grid;
  gap: 8px 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px 14px;
}

.cc-trade-pallet-card h2 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.cc-trade-pallet-card h2 a {
  color: var(--cc-ink);
  text-decoration: none;
}

.cc-trade-pallet-meta {
  display: grid;
  grid-column: 1;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  margin: 0;
}

.cc-trade-pallet-meta div {
  display: grid;
  gap: 2px;
  border-radius: 6px;
  background: #f7f9fc;
  padding: 7px 8px;
}

.cc-trade-pallet-meta dt {
  color: #667085;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cc-trade-pallet-meta dd {
  margin: 0;
  color: var(--cc-ink);
  font-size: 13px;
  font-weight: 900;
}

.cc-trade-pallet-card__price {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  min-width: 132px;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  text-align: right;
}

.cc-trade-pallet-card__price span,
.cc-trade-pallet-card__price .price {
  color: var(--cc-ink);
  font-size: 20px;
  font-weight: 950;
}

.cc-trade-pallet-card__price small {
  color: #16c782;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cc-trade-pallet-card .cc-button {
  grid-column: 2;
  justify-self: end;
  min-height: 34px;
  padding: 8px 12px;
  font-size: 12px;
}

.cc-trade-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
}

.cc-trade-pagination .page-numbers {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 11, 59, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--cc-ink);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 11px;
  text-decoration: none;
}

.cc-trade-pagination .page-numbers.current,
.cc-trade-pagination .page-numbers:hover {
  border-color: var(--cc-accent-deep);
  background: var(--cc-accent);
  color: var(--cc-ink);
}

.cc-trade-pallet-single {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.cc-trade-pallet-single h2 {
  margin: 0;
  color: var(--cc-ink);
}

.cc-trade-pallet-view.woocommerce div.product .product_title {
  font-size: clamp(26px, 3vw, 40px);
}

.cc-trade-pallet-view.woocommerce div.product {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  align-items: start;
}

.cc-trade-pallet-view.woocommerce div.product::before,
.cc-trade-pallet-view.woocommerce div.product::after {
  display: none;
}

.cc-trade-pallet-view.woocommerce div.product div.images,
.cc-trade-pallet-view.woocommerce div.product div.summary,
.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs,
.cc-trade-pallet-view.woocommerce div.product .related,
.cc-trade-pallet-view.woocommerce div.product .upsells {
  float: none;
  width: auto;
}

.cc-trade-pallet-view.woocommerce div.product div.images {
  grid-column: 1;
  margin: 0;
}

.cc-trade-pallet-view.woocommerce div.product div.summary {
  display: grid;
  grid-column: 2;
  gap: 16px;
  margin: 0;
}

.cc-trade-pallet-view.woocommerce div.product div.summary .woocommerce-product-details__short-description {
  order: 30;
}

.cc-trade-pallet-view.woocommerce div.product div.summary .cc-trade-pallet-single {
  order: 35;
}

.cc-trade-pallet-view.woocommerce div.product div.summary form.cart {
  order: 40;
}

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

.cc-trade-pallet-view.woocommerce div.product p.price,
.cc-trade-pallet-view.woocommerce div.product span.price,
.cc-trade-pallet-view.woocommerce div.product .summary > .price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0;
  padding: 0;
  color: #098b5f;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
  line-height: 1.12;
}

.cc-trade-pallet-view.woocommerce div.product p.price .amount,
.cc-trade-pallet-view.woocommerce div.product span.price .amount {
  color: #098b5f;
}

.cc-trade-pallet-view.woocommerce div.product p.price small,
.cc-trade-pallet-view.woocommerce div.product span.price small {
  color: #475467;
  font-size: 14px;
  font-weight: 850;
}

.cc-trade-pallet-view.woocommerce div.product p.stock.cc-price-stock {
  display: inline;
  margin: 0;
  color: #475467;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.cc-trade-pallet-view.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.cc-trade-pallet-view.woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.cc-trade-pallet-view.woocommerce div.product div.images .flex-control-thumbs li {
  float: none;
  width: 72px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-trade-pallet-view.woocommerce div.product div.images .flex-control-thumbs li::marker {
  content: "";
}

.cc-trade-pallet-view.woocommerce div.product div.images .flex-control-thumbs img {
  display: block;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(0, 11, 59, 0.12);
  border-radius: 6px;
  object-fit: cover;
}

.cc-trade-pallet-view .cc-trade-pallet-express-checkout {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  margin: -18px 0 0;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.cc-trade-pallet-view .cc-trade-pallet-express-checkout #wc-stripe-express-checkout-element,
.cc-trade-pallet-view .cc-trade-pallet-express-checkout .wc-stripe-express-checkout-element {
  --wc-stripe-express-checkout-button-separator: 10px;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}

.cc-trade-pallet-view .cc-trade-pallet-express-checkout #wc-stripe-express-checkout-element > *,
.cc-trade-pallet-view .cc-trade-pallet-express-checkout .wc-stripe-express-checkout-element > * {
  flex: 1 1 calc(50% - 10px) !important;
  min-width: 150px;
  max-width: none !important;
  margin: 0 !important;
}

.cc-trade-pallet-view .cc-trade-pallet-express-checkout .cc-express-button-cell {
  display: block !important;
  flex: 1 1 calc(50% - 10px) !important;
  min-width: 150px;
  max-width: none !important;
  width: auto !important;
  margin: 0 !important;
}

.cc-trade-pallet-view .cc-trade-pallet-express-checkout iframe,
.cc-trade-pallet-view .cc-trade-pallet-express-checkout button {
  width: 100% !important;
  max-width: none !important;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 11, 59, 0.1);
  border-radius: 8px;
  background: #fff;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.tabs,
.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.wc-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 11, 59, 0.1);
  background: #f7f9fc;
  list-style: none;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.tabs li,
.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.wc-tabs li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.tabs li::marker,
.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.wc-tabs li::marker {
  content: "";
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.wc-tabs li a {
  display: block;
  border-right: 1px solid rgba(0, 11, 59, 0.08);
  color: var(--cc-ink);
  font-size: 13px;
  font-weight: 900;
  padding: 13px 16px;
  text-decoration: none;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs ul.wc-tabs li.active a {
  background: #fff;
  color: #098b5f;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0;
  padding: 18px;
}

.cc-trade-pallet-view.woocommerce div.product .woocommerce-tabs .panel h2:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .cc-trade-pallets-hero {
    grid-template-columns: 1fr;
  }

  .cc-trade-pallets-hero__aside,
  .cc-trade-route-strip,
  .cc-trade-pallets-hero .cc-service-actions {
    justify-content: flex-start;
  }

  .cc-trade-pallets-hero__aside {
    justify-self: start;
  }

  .cc-trade-pallets-page .cc-trade-route-strip--catalogue {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    width: 100%;
  }

  .cc-trade-pallet-view.woocommerce div.product {
    grid-template-columns: 1fr;
  }

  .cc-trade-pallet-view.woocommerce div.product div.images,
  .cc-trade-pallet-view.woocommerce div.product div.summary {
    grid-column: 1;
  }

  .cc-trade-pallet-card__body {
    grid-template-columns: 1fr;
  }

  .cc-trade-pallet-meta,
  .cc-trade-pallet-card__price,
  .cc-trade-pallet-card .cc-button {
    grid-column: 1;
  }

  .cc-trade-pallet-card__price {
    grid-row: auto;
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cc-trade-pallet-card .cc-button {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .cc-trade-pallets-hero__aside {
    max-width: none;
  }

  .cc-trade-pallets-hero__aside .cc-buyer-protection-badge--shop,
  .cc-trade-pallets-hero__aside .cc-buyer-protection-badge--shop .cc-buyer-protection-badge__mark {
    width: 78px;
  }

  .cc-trade-pallets-hero .cc-service-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .cc-event-marketplace {
    grid-template-columns: 1fr;
  }

  .cc-vendor-ad__checks {
    grid-template-columns: 1fr;
  }

  .cc-market-links a {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .cc-market-links a > span:last-child {
    grid-column: 2;
    text-align: left;
  }

  .cc-service-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .cc-trade-pallet-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .cc-trade-pallet-card__image img {
    min-height: 96px;
  }

  .cc-trade-pallet-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cc-warehouse-lead {
  max-width: 720px;
  font-size: 17px;
}

.cc-warehouse-advice,
.cc-warehouse-faq {
  padding: 28px;
  border: 1px solid rgba(0, 11, 59, 0.1);
  background: #fff;
}

.cc-warehouse-advice__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.cc-warehouse-advice h2,
.cc-warehouse-faq h2 {
  margin: 0 0 18px;
}

.cc-warehouse-advice h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.cc-warehouse-advice p {
  margin: 0;
}

.cc-warehouse-faq details {
  border-top: 1px solid rgba(0, 11, 59, 0.12);
  padding: 15px 0;
}

.cc-warehouse-faq details:last-child {
  border-bottom: 1px solid rgba(0, 11, 59, 0.12);
}

.cc-warehouse-faq summary {
  color: var(--cc-ink);
  cursor: pointer;
  font-weight: 800;
}

.cc-warehouse-faq details p {
  max-width: 850px;
  margin: 10px 0 0;
}

.cc-warehouse-contact a:not(.cc-button),
.cc-warehouse-advice a {
  color: #087a56;
  font-weight: 800;
}

@media (max-width: 760px) {
  .cc-warehouse-advice__grid {
    grid-template-columns: 1fr;
  }

  .cc-warehouse-advice,
  .cc-warehouse-faq {
    padding: 20px;
  }
}

/* Compact mobile navigation and trade catalogue cards. */
.cc-menu-toggle {
  display: none;
}

.cc-search-toggle {
  display: none;
}

@media (max-width: 760px) {
  .cc-header__inner {
    gap: 8px;
    padding: 10px 14px 12px;
  }

  .cc-header__top {
    gap: 8px;
  }

  .cc-brand__logo,
  .custom-logo-link img {
    width: auto;
    max-width: min(39vw, 160px);
    max-height: 42px;
  }

  .cc-header__actions {
    align-items: center;
    flex-direction: row;
    gap: 5px;
    margin-left: auto;
  }

  .cc-header__actions .cc-header-control,
  .cc-search-toggle {
    position: relative;
    width: 36px;
    min-width: 36px;
    min-height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 5px;
    background: transparent;
    color: #fff;
  }

  .cc-header__actions .cc-header-control .cc-icon,
  .cc-search-toggle .cc-icon {
    width: 18px;
    height: 18px;
  }

  .cc-header-control__label {
    display: none;
  }

  .cc-header__actions .cc-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 17px;
    height: 17px;
    padding-inline: 4px;
    border: 1px solid var(--cc-panel);
    font-size: 9px;
  }

  .cc-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .cc-header__actions .cc-cart-link--external {
    display: none;
  }

  .cc-menu-toggle {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
  }

  .cc-menu-toggle__icon,
  .cc-menu-toggle__icon::before,
  .cc-menu-toggle__icon::after {
    display: block;
    width: 15px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }

  .cc-menu-toggle__icon {
    position: relative;
  }

  .cc-menu-toggle__icon::before,
  .cc-menu-toggle__icon::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .cc-menu-toggle__icon::before {
    top: -5px;
  }

  .cc-menu-toggle__icon::after {
    top: 5px;
  }

  .cc-header__nav-row {
    display: none;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .cc-header__nav-row.is-open {
    display: flex;
  }

  .cc-header__nav-row.is-search-open .cc-nav {
    display: none;
  }

  .cc-header__nav-row.is-search-open .cc-header__search {
    display: flex;
  }

  .cc-nav,
  .cc-header__search {
    width: 100%;
    min-width: 0;
  }

  .cc-nav__list {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 8px;
  }

  .cc-nav__list a {
    display: block;
    padding: 9px 4px;
    font-size: 13px;
  }

  .cc-header__search {
    flex-basis: auto;
  }

  .cc-trade-pallet-card {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: start;
  }

  .cc-trade-pallet-card__image {
    align-self: start;
    width: 104px;
    height: 104px;
  }

  .cc-trade-pallet-card__image img {
    width: 104px;
    height: 104px;
    min-height: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
  }

  .cc-trade-pallet-card__body {
    gap: 6px;
    padding: 9px 10px 10px;
  }

  .cc-trade-pallet-card__kicker {
    font-size: 9px;
  }

  .cc-trade-pallet-card h2 {
    font-size: 13px;
    line-height: 1.25;
  }

  .cc-trade-pallet-meta {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cc-trade-pallet-meta div {
    padding: 5px 7px;
  }

  .cc-trade-pallet-meta dt {
    font-size: 8px;
  }

  .cc-trade-pallet-meta dd {
    font-size: 10px;
    line-height: 1.25;
  }

  .cc-trade-pallet-card__price {
    gap: 6px;
  }

  .cc-trade-pallet-card__price span,
  .cc-trade-pallet-card__price .price {
    font-size: 17px;
  }

  .cc-trade-pallet-card .cc-button {
    width: auto;
    min-height: 32px;
    padding: 7px 10px;
    font-size: 11px;
  }
}

@media (max-width: 390px) {
  .cc-menu-toggle {
    padding-inline: 6px;
    font-size: 10px;
  }

  .cc-header__actions .cc-header-control,
  .cc-search-toggle {
    width: 34px;
    min-width: 34px;
  }

  .cc-brand__logo,
  .custom-logo-link img {
    max-width: 34vw;
  }

  .cc-trade-pallet-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .cc-trade-pallet-card__image,
  .cc-trade-pallet-card__image img {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 640px) {
  .cc-welcome .cc-home-lead__copy .cc-kicker {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.08em;
  }

  .cc-home-lead__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 5px;
    width: 100%;
  }

  .cc-home-lead__actions .cc-button {
    width: 100%;
    min-height: 38px;
    padding: 7px 5px;
    gap: 4px;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
  }

  .cc-home-lead__actions .cc-icon {
    width: 14px;
    height: 14px;
  }

  .cc-trade-home__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 7px;
    width: 100%;
  }

  .cc-trade-home__actions .cc-button {
    width: 100%;
    min-height: 40px;
    padding: 8px 7px;
    gap: 5px;
    font-size: 11px;
    line-height: 1.15;
    text-align: center;
  }
}

