:root {
  --ck-black: #151515;
  --ck-orange: #ff5a36;
  --ck-orange-dark: #e94625;
  --ck-cream: #f7f7f3;
  --ck-white: #ffffff;
  --ck-yellow: #f4c84b;
  --ck-gray: #696969;
  --ck-border: #deded8;
  --ck-radius: 18px;
  --ck-shadow: 0 18px 50px rgba(21, 21, 21, 0.12);
  --ck-container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ck-body {
  margin: 0;
  color: var(--ck-black);
  background: var(--ck-cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.ck-body a {
  color: inherit;
  text-decoration: none;
}

.ck-container {
  width: 90vw;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.ck-announcement {
  color: var(--ck-white);
  background: var(--ck-black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ck-announcement__inner {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.ck-announcement a {
  color: var(--ck-orange) !important;
  border-bottom: 1px solid currentColor;
}

.ck-utility {
  border-bottom: 1px solid var(--ck-border);
  background: var(--ck-cream);
  font-size: 13px;
}

.ck-utility__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ck-utility__selectors,
.ck-utility__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ck-utility__selectors form,
.ck-utility__selectors .dropdown {
  margin: 0;
}

.ck-utility__links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ck-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--ck-border);
  background: rgba(247, 247, 243, 0.98);
  transition: box-shadow 180ms ease;
}

.ck-header.is-scrolled {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 30px rgba(21, 21, 21, 0.1);
}

.ck-header__main {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(300px, 560px) minmax(180px, 1fr);
  align-items: center;
  gap: 32px;
}

.ck-logo img {
  display: block;
  max-width: 240px;
  max-height: 64px;
}

.ck-logo__text,
.ck-footer__logo {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.ck-logo__text span,
.ck-footer__logo span {
  color: var(--ck-orange);
}

.ck-search input {
  height: 48px;
  border: 1px solid var(--ck-black);
  border-radius: 999px 0 0 999px;
  background: var(--ck-white);
  padding-left: 20px;
}

.ck-search button {
  min-width: 54px;
  height: 48px;
  color: var(--ck-white);
  border: 1px solid var(--ck-black);
  border-radius: 0 999px 999px 0;
  background: var(--ck-black);
}

.ck-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.ck-icon-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ck-border);
  border-radius: 50%;
  background: var(--ck-white);
  font-size: 18px;
}

.ck-cart #header-cart {
  margin: 0;
}

.ck-cart .btn {
  min-height: 46px;
  border-radius: 999px;
}

.ck-primary-nav {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-primary-nav__featured {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 56px);
  font-size: 14px;
  font-weight: 800;
}

.ck-primary-nav__featured a {
  position: relative;
  padding: 15px 0;
}

.ck-primary-nav__featured a::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ck-orange);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.ck-primary-nav__featured a:hover::after {
  transform: scaleX(1);
}

.ck-native-menu {
  display: none;
}

.ck-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 25%, rgba(255, 90, 54, 0.12), transparent 25%),
    var(--ck-cream);
}

.ck-hero__grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.ck-eyebrow {
  margin: 0 0 18px;
  color: var(--ck-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.ck-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 950;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.ck-hero h1 span {
  color: var(--ck-orange);
}

.ck-hero__description {
  max-width: 620px;
  margin: 28px 0 0;
  color: #4f4f4b;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
}

.ck-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ck-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 2px solid var(--ck-black);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.ck-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(21, 21, 21, 0.16);
}

.ck-button--primary {
  color: var(--ck-white) !important;
  border-color: var(--ck-orange);
  background: var(--ck-orange);
}

.ck-button--primary:hover {
  border-color: var(--ck-orange-dark);
  background: var(--ck-orange-dark);
}

.ck-button--secondary {
  background: transparent;
}

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

.ck-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  color: #555551;
  font-size: 13px;
  font-weight: 700;
}

.ck-proof-list span {
  color: var(--ck-orange);
}

.ck-hero__visual {
  position: relative;
  min-height: 510px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(222, 222, 216, 0.75));
  box-shadow: inset 0 0 0 1px rgba(21, 21, 21, 0.08);
}

