: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: 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;
}

.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 {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--cc-white);
  color: var(--cc-ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cc-header__inner {
  display: grid;
  max-width: var(--cc-width);
  min-height: 150px;
  margin-inline: auto;
  padding: 28px clamp(20px, 6vw, 72px);
  align-items: center;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
}

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

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

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

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

.custom-logo-link img {
  max-height: 80px;
  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: center;
  gap: 6px 22px;
}

.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;
  gap: 10px;
}

.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: 46px;
  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: 12px 18px;
  text-decoration: none;
}

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

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

.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-hero-strip {
  height: clamp(140px, 16vw, 230px);
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.18), rgba(247, 249, 252, 0) 18%, rgba(247, 249, 252, 0) 82%, rgba(247, 249, 252, 0.18)),
    url("../images/clearcycle-b-grade-stock-homepage-banner.png") center / cover no-repeat,
    #eef2f7;
}

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

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

.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-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.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-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;
}

.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 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);
}

.woocommerce-coming-soon-default {
  background:
    linear-gradient(180deg, rgba(0, 11, 59, 0.04), 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: var(--cc-paper);
}

.woocommerce-coming-soon-header {
  width: 100%;
  padding: 30px clamp(22px, 7vw, 104px) 24px !important;
  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) !important;
  color: var(--cc-text) !important;
  box-shadow: inset 0 -1px rgba(201, 211, 255, 0.16);
}

.woocommerce-coming-soon-header::before {
  content: "Immediate Payment Required";
  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 Manrope, Inter, sans-serif;
  letter-spacing: 0.12em;
}

.woocommerce-coming-soon-header::after {
  content: "";
  display: block;
  height: clamp(128px, 16vw, 224px);
  margin: 24px calc(clamp(22px, 7vw, 104px) * -1) -24px;
  background:
    linear-gradient(90deg, rgba(247, 249, 252, 0.22), rgba(247, 249, 252, 0) 18%, rgba(247, 249, 252, 0) 82%, rgba(247, 249, 252, 0.22)),
    url("../images/clearcycle-b-grade-stock-homepage-banner.png") center / cover no-repeat,
    #eef2f7;
}

.woocommerce-coming-soon-header .wp-block-site-title {
  color: var(--cc-text) !important;
  font-family: Manrope, Inter, sans-serif !important;
  font-size: clamp(32px, 4.4vw, 48px) !important;
  font-weight: 850 !important;
  letter-spacing: -0.02em !important;
}

.woocommerce-coming-soon-header .wp-block-site-title a {
  color: inherit !important;
  text-decoration: none;
}

.woocommerce-coming-soon-header .wp-block-site-title a::before {
  content: "C";
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cc-accent);
  color: var(--cc-ink);
  font-weight: 900;
  vertical-align: -0.08em;
}

.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-inline: auto;
  color: #27323c !important;
  font-family: Manrope, Inter, sans-serif !important;
  font-size: clamp(20px, 2vw, 28px) !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;
}

.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: flex;
  max-width: var(--cc-width);
  margin-inline: auto;
  padding: clamp(36px, 6vw, 72px) clamp(20px, 6vw, 72px);
  justify-content: space-between;
  gap: 24px;
}

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

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

.cc-footer__list {
  flex-direction: column;
  gap: 10px;
}

.cc-footer__list a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .cc-header__inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

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

@media (max-width: 640px) {
  .cc-announce {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

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

  .cc-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

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

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

  .cc-hero-strip {
    height: 118px;
  }

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

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

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