:root {
  --black: #050505;
  --black-soft: #111111;
  --gold: #f3c96b;
  --red: #d63819;
  --red-dark: #a72413;
  --cream: #f8f1e7;
  --white: #ffffff;
  --ink: #241812;
  --muted: #715f50;
  --radius: 8px;
  --max: 1180px;
  --home-espresso: #15100b;
  --home-moka: #241812;
  --home-gold: #d9aa55;
  --home-gold-soft: #f2d59a;
  --home-cream: #fff7ea;
  --home-paper: #fbf1e2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--home-paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f7a847 46%, var(--red));
  color: var(--black);
}

.btn-secondary {
  border-color: rgba(243, 201, 107, .35);
  background: rgba(248, 241, 231, .06);
  color: var(--cream);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--gold);
}

.home-reference {
  background: var(--home-paper);
  color: var(--ink);
}

.cj-topbar {
  height: 38px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 7vw;
  background: linear-gradient(90deg, #140d08, #23160f 48%, #140d08);
  border-bottom: 1px solid rgba(242, 213, 154, .18);
  color: #f7e8ca;
  font-size: .84rem;
}

.cj-topbar b {
  margin: 0 11px;
  color: rgba(243, 201, 107, .72);
}

.topbar-center {
  text-align: center;
}

.topbar-left {
  text-align: left;
}

.topbar-right {
  text-align: right;
}

.cj-header {
  position: absolute;
  z-index: 50;
  top: 38px;
  left: 0;
  right: 0;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 210px minmax(420px, 1fr) 330px 210px;
  align-items: center;
  gap: 28px;
  padding: 0 7vw;
  background: linear-gradient(180deg, rgba(20, 13, 8, .92), rgba(20, 13, 8, .42), transparent);
  border-bottom: 1px solid rgba(255, 245, 228, .08);
  color: #fffaf3;
  backdrop-filter: blur(12px);
}

.cj-logo {
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.2vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -.04em;
}

.brand-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.cj-logo span,
.cj-logo em,
.cj-eyebrow,
.cj-nav a:hover {
  color: var(--home-gold);
}

.cj-logo-image {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  min-height: 52px;
}

.cj-logo-image img {
  width: clamp(142px, 11vw, 210px);
  max-height: 58px;
  object-fit: contain;
}

.cj-logo-image .cj-logo-fallback {
  display: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.2vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -.04em;
  color: #fffaf3;
}

.cj-logo-image .cj-logo-fallback em {
  font-style: normal;
}

.cj-logo-image.is-missing img {
  display: none;
}

.cj-logo-image.is-missing .cj-logo-fallback {
  display: inline-block;
}

.cj-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 250, 243, .94);
  font-size: .95rem;
}

.cj-nav a,
.cj-actions a {
  color: #fff2df;
}

.cj-search {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(242, 213, 154, .22);
  border-radius: 999px;
  background: rgba(255, 248, 235, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.cj-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff8ec;
  font: inherit;
}

.cj-search input::placeholder {
  color: rgba(255, 242, 223, .72);
}

.cj-search button {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fffaf3;
  cursor: pointer;
}

.cj-search button::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cj-search button::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.cj-actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: .78rem;
}

.cj-actions a {
  display: grid;
  justify-items: center;
  gap: 5px;
}

.cj-actions span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #d7aa5f;
  border-radius: 50%;
}

.cj-actions a:nth-child(2) span {
  border-radius: 10px 10px 14px 14px;
  transform: rotate(45deg);
}

.cj-actions a:nth-child(3) span {
  border-radius: 5px;
}

.cj-actions em {
  position: absolute;
  right: -11px;
  top: -12px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d7aa5f;
  color: #241812;
  font-size: .7rem;
  font-style: normal;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(248, 241, 231, .18);
  border-radius: var(--radius);
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.cj-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(460px, .88fr) minmax(640px, 1.12fr);
  align-items: stretch;
  overflow: hidden;
  padding: 156px 7vw 56px;
  background:
    linear-gradient(90deg, rgba(10, 6, 4, .96) 0%, rgba(15, 9, 5, .9) 28%, rgba(18, 10, 5, .54) 47%, rgba(18, 10, 5, .12) 68%, rgba(18, 10, 5, .02) 100%),
    linear-gradient(180deg, rgba(7, 4, 2, .25), rgba(7, 4, 2, .3)),
    url("../img/clickjoy/gallery-4.avif") center right / cover no-repeat;
}