.ck-hero__ring {
  position: absolute;
  border: 2px solid rgba(21, 21, 21, 0.12);
  border-radius: 50%;
}

.ck-hero__ring--one {
  width: 350px;
  height: 350px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.ck-hero__ring--two {
  width: 250px;
  height: 250px;
  top: 120px;
  left: 50%;
  border-color: rgba(255, 90, 54, 0.4);
  transform: translateX(-50%);
}

.ck-product-shape {
  position: absolute;
  z-index: 2;
}

.ck-product-shape--tag {
  width: 190px;
  height: 250px;
  top: 115px;
  left: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ck-white);
  border-radius: 46% 46% 28% 28%;
  background: var(--ck-orange);
  box-shadow: var(--ck-shadow);
  transform: rotate(-12deg);
}

.ck-product-shape--tag::before {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 22px;
  left: 50%;
  content: "";
  border: 8px solid var(--ck-cream);
  border-radius: 50%;
  transform: translateX(-50%);
}

.ck-product-shape--tag span {
  margin-top: 35px;
  font-size: 30px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.ck-product-shape--carabiner {
  width: 180px;
  height: 300px;
  top: 90px;
  right: 19%;
  border: 32px solid var(--ck-black);
  border-radius: 50%;
  box-shadow: var(--ck-shadow);
  transform: rotate(18deg);
}

.ck-product-shape--carabiner::after {
  position: absolute;
  width: 34px;
  height: 170px;
  top: 25px;
  right: -32px;
  content: "";
  border-radius: 20px;
  background: var(--ck-orange);
}

.ck-floating-label {
  position: absolute;
  z-index: 4;
  min-width: 160px;
  padding: 14px 18px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 12px;
  background: var(--ck-white);
  box-shadow: 0 12px 30px rgba(21, 21, 21, 0.12);
}

.ck-floating-label small,
.ck-floating-label strong {
  display: block;
}

.ck-floating-label small {
  color: var(--ck-orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.ck-floating-label strong {
  margin-top: 3px;
  font-size: 13px;
}

.ck-floating-label--top {
  top: 45px;
  right: 25px;
}

.ck-floating-label--bottom {
  bottom: 42px;
  left: 25px;
}

.ck-category-section {
  padding: 100px 0;
  background: var(--ck-white);
}

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

.ck-section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 62px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
}

.ck-section-heading > a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ck-black);
  font-size: 14px;
  font-weight: 900;
}

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

.ck-category-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--ck-radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.ck-category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--ck-shadow);
}

.ck-category-card--orange {
  color: var(--ck-white) !important;
  background: var(--ck-orange);
}

.ck-category-card--black {
  color: var(--ck-white) !important;
  background: var(--ck-black);
}

.ck-category-card--cream {
  background: #e8e6dc;
}

.ck-category-card--yellow {
  background: var(--ck-yellow);
}

.ck-category-card__number {
  position: absolute;
  top: 22px;
  left: 24px;
  font-size: 12px;
  font-weight: 900;
}

.ck-category-card__art {
  position: absolute;
  top: 62px;
  right: -8px;
  font-size: 210px;
  font-weight: 950;
  line-height: 1;
  opacity: 0.22;
  transform: rotate(-10deg);
}

.ck-category-card__art--outline {
  color: transparent;
  -webkit-text-stroke: 4px var(--ck-white);
}

.ck-category-card__content {
  position: relative;
  z-index: 2;
}

.ck-category-card h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.ck-category-card p {
  min-height: 48px;
  margin: 12px 0 25px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.ck-category-card__link {
  font-size: 13px;
  font-weight: 900;
}

.ck-process {
  padding: 100px 0;
  color: var(--ck-white);
  background: var(--ck-black);
}

.ck-section-heading--light {
  color: var(--ck-white);
}

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

.ck-process-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  border: 1px solid #3a3a3a;
  border-radius: var(--ck-radius);
  background: #1c1c1c;
}

.ck-process-card__number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--ck-orange);
  font-size: 12px;
  font-weight: 900;
}

.ck-process-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  color: var(--ck-black);
  border-radius: 50%;
  background: var(--ck-orange);
  font-size: 25px;
  font-weight: 900;
}

.ck-process-card h3 {
  margin: 0 0 14px;
  font-size: 23px;
  font-weight: 900;
}

.ck-process-card p {
  margin: 0;
  color: #bdbdb8;
  font-size: 14px;
  line-height: 1.7;
}

.ck-cta {
  padding: 70px 0;
  background: var(--ck-orange);
}

.ck-cta .ck-eyebrow {
  color: var(--ck-black);
}

.ck-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.ck-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ck-white);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
}

.ck-native-home-content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ck-footer {
  padding: 75px 0 25px;
  color: var(--ck-white);
  background: #0c0c0c;
}

.ck-footer__top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 55px;
}

.ck-footer__brand p {
  max-width: 360px;
  margin-top: 22px;
  color: #aaa;
  font-size: 14px;
  line-height: 1.7;
}

.ck-footer__brand .ck-footer__slogan {
  color: var(--ck-white);
  font-weight: 800;
}

.ck-footer__column h3 {
  margin: 0 0 22px;
  color: var(--ck-white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ck-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ck-footer__column li {
  margin: 12px 0;
}

.ck-footer__column a {
  color: #aaa !important;
  font-size: 14px;
}

.ck-footer__column a:hover {
  color: var(--ck-orange) !important;
}

.ck-footer__bottom {
  min-height: 65px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 25px;
  border-top: 1px solid #303030;
  color: #888;
  font-size: 12px;
}

.ck-footer__bottom p {
  margin: 0;
}

.ck-footer__payments {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ck-footer__payments strong {
  padding: 7px 10px;
  color: var(--ck-white);
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 11px;
}

@media (max-width: 1100px) {
  .ck-header__main {
    grid-template-columns: 200px 1fr auto;
    gap: 18px;
  }

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

  .ck-category-card {
    min-height: 390px;
  }

  .ck-footer__top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .ck-utility {
    display: none;
  }

  .ck-header__main {
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .ck-search {
    grid-column: 1 / -1;
    grid-row: 2;
    padding-bottom: 15px;
  }

  .ck-primary-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .ck-primary-nav__featured {
    width: max-content;
    justify-content: flex-start;
  }

  .ck-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ck-hero__visual {
    min-height: 480px;
  }

  .ck-process__grid {
    grid-template-columns: 1fr;
  }

  .ck-process-card {
    min-height: 250px;
  }

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

@media (max-width: 620px) {
  .ck-container {
    width: min(calc(100% - 28px), var(--ck-container));
  }

  .ck-announcement__inner {
    min-height: 44px;
    justify-content: center;
    text-align: center;
  }

  .ck-announcement__inner span {
    display: none;
  }

  .ck-logo__text {
    font-size: 21px;
  }

  .ck-header__actions .ck-icon-button {
    display: none;
  }

  .ck-primary-nav__featured {
    gap: 24px;
    font-size: 12px;
  }

  .ck-hero__grid {
    gap: 45px;
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .ck-hero h1 {
    font-size: 49px;
  }

  .ck-hero__actions {
    flex-direction: column;
  }

  .ck-button {
    width: 100%;
  }

  .ck-proof-list {
    display: grid;
  }

  .ck-hero__visual {
    min-height: 390px;
  }

  .ck-product-shape--tag {
    width: 140px;
    height: 195px;
    top: 100px;
    left: 15%;
  }

  .ck-product-shape--tag span {
    font-size: 23px;
  }

  .ck-product-shape--carabiner {
    width: 130px;
    height: 225px;
    top: 82px;
    right: 14%;
    border-width: 24px;
  }

  .ck-product-shape--carabiner::after {
    width: 27px;
    height: 125px;
    right: -24px;
  }

  .ck-floating-label {
    min-width: 135px;
    padding: 11px 13px;
  }

  .ck-category-section,
  .ck-process {
    padding: 70px 0;
  }

  .ck-section-heading {
    display: block;
  }

  .ck-section-heading > a {
    display: inline-block;
    margin-top: 20px;
  }

  .ck-category-grid {
    grid-template-columns: 1fr;
  }

  .ck-category-card {
    min-height: 380px;
  }

  .ck-cta__inner {
    display: block;
  }

  .ck-cta__inner .ck-button {
    margin-top: 30px;
  }

  .ck-footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ck-footer__bottom {
    display: block;
  }

  .ck-footer__payments {
    margin-top: 20px;
  }
}


/* =========================================================
   CoolKeychain official product photography
   ========================================================= */

.ck-hero__visual {
  isolation: isolate;
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  background: #deded8;
  box-shadow:
    inset 0 0 0 1px rgba(21, 21, 21, 0.08),
    0 24px 65px rgba(21, 21, 21, 0.14);
}

.ck-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 50%;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ck-hero__visual:hover .ck-hero__image {
  transform: scale(1.025);
}

.ck-hero__image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(21, 21, 21, 0.04) 30%,
      rgba(21, 21, 21, 0.24) 100%
    );
}

.ck-hero__visual .ck-floating-label {
  z-index: 3;
}

.ck-category-grid {
  align-items: stretch;
}

.ck-category-card {
  min-height: 0;
  display: flex;
  overflow: hidden;
  padding: 0;
  color: var(--ck-black);
  border: 1px solid var(--ck-border);
  border-radius: var(--ck-radius);
  background: var(--ck-cream);
}

.ck-category-card:hover {
  color: var(--ck-black);
}

.ck-category-card__media {
  position: relative;
  min-height: 330px;
  display: block;
  overflow: hidden;
  background: #e9e7df;
}

.ck-category-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(21, 21, 21, 0.06) 0%,
      transparent 35%,
      rgba(21, 21, 21, 0.08) 100%
    );
}

.ck-category-card__media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ck-category-card__media .ck-category-card__image--carabiner {
  object-position: center 42%;
}

.ck-category-card:hover .ck-category-card__media img {
  transform: scale(1.045);
}

.ck-category-card__number {
  z-index: 2;
  top: 18px;
  left: 18px;
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ck-white);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.88);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.ck-category-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 27px;
  background: var(--ck-cream);
}