.cj-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(255, 238, 198, .05) 0 1px, transparent 1px 118px);
}

.cj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(23, 16, 11, .52));
  pointer-events: none;
}

.cj-hero-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 49vw);
  max-width: 760px;
  padding-top: 0;
}

.cj-eyebrow {
  margin: 0 0 24px;
  font-size: .94rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cj-hero h1 {
  max-width: 850px;
  margin: 0 0 26px;
  color: #fffaf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.7rem, 7.15vw, 8rem);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.055em;
  text-shadow: 0 22px 60px rgba(0, 0, 0, .42);
}

.cj-hero h1 span {
  color: #e7c88f;
}

.cj-hero-copy > p:not(.cj-eyebrow) {
  max-width: 500px;
  color: rgba(255, 244, 224, .94);
  font-size: 1.09rem;
  line-height: 1.55;
}

.cj-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.cj-hero-actions .btn {
  width: auto;
  min-width: 168px;
  min-height: 52px;
  border-radius: 8px;
  font-weight: 900;
}

.cj-hero-actions .btn-primary {
  background: linear-gradient(135deg, #f4d58f, #c88c32);
  color: #21150d;
  box-shadow: 0 18px 34px rgba(201, 140, 50, .22);
}

.cj-hero-actions .btn-secondary {
  border-color: rgba(232, 194, 134, .5);
  background: rgba(14, 9, 6, .32);
  color: #f9ead2;
}

.cj-hero-trust {
  max-width: 720px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  color: #fff2df;
  font-size: .9rem;
}

.cj-hero-trust span {
  position: relative;
  padding-left: 34px;
}

.cj-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(242, 213, 154, .7);
  border-radius: 50%;
  background: rgba(217, 170, 85, .16);
  box-shadow: 0 0 0 5px rgba(217, 170, 85, .07);
}

.cj-hero-art {
  display: none;
}

.hero-street,
.hero-mascot-card {
  display: none;
}

.cj-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.cj-section-head h2 {
  margin-bottom: 12px;
  color: #25170f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.cj-section-head h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 12px;
  background: #c58a2a;
}

.cj-section-head a {
  color: #241812;
  font-weight: 800;
}

.cj-brand-3d-section {
  position: relative;
  overflow: hidden;
  padding: 58px 7vw 66px;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 170, 85, .18), transparent 32%),
    linear-gradient(180deg, #fbf0df 0%, #fff8ec 46%, #f4e4cb 100%);
}

.cj-brand-3d-section .cj-section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.cj-brand-3d-section .cj-section-head p {
  max-width: 520px;
  margin: 10px auto 0;
  color: #715f50;
  line-height: 1.6;
}

.cj-brand-3d-carousel {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.lus3d-stage {
  position: relative;
  height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.lus3d-card {
  position: absolute;
  width: min(760px, 84vw);
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, .13);
  border-radius: 24px;
  background: rgba(255, 253, 247, .9);
  box-shadow: 0 34px 90px rgba(51, 31, 18, .18);
  opacity: 0;
  filter: saturate(.96);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease, box-shadow .45s ease;
  will-change: transform, opacity, filter;
}

.lus3d-card.is-active {
  z-index: 4;
  opacity: 1;
  filter: saturate(1);
  transform: translateX(0) translateZ(120px) rotateY(0deg) scale(1);
}

.lus3d-card.is-prev {
  z-index: 3;
  opacity: .58;
  transform: translateX(-54%) translateZ(-80px) rotateY(16deg) scale(.78);
}

.lus3d-card.is-next {
  z-index: 3;
  opacity: .58;
  transform: translateX(54%) translateZ(-80px) rotateY(-16deg) scale(.78);
}

.lus3d-card.is-far {
  z-index: 1;
  opacity: .22;
  filter: blur(.5px) saturate(.78);
  transform: translateX(0) translateZ(-220px) scale(.74);
}

.lus3d-media {
  position: relative;
  min-height: 365px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 56, 25, .14), transparent 30%),
    linear-gradient(135deg, #fffaf3, #f2dfc2);
}

.lus3d-static-preview,
.lus3d-empty-preview {
  display: grid;
  place-items: center;
}

.lus3d-static-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lus3d-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 44%, rgba(36, 24, 18, .2)),
    linear-gradient(90deg, rgba(255, 250, 243, .78), transparent 42%);
}

.cj-brand-placeholder {
  width: 100%;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 201, 107, .18), transparent 30%),
    linear-gradient(135deg, #fffaf2, #f3e5cf);
  color: #241812;
}

.cj-brand-placeholder span {
  display: block;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cj-brand-placeholder strong {
  display: block;
  margin-top: 8px;
  color: #8a5a1d;
  font-size: .9rem;
}

.lus3d-card-copy {
  position: relative;
  z-index: 3;
  padding: 26px 30px 30px;
  background: linear-gradient(180deg, rgba(255, 253, 247, .94), rgba(255, 248, 236, .98));
}

.lus3d-card-copy p:first-child {
  margin: 0 0 8px;
  color: #a66d1e;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lus3d-card-copy h3 {
  margin: 0;
  color: #241812;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.lus3d-card-copy p:not(:first-child) {
  max-width: 560px;
  margin: 12px 0 20px;
  color: #715f50;
  font-size: 1rem;
  line-height: 1.55;
}

.lus3d-card-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4d58f, #c88c32);
  color: #241812;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(201, 140, 50, .2);
}

.lus3d-control {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 999px;
  background: rgba(255, 253, 247, .84);
  color: #241812;
  box-shadow: 0 16px 38px rgba(51, 31, 18, .14);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.lus3d-control:hover,
.lus3d-control:focus-visible {
  background: #fffaf3;
  transform: translateY(-50%) scale(1.06);
}

.lus3d-prev {
  left: 0;
}

.lus3d-next {
  right: 0;
}

.lus3d-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -18px;
}

.lus3d-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 24, 18, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.lus3d-dots button.is-active {
  width: 32px;
  background: #c88c32;
}

.cj-brand-card {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(190px, 1fr);
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .88), rgba(255, 247, 234, .74));
  box-shadow: 0 18px 42px rgba(51, 31, 18, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cj-brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(51, 31, 18, .13);
}

.cj-brand-copy {
  padding: 28px 0 24px 26px;
}

.cj-brand-copy > p:first-child {
  color: #a66d1e;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cj-brand-copy h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.cj-brand-copy p {
  color: #715f50;
  font-size: .9rem;
}

.cj-brand-copy a {
  color: #241812;
  font-weight: 800;
}