.ck-category-card h3 {
  font-size: 25px;
  line-height: 1.08;
}

.ck-category-card h3 a {
  color: var(--ck-black);
}

.ck-category-card p {
  min-height: 68px;
  margin: 13px 0 22px;
  color: #62625d;
  opacity: 1;
}

.ck-category-card__link {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  color: var(--ck-black);
  border-bottom: 2px solid var(--ck-orange);
}

.ck-category-card__link:hover {
  color: var(--ck-orange-dark);
}

@media (max-width: 1100px) {
  .ck-hero__visual {
    min-height: 520px;
  }

  .ck-category-card__media,
  .ck-category-card__media img {
    min-height: 390px;
  }
}

@media (max-width: 900px) {
  .ck-hero__visual {
    min-height: 560px;
  }

  .ck-hero__image {
    object-position: center center;
  }
}

@media (max-width: 620px) {
  .ck-hero__visual {
    min-height: 430px;
    border-radius: 24px;
  }

  .ck-floating-label--top {
    top: 18px;
    right: 14px;
  }

  .ck-floating-label--bottom {
    bottom: 18px;
    left: 14px;
  }

  .ck-category-card__media,
  .ck-category-card__media img {
    min-height: 390px;
  }

  .ck-category-card__content {
    padding: 23px 22px 25px;
  }

  .ck-category-card p {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ck-hero__image,
  .ck-category-card__media img {
    transition: none;
  }

  .ck-hero__visual:hover .ck-hero__image,
  .ck-category-card:hover .ck-category-card__media img {
    transform: none;
  }
}


/* =========================================================
   CoolKeychain responsive and visibility corrections
   ========================================================= */

html,
body.ck-body {
  max-width: 100%;
  overflow-x: clip;
}

.ck-header__main > *,
.ck-hero__grid > *,
.ck-category-grid > *,
.ck-process__grid > * {
  min-width: 0;
}

/* Mobile navigation toggle */

.ck-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--ck-black);
  border: 1px solid var(--ck-border);
  border-radius: 50%;
  background: var(--ck-white);
  cursor: pointer;
}