.cj-brand-media {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  border-left: 1px solid rgba(36, 24, 18, .08);
  background: linear-gradient(145deg, #f8ead8, #fff8ec);
}

.cj-brand-preview-link {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
}

.cj-products-section {
  padding: 76px 4.5vw 92px;
  background:
    radial-gradient(circle at 18% 8%, rgba(216, 154, 54, .16), transparent 28%),
    linear-gradient(180deg, #fff6e8 0%, #fff1dc 100%);
}

.cj-products-section .cj-section-head {
  width: min(1500px, 100%);
  margin: 0 auto 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.cj-products-section .cj-section-head h2 {
  margin: 0;
  color: #9b1113;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.2vw, 3.65rem);
  font-weight: 700;
  line-height: 1.05;
}

.cj-products-section .cj-section-head h2::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, #d89a36 0 72%, transparent 72% 100%);
}

.cj-products-section .cj-section-head h2::before {
  content: "✦";
  position: absolute;
  margin-top: calc(1.05em + 15px);
  margin-left: 108px;
  color: #d89a36;
  font-size: 20px;
  line-height: 1;
}

.cj-products-section .cj-section-head a {
  margin-top: 16px;
  color: #9b1113;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 800;
  white-space: nowrap;
}

.cj-products-section .cj-section-head a::after {
  content: "›";
  margin-left: 14px;
  color: #c9781e;
  font-size: 1.45em;
  line-height: 0;
}

.store-tabs {
  width: min(1500px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 48px;
  padding: 24px 28px;
  border: 1px solid rgba(216, 154, 54, .44);
  border-radius: 999px;
  background: rgba(255, 252, 246, .78);
  box-shadow: 0 18px 44px rgba(79, 38, 18, .08), inset 0 1px 0 rgba(255, 255, 255, .85);
}

.store-tab {
  min-width: 142px;
  min-height: 56px;
  padding: 13px 28px;
  border: 1px solid rgba(216, 154, 54, .36);
  border-radius: 999px;
  background: rgba(255, 252, 246, .82);
  color: #2d1712;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.store-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 154, 54, .62);
}

.store-tab.is-active {
  border-color: rgba(42, 15, 8, .8);
  background: linear-gradient(135deg, #2d1712 0%, #150a06 100%);
  color: #fff8ec;
  box-shadow: 0 14px 28px rgba(42, 15, 8, .18);
}

.cj-product-grid {
  width: min(1500px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 42px;
  min-height: 0;
}

.cj-product-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(216, 154, 54, .24);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 253, 247, .96), rgba(255, 247, 233, .9));
  box-shadow: 0 22px 54px rgba(79, 38, 18, .1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.cj-product-card > a {
  display: block;
}

.cj-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(79, 38, 18, .14);
}

.media-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1009, #111, #7e2113);
}

.cj-product-card .media-wrap {
  aspect-ratio: 1.18 / 1;
  background: linear-gradient(145deg, #f7ead7, #fff8ec);
}

.media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-art {
  display: none;
}

.image-missing img {
  display: none;
}

.image-missing .placeholder-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(145deg, #f7ead7, #fff8ec);
  color: rgba(36, 24, 18, .58);
  font-weight: 900;
}

.wishlist-button {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 18px;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216, 154, 54, .28);
  border-radius: 50%;
  background: rgba(255, 252, 246, .94);
  color: #9b1113;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(79, 38, 18, .1);
  cursor: pointer;
}

.product-badge {
  position: absolute;
  z-index: 3;
  left: 12px;
  top: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: #a72413;
  font-size: .74rem;
  font-weight: 900;
}

.card-body {
  min-height: 250px;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  padding: 28px 28px 30px;
}

.card-body p {
  color: inherit;
  opacity: .78;
}

.card-body > p:not(.card-label) {
  min-height: 2.9em;
  margin: 0;
  color: rgba(45, 23, 18, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.45;
}

.card-label {
  width: max-content;
  margin: 0 0 18px;
  padding: 7px 14px;
  border-radius: 8px;
  background: rgba(216, 154, 54, .18);
  color: rgba(45, 23, 18, .74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .98rem;
  font-weight: 800;
}

.cj-product-card h3 {
  min-height: 2.35em;
  margin: 0 0 16px;
  color: #2d1712;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.18;
  font-weight: 700;
}

.cj-product-card h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin-top: 20px;
  background: #d89a36;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  min-height: 36px;
  margin: 22px 0 20px;
}

.price-row strong {
  color: #9b1113;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.cj-product-card .btn-small {
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  border: 2px solid #d89a36;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d1712 0%, #150a06 100%);
  color: #fff8ec;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12), 0 14px 26px rgba(42, 15, 8, .14);
}

.cj-product-card .btn-small::after {
  content: "›";
  margin-left: 14px;
  color: #d89a36;
  font-size: 1.45em;
  line-height: 0;
}

.cj-product-skeleton {
  min-height: 320px;
  border: 1px solid rgba(36, 24, 18, .1);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent) -240px 0 / 240px 100% no-repeat,
    linear-gradient(145deg, #f6e7d2, #fff8ec);
  box-shadow: 0 18px 42px rgba(51, 31, 18, .06);
  animation: cjSkeletonSweep 1.4s ease-in-out infinite;
}

@keyframes cjSkeletonSweep {
  to {
    background-position: 240px 0, 0 0;
  }
}

.price-row span {
  color: var(--muted);
  text-decoration: line-through;
}

.cj-service-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0;
  padding: 22px 7vw;
  border-top: 1px solid rgba(36, 24, 18, .1);
  border-bottom: 1px solid rgba(36, 24, 18, .1);
  background: #fff7ea;
}

.cj-service-row span {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.cj-service-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border: 1px solid #c58a2a;
  border-radius: 50%;
}

.cj-service-row small {
  color: #715f50;
  font-weight: 500;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
}

.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-warm {
  color: var(--cream);
  background: linear-gradient(135deg, var(--red-dark), #3c140d 50%, var(--black));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.centered {
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.section h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(248, 241, 231, .24);
  border-radius: 999px;
  background: rgba(248, 241, 231, .08);
  color: var(--cream);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(248, 241, 231, .1);
  background: #17100b;
  color: rgba(248, 241, 231, .74);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  cursor: pointer;
}

.site-footer .footer-brand-logo {
  min-height: 58px;
  display: inline-flex;
}

.site-footer .footer-brand-logo img {
  width: clamp(150px, 13vw, 230px);
  max-height: 64px;
  object-fit: contain;
}

.site-footer .footer-brand-logo .cj-logo-fallback {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
}

.newsletter-form {
  display: grid;
  grid-template-columns: auto minmax(180px, 260px) auto;
  align-items: center;
  gap: 10px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(248, 241, 231, .18);
  border-radius: 999px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.newsletter-form button {
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

@media (max-width: 1280px) {
  .cj-header {
    grid-template-columns: 190px 1fr 280px;
  }

  .cj-actions {
    display: none;
  }

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

  .cj-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 1180px) {
  .cj-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .cj-hero-copy {
    width: min(680px, 58vw);
  }
}

@media (max-width: 920px) {
  .cj-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

@media (max-width: 760px) {
  .cj-topbar {
    height: auto;
    grid-template-columns: 1fr;
    padding: 8px 18px;
    text-align: center;
  }

  .topbar-right {
    text-align: center;
  }

  .cj-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 14px 18px;
    background: rgba(20, 13, 8, .96);
  }

  .menu-toggle {
    display: block;
  }

  .cj-nav,
  .cj-search {
    display: none;
  }

  .cj-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    padding: 12px 0 4px;
  }

  .cj-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 58px 18px 34px;
    background:
      linear-gradient(90deg, rgba(10, 6, 4, .96) 0%, rgba(15, 9, 5, .82) 52%, rgba(18, 10, 5, .2) 100%),
      url("../img/clickjoy/gallery-4.avif") center right / cover no-repeat;
  }

  .cj-hero-copy {
    width: 100%;
  }

  .cj-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .cj-hero-actions,
  .cj-hero-trust,
  .cj-service-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .cj-hero-actions .btn {
    width: 100%;
  }

  .cj-brand-3d-section {
    padding: 42px 18px 48px;
  }

  .lus3d-stage {
    height: 560px;
    perspective: none;
  }

  .lus3d-card {
    width: 100%;
    min-height: 470px;
  }

  .lus3d-card.is-active {
    transform: translateX(0) scale(1);
  }

  .lus3d-card.is-prev,
  .lus3d-card.is-next,
  .lus3d-card.is-far {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(.94);
  }

  .lus3d-media {
    min-height: 290px;
  }

  .lus3d-control {
    top: 44%;
    width: 42px;
    height: 42px;
  }

  .lus3d-prev {
    left: 8px;
  }

  .lus3d-next {
    right: 8px;
  }

  .cj-products-section {
    padding: 48px 18px 58px;
  }

  .cj-products-section .cj-section-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .cj-products-section .cj-section-head h2 {
    font-size: 2.1rem;
  }

  .cj-products-section .cj-section-head a {
    margin-top: 0;
    font-size: 1.05rem;
  }

  .cj-product-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 22px;
  }

  .cj-product-card h3 {
    min-height: auto;
  }

  .cj-product-card {
    min-height: 0;
  }

  .card-body {
    min-height: 0;
  }

  .store-tabs {
    justify-content: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    overflow-x: auto;
  }

  .store-tab {
    min-width: max-content;
    min-height: 44px;
    padding: 10px 16px;
    font-size: .98rem;
  }

  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }

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