.ck-menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.ck-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ck-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.ck-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero overflow correction */

.ck-hero__content {
  min-width: 0;
  max-width: 100%;
}

.ck-hero h1,
.ck-hero h1 span,
.ck-hero__description {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.ck-hero h1 span {
  display: inline;
}

.ck-hero__actions,
.ck-proof-list {
  max-width: 100%;
}

/* Give product media a definite ratio instead of intrinsic 900px height */

.ck-category-card__media {
  min-height: 0;
  aspect-ratio: 4 / 5;
}

.ck-category-card__media img,
.ck-category-card__media .ck-category-card__image--carabiner {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.ck-category-card__number {
  position: absolute !important;
  z-index: 4;
  top: 16px !important;
  left: 16px !important;
  min-width: 42px;
  width: 42px;
  height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.88) !important;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

/* Bootstrap defines heading colors directly, so inheritance is insufficient */

.ck-process .ck-section-heading h2,
.ck-process .ck-process-card h3 {
  color: var(--ck-white);
}

.ck-process-card p {
  color: #bdbdb8;
}

/* CTA headings must also override Bootstrap heading variables */

.ck-cta h2 {
  color: var(--ck-white);
}

@media (max-width: 900px) {
  .ck-menu-toggle {
    display: inline-flex;
  }

  .ck-header__actions {
    gap: 8px;
  }

  .ck-primary-nav {
    min-height: 0;
    display: none;
    overflow: visible;
    padding: 8px 0 18px;
  }

  .ck-primary-nav.is-open {
    display: block;
  }

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

  .ck-primary-nav__featured a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border: 1px solid var(--ck-border);
    border-radius: 10px;
    background: var(--ck-white);
    text-align: center;
  }

  .ck-primary-nav__featured a::after {
    display: none;
  }

  .ck-category-card__media {
    aspect-ratio: 4 / 4.65;
  }
}

@media (max-width: 620px) {
  .ck-header__main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .ck-logo {
    min-width: 0;
  }

  .ck-logo img {
    max-width: 155px;
    height: auto;
  }

  .ck-logo__text {
    display: inline-block;
    max-width: 158px;
    font-size: 20px;
    white-space: nowrap;
  }

  /*
   * Native OpenCart cart text is too wide beside the mobile menu.
   * Keep the cart icon while hiding its long text visually.
   */
  .ck-cart .btn {
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    white-space: nowrap;
  }

  .ck-cart .btn i,
  .ck-cart .btn .fa-solid,
  .ck-cart .btn .fa-shopping-cart {
    margin: 0;
    font-size: 17px;
  }

  .ck-search {
    width: 100%;
    min-width: 0;
  }

  .ck-search form,
  .ck-search .input-group {
    width: 100%;
    min-width: 0;
  }

  .ck-search input {
    min-width: 0;
  }

  .ck-hero h1 {
    font-size: clamp(42px, 12.2vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  .ck-hero__description {
    font-size: 17px;
    line-height: 1.6;
  }

  .ck-hero__actions {
    width: 100%;
  }

  .ck-hero__actions .ck-button {
    width: 100%;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
  }

  .ck-category-card__media {
    aspect-ratio: 4 / 5;
  }

  .ck-category-card__media img,
  .ck-category-card__media .ck-category-card__image--carabiner {
    min-height: 0;
  }

  .ck-process .ck-section-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
}


/* Fixed-header offset for the How It Works anchor */
#how-it-works {
  scroll-margin-top: 140px;
}

@media (max-width: 900px) {
  #how-it-works {
    scroll-margin-top: 110px;
  }
}
