@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap");

.cj-home-new-wrap {
  --cj-ivory: #F7F4EE;
  --cj-ink: #1E1B16;
  --cj-gold: #D4AF37;
  --cj-green: #1F3D34;
  --cj-leather: #8A5A2B;
  --cj-surface: #FBF8F2;
  --cj-new-cream: #F7F4EE;
  --cj-new-cream-2: #fff2df;
  --cj-new-paper: rgba(255, 252, 246, 0.92);
  --cj-new-gold: #D4AF37;
  --cj-new-gold-2: #f1c56b;
  --cj-new-copper: #8A5A2B;
  --cj-new-red: #1E1B16;
  --cj-new-red-2: #1E1B16;
  --cj-new-cta: #1E1B16;
  --cj-new-brown: #1E1B16;
  --cj-new-muted: #6a5449;
  --cj-new-line: rgba(216, 154, 54, 0.28);
  --cj-new-line-strong: rgba(216, 154, 54, 0.44);
  --cj-new-shadow: 0 18px 45px rgba(79, 38, 18, 0.1);
  --cj-new-shadow-soft: 0 10px 28px rgba(79, 38, 18, 0.07);
  --cj-signature-font: "Caveat", "Segoe Script", "Bradley Hand ITC", cursive;
  width: 100%;
  color: var(--cj-new-brown);
  background: linear-gradient(180deg, #fff 0%, #fffdf9 18%, #fbf8f2 100%);
  font-family: inherit;
  overflow-x: clip;
}

.cj-home-new-wrap *,
.cj-home-new-wrap *::before,
.cj-home-new-wrap *::after {
  box-sizing: border-box;
}

.cj-home-new-wrap a {
  color: inherit;
  text-decoration: none;
}

.cj-home-new-wrap svg {
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cj-home-new-header {
  width: min(1580px, calc(100% - 96px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px 1fr 500px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(30, 27, 22, 0.1);
  background: #fff;
}

.cj-new-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.7vw, 46px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: var(--cj-new-red);
}

.cj-new-logo span {
  color: var(--cj-new-gold);
}

.cj-new-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 2.2vw, 38px);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 17px;
}

.cj-new-menu > a,
.cj-new-dropdown-btn {
  color: #1f1512;
  transition: color 0.2s ease;
}

.cj-new-menu > a:hover,
.cj-new-dropdown-btn:hover {
  color: var(--cj-new-red);
}

.cj-new-dropdown {
  position: relative;
  padding: 28px 0;
}

.cj-new-dropdown-btn {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.cj-new-dropdown-btn svg {
  width: 14px;
  height: 14px;
  color: var(--cj-new-gold);
  stroke-width: 2.4;
}

.cj-new-dropdown-panel {
  position: absolute;
  left: 50%;
  top: 66px;
  transform: translateX(-50%);
  width: 245px;
  padding: 14px 0;
  border-radius: 14px;
  background: rgba(255, 251, 242, 0.98);
  border: 1px solid var(--cj-new-line-strong);
  box-shadow: 0 18px 38px rgba(64, 31, 15, 0.16);
  opacity: 0;
  pointer-events: none;
  translate: 0 -8px;
  transition: opacity 0.2s ease, translate 0.2s ease;
  z-index: 20;
}

.cj-new-dropdown:hover .cj-new-dropdown-panel,
.cj-new-dropdown.cj-new-is-open .cj-new-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
}

.cj-new-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: rgba(255, 251, 242, 0.98);
  border-left: 1px solid var(--cj-new-line-strong);
  border-top: 1px solid var(--cj-new-line-strong);
  transform: translateX(-50%) rotate(45deg);
}

.cj-new-dropdown-panel a {
  min-height: 44px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
  color: #2f1d18;
  transition: background 0.2s ease, color 0.2s ease;
}

.cj-new-dropdown-panel a:hover {
  background: rgba(216, 154, 54, 0.12);
  color: var(--cj-new-red);
}

.cj-new-mini-icon {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(216, 154, 54, 0.1);
  border: 1px solid rgba(216, 154, 54, 0.2);
  color: var(--cj-new-copper);
  flex: 0 0 auto;
}

.cj-new-mini-icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.9;
}

.cj-new-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.cj-new-search {
  width: min(340px, 100%);
  height: 44px;
  border-radius: 9px;
  border: 1px solid rgba(30, 27, 22, 0.14);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 8px 0 17px;
  box-shadow: none;
}

.cj-new-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  color: var(--cj-new-brown);
}

.cj-new-search input::placeholder {
  color: #8f7f73;
}

.cj-new-search button {
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #111820;
}

.cj-new-search svg {
  width: 23px;
  height: 23px;
  stroke-width: 2;
}

.cj-new-action-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #101417;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.cj-new-action-icon:hover {
  background: rgba(216, 154, 54, 0.12);
  color: var(--cj-new-red);
}

.cj-new-action-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.85;
}

.cj-new-cart span {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--cj-ivory);
  background: var(--cj-ink);
  box-shadow: 0 0 0 2px var(--cj-new-cream);
}

.cj-new-mobile-toggle {
  display: none;
}

.cj-home-new-hero {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 520px;
  padding: 44px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(390px, 40fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.cj-new-visual {
  position: relative;
  height: clamp(420px, 34vw, 462px);
  align-self: center;
  border-radius: 0;
  overflow: hidden;
  background: #f7f2e9;
  box-shadow: none;
}

.cj-new-hero-track,
.cj-new-hero-slide {
  position: absolute;
  inset: 0;
}

.cj-new-hero-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease;
}

.cj-new-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.cj-new-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cj-new-hero-dots {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 18px;
  display: flex;
  gap: 7px;
}

.cj-new-hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
}

.cj-new-hero-dots button.is-active { background: var(--cj-new-gold); }

.cj-new-hero-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 12px;
  align-items: end;
}

.cj-new-clicky-image {
  width: 152px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: none;
  filter: none;
  pointer-events: none;
}

.cj-new-hero-copy {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 560px;
  justify-self: start;
  padding-top: 0;
}

.cj-new-hero-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 4.1vw, 62px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  color: var(--cj-new-red);
  margin: 0 0 20px;
  text-shadow: none;
}

.cj-new-hero-copy h1.cj-new-signature-title {
  display: block;
  max-width: 520px;
  font-family: var(--cj-signature-font);
  font-size: 74px;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  color: var(--cj-new-gold);
}

.cj-new-signature-title span {
  display: block;
}

.cj-new-signature-title .cj-new-reveal-little {
  color: var(--cj-new-red);
}

.cj-new-signature-title .cj-new-reveal-beautiful {
  color: var(--cj-new-gold);
}

.cj-new-hero-copy h1 strong {
  color: var(--cj-new-brown);
  font-weight: 700;
}

.cj-new-hero-copy h1 em {
  color: var(--cj-new-gold);
  font-style: italic;
  font-weight: 700;
}

.cj-new-hero-copy h1 span {
  color: var(--cj-new-gold);
}

.cj-new-hero-copy h1 .cj-new-reveal-brand {
  display: inline-block;
  color: var(--cj-new-red);
  animation: cj-hero-brand-reveal 0.9s ease-out both;
}

.cj-new-reveal-little {
  display: inline-block;
  animation: cj-hero-little-reveal 0.95s 0.12s cubic-bezier(.2, .72, .25, 1) both;
}

.cj-new-reveal-beautiful {
  position: relative;
  display: inline-block;
  overflow: hidden;
  animation: cj-hero-beautiful-reveal 1s 0.2s ease-out both;
}

.cj-new-reveal-beautiful::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 250, 218, .72) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: cj-hero-gold-pass 0.7s 0.48s ease-out both;
  pointer-events: none;
}

.cj-new-signature-title .cj-new-reveal-little,
.cj-new-signature-title .cj-new-reveal-beautiful {
  display: block;
  overflow: visible;
}

.cj-new-signature-title .cj-new-reveal-beautiful {
  font-style: normal;
}

@keyframes cj-hero-brand-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cj-hero-little-reveal {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cj-hero-beautiful-reveal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cj-hero-gold-pass {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
  .cj-new-hero-slide,
  .cj-new-reveal-brand,
  .cj-new-reveal-little,
  .cj-new-reveal-beautiful,
  .cj-new-reveal-beautiful::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

.cj-new-title-divider {
  width: 58px;
  height: 19px;
  margin: 0 0 20px;
  background: linear-gradient(var(--cj-new-gold), var(--cj-new-gold)) center / 100% 1px no-repeat;
}

.cj-new-hero-copy p {
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  color: #34231d;
  margin: 0;
  max-width: 570px;
}

.cj-new-hero-buttons {
  margin-top: 34px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 3;
}

.cj-new-btn {
  height: 53px;
  min-width: 216px;
  padding: 0 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cj-new-btn:hover {
  transform: translateY(-1px);
  background: var(--cj-ivory) !important;
  color: var(--cj-ink) !important;
  border-color: var(--cj-gold) !important;
}

.cj-new-btn svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.8;
}

.cj-new-btn-primary {
  color: var(--cj-ivory);
  background: var(--cj-new-cta);
  box-shadow: 0 16px 30px rgba(30, 27, 22, 0.16);
  border: 1px solid var(--cj-ink);
}

.cj-new-btn-secondary {
  color: var(--cj-new-brown);
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow: none;
}

.cj-home-new-wrap a.cj-new-btn-primary,
.cj-home-new-wrap a.cj-about-btn,
.cj-home-new-wrap a.cj-shipping-btn-primary,
.cj-home-new-wrap a.cj-shipping-btn-secondary {
  color: #F7F4EE;
  background: var(--cj-new-cta);
}

.cj-home-new-wrap a.cj-new-btn-primary *,
.cj-home-new-wrap a.cj-about-btn *,
.cj-home-new-wrap a.cj-shipping-btn-primary *,
.cj-home-new-wrap a.cj-shipping-btn-secondary * {
  color: #F7F4EE;
}

.cj-new-trust-bar {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 96px));
  min-height: 78px;
  margin: 10px auto 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border: 1px solid var(--cj-new-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 27, 22, 0.07);
  overflow: hidden;
}

.cj-new-trust-item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  border-left: 1px solid rgba(216, 154, 54, 0.24);
}

.cj-new-trust-item:first-of-type {
  border-left: 0;
}

.cj-new-trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--cj-new-gold);
}

.cj-new-trust-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.85;
}

.cj-new-trust-item strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.12;
  font-weight: 700;
  color: #261713;
  margin-bottom: 4px;
}

.cj-new-trust-item small {
  display: block;
  font-size: 12.5px;
  color: #6b5a4e;
  line-height: 1.38;
}

.cj-new-brands {
  position: relative;
  width: min(1580px, calc(100% - 96px));
  margin: 0 auto;
  padding: 24px 0 68px;
}

.cj-new-brands h2 {
  margin: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--cj-new-red);
  font-size: 37px;
  line-height: 1;
  font-weight: 700;
}

.cj-new-brands h2::before,
.cj-new-brands h2::after {
  content: "";
  width: 118px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 154, 54, 0.7));
}

.cj-new-brands h2::after {
  background: linear-gradient(90deg, rgba(216, 154, 54, 0.7), transparent);
}

.cj-new-brands h2 span {
  color: var(--cj-new-gold);
  font-size: 19px;
  line-height: 1;
}

.cj-new-brand-grid {
  width: min(1540px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cj-new-brand-card {
  min-width: 0;
  min-height: 430px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 250px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  border-radius: 24px;
  border: 1px solid var(--cj-new-line);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.95), rgba(255, 246, 232, 0.86));
  box-shadow: var(--cj-new-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cj-new-brand-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 154, 54, 0.44);
  box-shadow: 0 20px 45px rgba(79, 38, 18, 0.12);
}

.cj-new-brand-icon {
  width: 100%;
  height: 250px;
  border-radius: 24px 24px 0 0;
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 35% 24%, #fffef9, #f8e4c5);
  border: 1px solid rgba(216, 154, 54, 0.32);
  color: var(--cj-new-copper);
  overflow: hidden;
}

.cj-new-brand-icon svg {
  width: 74px;
  height: 74px;
  stroke-width: 1.75;
}

.cj-new-brand-logo-slot .cj-new-brand-logo-img {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  transform: none;
}

.cj-new-brand-logo-slot .cj-new-brand-logo-swago {
  width: 98%;
  height: 98%;
  transform: none;
}

.cj-new-brand-logo-slot .cj-new-brand-logo-events {
  width: 100%;
  height: 100%;
  transform: none;
}

.cj-new-brand-logo-slot .cj-new-brand-logo-anilux {
  width: 100%;
  height: 100%;
  transform: none;
}

.cj-new-brand-copy {
  min-width: 0;
  min-height: 180px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 24px;
  row-gap: 10px;
  align-items: flex-start;
  padding: 22px 26px 24px;
}

.cj-new-brand-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: rgba(30, 27, 22, 0.96);
  font-size: 27px;
  line-height: 1.12;
  font-weight: 700;
  max-width: 100%;
  height: auto;
  margin: 0;
  display: flex;
  align-items: flex-start;
}

.cj-new-brand-divider {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--cj-new-gold);
  font-size: 18px;
  line-height: 1;
}

.cj-new-brand-divider::before,
.cj-new-brand-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(216, 154, 54, 0.58);
}

.cj-new-brand-card p {
  max-width: 300px;
  min-height: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(45, 23, 18, 0.82);
  line-height: 1.42;
  margin: 0;
}

.cj-new-brand-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  height: 24px;
  margin: 0;
  color: var(--cj-new-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
}

.cj-new-brand-card a span {
  color: var(--cj-new-copper);
  font-size: 20px;
  line-height: 1;
}

.cj-home-closing,
.cj-home-teasers {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cj-home-closing {
  padding: 70px 0 18px;
}

.cj-story-panel,
.cj-delivery-panel,
.cj-referral-teaser,
.cj-newsletter-teaser {
  min-width: 0;
  border: 1px solid rgba(184, 134, 68, 0.25);
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 12px 32px rgba(73, 48, 28, 0.06);
}

.cj-story-panel {
  min-height: 310px;
  padding: 32px 0 32px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  align-items: center;
  overflow: hidden;
}

.cj-story-copy {
  position: relative;
  z-index: 1;
}

.cj-story-panel h2,
.cj-delivery-panel h2,
.cj-referral-teaser h2,
.cj-newsletter-teaser h2 {
  margin: 0 0 12px;
  color: #241b15;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.08;
}

.cj-story-panel p,
.cj-delivery-panel > p,
.cj-referral-teaser p,
.cj-newsletter-teaser p {
  margin: 0 0 10px;
  color: rgba(36, 27, 21, 0.76);
  font-size: 16px;
  line-height: 1.48;
}

.cj-story-panel > img {
  width: 118%;
  max-height: 275px;
  align-self: end;
  object-fit: contain;
  object-position: left bottom;
}

.cj-closing-btn {
  min-height: 42px;
  margin-top: 12px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #241b15;
  color: #fffaf2;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cj-delivery-panel {
  min-height: 310px;
  padding: 32px;
}

.cj-delivery-steps {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.cj-delivery-steps article {
  position: relative;
  text-align: center;
}

.cj-delivery-steps article:not(:last-child)::after {
  content: "";
  width: 26px;
  height: 1px;
  position: absolute;
  top: 30px;
  right: -19px;
  background: rgba(184, 134, 68, 0.3);
}

.cj-delivery-steps img {
  width: 62px;
  height: 62px;
  padding: 8px;
  border: 1px solid rgba(184, 134, 68, 0.28);
  border-radius: 50%;
  object-fit: contain;
}

.cj-delivery-steps h3 {
  margin: 9px 0 0;
  color: #3b2b20;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.25;
}

.cj-delivery-link {
  margin-top: 24px;
  display: inline-flex;
  gap: 8px;
  color: #a96f25;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cj-home-teasers {
  padding: 0 0 70px;
}

.cj-referral-teaser,
.cj-newsletter-teaser {
  min-height: 190px;
  padding: 28px 32px;
}

.cj-referral-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  align-items: center;
  background: linear-gradient(110deg, #fffdf9, #f8ead2);
  overflow: hidden;
}

.cj-teaser-gift {
  font-size: 84px;
  line-height: 1;
  text-align: center;
  filter: sepia(0.45) saturate(0.75);
}

.cj-newsletter-form > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 18px;
}

.cj-newsletter-form input[type="email"] {
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(72, 52, 37, 0.22);
  border-radius: 7px 0 0 7px;
  background: #fff;
  font: inherit;
}

.cj-newsletter-form button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 0 7px 7px 0;
  background: #241b15;
  color: #fffaf2;
  font-weight: 800;
  cursor: pointer;
}

.cj-newsletter-consent {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(36, 27, 21, 0.72);
  font-size: 12px;
}

.cj-newsletter-consent input {
  margin: 1px 0 0;
}

.cj-newsletter-consent a {
  color: inherit;
}

.cj-sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cj-about-clicky {
  padding: 82px 24px 96px;
  background: transparent;
}

.cj-about-clicky-card {
  width: min(1560px, 100%);
  min-height: 660px;
  margin: 0 auto;
  padding: 62px 74px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(420px, 1fr);
  gap: 74px;
  align-items: center;
  position: relative;
  border: 1px solid rgba(216, 154, 54, 0.34);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 233, 0.94));
  box-shadow: 0 28px 72px rgba(92, 45, 18, 0.12);
  overflow: hidden;
}

.cj-about-visual {
  min-height: 620px;
  position: relative;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 72% 24%, rgba(255, 240, 199, 0.5), transparent 30%),
    radial-gradient(circle at 52% 54%, rgba(229, 163, 49, 0.24), transparent 50%),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.58), transparent 28%);
  border-radius: 34px;
}

.cj-about-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  color: var(--cj-new-copper);
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 28px 54px rgba(92, 45, 18, 0.12);
  overflow: hidden;
}

.cj-about-image-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: inherit;
}

.cj-about-image-placeholder::before,
.cj-about-image-placeholder::after {
  content: none;
}

.cj-about-spark {
  position: absolute;
  color: var(--cj-new-gold);
  font-size: 26px;
  z-index: 2;
}

.cj-about-spark-1 {
  left: 4%;
  top: 18%;
}

.cj-about-spark-2 {
  right: 7%;
  top: 28%;
}

.cj-about-spark-3 {
  right: 12%;
  bottom: 14%;
}

.cj-about-copy {
  max-width: 650px;
}

.cj-about-eyebrow {
  margin: 0;
  color: rgba(30, 27, 22, 0.94);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.cj-about-rule,
.cj-about-heartline {
  width: min(520px, 100%);
  height: 28px;
  margin: 26px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cj-new-gold);
}

.cj-about-rule::before,
.cj-about-rule::after,
.cj-about-heartline::before,
.cj-about-heartline::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(216, 154, 54, 0.45);
}

.cj-about-copy h2 {
  margin: 0;
  color: var(--cj-new-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 4.9vw, 84px);
  line-height: 0.98;
  letter-spacing: 0;
}

.cj-about-copy h2 span {
  color: rgba(30, 27, 22, 0.96);
}

.cj-about-copy p {
  margin: 0 0 24px;
  color: rgba(45, 23, 18, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.45;
}

.cj-about-btn {
  width: min(390px, 100%);
  min-height: 68px;
  margin: 14px 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 10px;
  border: 1px solid rgba(216, 154, 54, 0.65);
  background: var(--cj-new-cta);
  color: #F7F4EE;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(30, 27, 22, 0.22);
}

.cj-about-btn span {
  color: #F7F4EE;
  font-size: 26px;
}

.cj-about-note {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(92, 45, 18, 0.74);
  font-style: italic;
}

.cj-about-note::before,
.cj-about-note::after {
  content: "✦";
  color: var(--cj-new-gold);
  font-style: normal;
}

.cj-shipping-story {
  padding: 88px 24px 102px;
  background: transparent;
}

.cj-shipping-card {
  width: min(1620px, 100%);
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: minmax(460px, 0.9fr) minmax(620px, 1.1fr);
  gap: 68px;
  align-items: center;
  border: 1px solid rgba(216, 154, 54, 0.36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 68% 34%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 233, 0.94));
  box-shadow: 0 28px 72px rgba(92, 45, 18, 0.1);
}

.cj-shipping-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.6), transparent 28%),
    radial-gradient(circle at 58% 62%, rgba(229, 163, 49, 0.22), transparent 48%);
}

.cj-shipping-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 154, 54, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(135deg, rgba(255, 247, 230, 0.96), rgba(239, 193, 124, 0.42));
  color: var(--cj-new-copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
}

.cj-shipping-image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  display: block;
  object-fit: cover;
}

.cj-shipping-copy {
  text-align: center;
}

.cj-shipping-eyebrow {
  margin: 0 0 20px;
  color: var(--cj-new-brown);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cj-shipping-eyebrow::before,
.cj-shipping-eyebrow::after {
  content: "✦";
  margin: 0 14px;
  color: var(--cj-new-gold);
}

.cj-shipping-eyebrow span {
  color: var(--cj-new-gold);
}

.cj-shipping-copy h2 {
  margin: 0;
  color: var(--cj-new-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 3.7vw, 70px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.cj-shipping-copy h2 span {
  color: rgba(30, 27, 22, 0.96);
}

.cj-shipping-intro {
  max-width: 780px;
  margin: 28px auto 44px;
  color: rgba(45, 23, 18, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.45;
}

.cj-shipping-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cj-shipping-step {
  min-height: 236px;
  padding: 28px 18px 24px;
  position: relative;
  border: 1px solid rgba(216, 154, 54, 0.36);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.cj-shipping-step-number {
  position: absolute;
  top: 24px;
  left: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff1c9, #d19132);
  color: var(--cj-new-brown);
  font-size: 13px;
  font-weight: 900;
}

.cj-shipping-step-photo {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(216, 154, 54, 0.36);
  border-radius: 50%;
  background: rgba(255, 248, 233, 0.9);
  color: rgba(184, 117, 29, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  overflow: hidden;
}

.cj-shipping-step-photo img {
  width: 138%;
  height: 138%;
  display: block;
  object-fit: contain;
}

.cj-shipping-step h3 {
  margin: 0 0 12px;
  color: var(--cj-new-brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.2;
}

.cj-shipping-step p {
  margin: 0;
  color: rgba(45, 23, 18, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.45;
}

.cj-shipping-divider {
  height: 28px;
  margin: 40px auto 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cj-new-gold);
}

.cj-shipping-divider::before,
.cj-shipping-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(216, 154, 54, 0.36);
}

.cj-shipping-actions {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr);
  gap: 34px;
}

.cj-shipping-btn {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 9px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
}

.cj-shipping-btn span {
  font-size: 24px;
}

.cj-shipping-btn-primary {
  border: 1px solid rgba(216, 154, 54, 0.6);
  background: var(--cj-new-cta);
  color: #F7F4EE;
  box-shadow: 0 14px 26px rgba(30, 27, 22, 0.2);
}

.cj-shipping-btn-primary span {
  color: #F7F4EE;
}

.cj-shipping-btn-secondary {
  border: 1px solid rgba(30, 27, 22, 0.2);
  background: var(--cj-new-cta);
  color: #F7F4EE;
  box-shadow: 0 14px 26px rgba(30, 27, 22, 0.2);
}

@media (max-width: 1260px) {
  .cj-home-new-header,
  .cj-home-new-hero,
  .cj-new-brands {
    width: min(100% - 48px, 1180px);
  }

  .cj-home-new-header {
    grid-template-columns: 240px 1fr 360px;
    gap: 18px;
  }

  .cj-new-menu {
    gap: 24px;
  }

  .cj-new-search {
    width: 230px;
  }

  .cj-home-new-hero {
    gap: 44px;
  }

  .cj-new-hero-copy h1 {
    font-size: clamp(54px, 5vw, 72px);
  }

  .cj-new-brand-grid {
    width: min(1180px, 100%);
    gap: 22px;
  }

  .cj-new-brand-card {
    min-height: 400px;
    grid-template-columns: 1fr;
    grid-template-rows: 220px minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .cj-new-brand-icon {
    width: 100%;
    height: 220px;
  }

  .cj-new-brand-copy {
    min-height: 158px;
    grid-template-rows: auto minmax(0, 1fr) 22px;
    row-gap: 8px;
    padding: 20px 22px 22px;
  }

  .cj-new-brand-card h3 {
    font-size: 24px;
  }

  .cj-new-brand-card p {
    font-size: 15px;
    min-height: 0;
  }
}

@media (max-width: 960px) {
  .cj-home-new-header {
    width: calc(100% - 32px);
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .cj-new-logo {
    font-size: 38px;
  }

  .cj-new-mobile-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--cj-new-brown);
    cursor: pointer;
  }

  .cj-new-mobile-toggle svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
  }

  .cj-new-menu,
  .cj-new-actions {
    display: none;
  }

  .cj-new-menu.cj-new-mobile-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 24px 20px;
    background: var(--cj-new-cream);
    border-bottom: 1px solid var(--cj-new-line);
  }

  .cj-new-dropdown {
    padding: 13px 0;
  }

  .cj-new-dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    pointer-events: auto;
    translate: none;
    box-shadow: none;
  }

  .cj-new-dropdown-panel::before {
    display: none;
  }

  .cj-home-new-hero {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 30px;
    gap: 30px;
  }

  .cj-new-hero-copy {
    order: -1;
  }

  .cj-new-visual {
    min-height: 340px;
  }

  .cj-new-hero-copy h1 {
    font-size: 48px;
    line-height: 1.08;
  }

  .cj-new-hero-copy p {
    font-size: 20px;
  }

  .cj-new-hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cj-new-btn {
    width: 100%;
  }

  .cj-new-trust-bar {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    margin: 24px auto 42px;
    padding: 12px 0;
  }

  .cj-new-trust-item {
    border-left: 0;
    border-top: 1px solid rgba(216, 154, 54, 0.2);
    padding: 14px 24px;
  }

  .cj-new-trust-item:first-of-type {
    border-top: 0;
  }

  .cj-new-brands {
    width: calc(100% - 32px);
    padding-bottom: 42px;
  }

  .cj-new-brand-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    gap: 24px;
  }

  .cj-new-brand-card {
    min-height: 220px;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 28px;
    padding: 30px 28px;
  }

  .cj-new-brand-icon {
    width: 132px;
    height: 132px;
    border-radius: 20px;
  }

  .cj-new-brand-copy {
    min-height: 158px;
    height: auto;
  }

  .cj-new-brand-card h3 {
    font-size: 26px;
    height: auto;
  }

  .cj-new-brand-card p {
    max-width: none;
    min-height: 54px;
    height: auto;
    font-size: 17px;
  }

  .cj-about-clicky {
    padding: 52px 16px 64px;
  }

  .cj-about-clicky-card {
    min-height: 0;
    padding: 34px 24px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cj-about-visual {
    min-height: 430px;
  }

  .cj-about-image-placeholder {
    width: 100%;
    min-height: 420px;
    font-size: 18px;
  }

  .cj-about-copy {
    max-width: none;
    text-align: center;
  }

  .cj-about-rule,
  .cj-about-heartline {
    margin-left: auto;
    margin-right: auto;
  }

  .cj-about-copy h2 {
    font-size: clamp(44px, 12vw, 62px);
  }

  .cj-about-copy p {
    font-size: 20px;
  }

  .cj-about-btn {
    width: 100%;
    font-size: 20px;
  }

  .cj-about-note {
    justify-content: center;
  }

  .cj-shipping-story {
    padding: 54px 16px 68px;
  }

  .cj-shipping-card {
    padding: 34px 24px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cj-shipping-visual {
    min-height: 420px;
  }

  .cj-shipping-image-placeholder {
    min-height: 410px;
  }

  .cj-shipping-copy h2 {
    font-size: clamp(42px, 10vw, 58px);
    white-space: normal;
  }

  .cj-shipping-intro {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .cj-shipping-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cj-shipping-actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .cj-home-new-wrap {
    overflow-x: clip;
  }

  .cj-home-new-header {
    width: 100%;
    min-height: 64px;
    padding: 0 16px;
  }

  .cj-new-logo {
    font-size: clamp(32px, 10vw, 38px);
  }

  .cj-new-menu.cj-new-mobile-open {
    top: 64px;
    padding: 8px 18px 18px;
  }

  .cj-home-new-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 26px 16px 28px;
    gap: 22px;
  }

  .cj-new-hero-copy {
    text-align: center;
  }

  .cj-new-hero-copy h1 {
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.02;
  }

  .cj-new-hero-copy p {
    font-size: 17px;
  }

  .cj-new-visual {
    min-height: 300px;
  }

  .cj-new-clicky-stage {
    width: min(330px, 86vw);
    min-height: 300px;
  }

  .cj-new-trust-bar,
  .cj-new-brands {
    width: calc(100% - 28px);
  }

  .cj-new-trust-item {
    min-height: 58px;
    grid-template-columns: 42px 1fr;
    padding: 12px 18px;
  }

  .cj-new-section-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .cj-new-brand-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 0;
    padding: 24px 20px;
  }

  .cj-new-brand-icon {
    width: 118px;
    height: 118px;
  }

  .cj-new-brand-copy {
    height: auto;
    min-height: 0;
    grid-template-rows: auto 16px auto 24px;
    align-items: center;
    row-gap: 8px;
  }

  .cj-new-brand-card h3,
  .cj-new-brand-card p {
    height: auto;
  }

  .cj-new-brand-card h3 {
    font-size: 24px;
  }

  .cj-new-brand-card p {
    min-height: 0;
    font-size: 15px;
  }

  .cj-new-brand-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .cj-about-clicky-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .cj-about-visual {
    min-height: 300px;
  }

  .cj-about-image-placeholder {
    min-height: 300px;
    border-radius: 18px;
  }

  .cj-about-spark {
    font-size: 20px;
  }

  .cj-about-copy p {
    font-size: 16px;
  }

  .cj-about-btn {
    min-height: 58px;
    font-size: 18px;
  }

  .cj-shipping-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .cj-shipping-visual,
  .cj-shipping-image-placeholder {
    min-height: 280px;
  }

  .cj-shipping-eyebrow {
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .cj-shipping-copy h2 {
    font-size: clamp(34px, 10vw, 38px);
  }

  .cj-shipping-intro {
    font-size: 16px;
  }

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

  .cj-shipping-step {
    min-height: 0;
    padding: 18px 14px;
  }

  .cj-shipping-btn {
    min-height: 58px;
    font-size: 18px;
  }
}

a.cj-new-btn-primary,
a.cj-about-btn,
a.cj-shipping-btn-primary,
a.cj-shipping-btn-secondary {
  background: #1E1B16 !important;
  color: #F7F4EE !important;
  border-color: rgba(30, 27, 22, 0.24) !important;
}

a.cj-new-btn-primary svg,
a.cj-new-btn-primary span,
a.cj-about-btn span,
a.cj-shipping-btn-primary span,
a.cj-shipping-btn-secondary span {
  color: #F7F4EE !important;
  stroke: currentColor;
}

@media (max-width: 1180px) {
  .cj-home-new-header,
  .cj-home-new-hero,
  .cj-new-brands {
    width: min(100% - 40px, 1080px);
  }

  .cj-home-new-header {
    grid-template-columns: minmax(190px, 240px) minmax(0, 1fr) minmax(270px, 330px);
    gap: 18px;
  }

  .cj-new-menu {
    gap: clamp(16px, 2vw, 26px);
    font-size: 18px;
  }

  .cj-new-actions {
    min-width: 0;
    gap: 10px;
  }

  .cj-new-search {
    width: min(250px, 100%);
  }

  .cj-home-new-hero {
    grid-template-columns: minmax(0, 56fr) minmax(360px, 44fr);
    gap: clamp(28px, 4vw, 48px);
    overflow: clip;
  }

  .cj-new-visual,
  .cj-new-hero-copy,
  .cj-about-visual,
  .cj-about-copy,
  .cj-shipping-visual,
  .cj-shipping-copy {
    min-width: 0;
  }

  .cj-new-clicky-placeholder {
    width: min(390px, 88%);
  }

  .cj-new-hero-copy h1 {
    font-size: clamp(42px, 4.25vw, 52px);
  }

  .cj-new-hero-buttons .cj-new-btn {
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 18px;
  }

  .cj-new-trust-bar {
    width: min(100% - 40px, 1080px);
  }

  .cj-new-trust-item {
    padding: 0 18px;
  }

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

  .cj-new-brand-card {
    grid-template-columns: 1fr;
    grid-template-rows: 210px minmax(0, 1fr);
    gap: 0;
    padding: 0;
  }

  .cj-new-brand-icon {
    width: 100%;
    height: 210px;
  }

  .cj-about-clicky-card {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    gap: 42px;
    padding: 48px;
  }

  .cj-about-visual,
  .cj-about-image-placeholder,
  .cj-shipping-visual,
  .cj-shipping-image-placeholder {
    min-height: 500px;
  }

  .cj-shipping-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 42px;
    padding: 46px;
  }

  .cj-shipping-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cj-home-closing,
  .cj-home-teasers {
    width: min(100% - 32px, 720px);
    grid-template-columns: 1fr;
  }

  .cj-home-closing {
    padding-top: 52px;
  }

  .cj-home-teasers {
    padding-bottom: 52px;
  }

  .cj-home-new-header {
    position: relative;
    width: 100%;
    min-height: 70px;
    padding: 0 20px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .cj-new-logo {
    min-width: 0;
    font-size: clamp(34px, 6vw, 42px);
  }

  .cj-new-mobile-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--cj-new-brown);
    cursor: pointer;
  }

  .cj-new-menu,
  .cj-new-actions {
    display: none;
  }

  .cj-new-menu.cj-new-mobile-open {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    z-index: 30;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 10px 20px 18px;
    background: rgba(255, 248, 237, 0.98);
    border-bottom: 1px solid var(--cj-new-line);
    box-shadow: 0 18px 34px rgba(79, 38, 18, 0.08);
  }

  .cj-new-menu.cj-new-mobile-open > a,
  .cj-new-menu.cj-new-mobile-open .cj-new-dropdown-btn {
    min-height: 42px;
    justify-content: flex-start;
  }

  .cj-home-new-hero {
    width: min(100% - 32px, 760px);
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 34px 0 24px;
    min-height: 0;
  }

  .cj-new-hero-copy {
    order: -1;
    max-width: 680px;
    padding-top: 0;
  }

  .cj-new-hero-copy h1 {
    font-size: clamp(46px, 8vw, 66px);
    line-height: 1.04;
  }

  .cj-new-hero-copy p {
    font-size: clamp(18px, 3vw, 21px);
  }

  .cj-new-visual {
    min-height: clamp(320px, 58vw, 470px);
  }

  .cj-new-clicky-placeholder {
    width: min(430px, 78vw);
  }

  .cj-new-clicky-image {
    max-width: 118%;
    max-height: 118%;
  }

  .cj-new-trust-bar {
    width: min(100% - 32px, 760px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .cj-new-trust-item {
    border-left: 0;
    border-top: 1px solid rgba(216, 154, 54, 0.18);
    padding: 14px;
  }

  .cj-new-trust-item:nth-of-type(1),
  .cj-new-trust-item:nth-of-type(2) {
    border-top: 0;
  }

  .cj-new-brands {
    width: min(100% - 32px, 760px);
  }

  .cj-new-brand-grid {
    grid-template-columns: 1fr;
    width: min(640px, 100%);
  }

  .cj-new-brand-card {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 28px;
    padding: 30px;
  }

  .cj-new-brand-icon {
    width: 140px;
    height: 140px;
  }

  .cj-about-clicky,
  .cj-shipping-story {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cj-about-clicky-card,
  .cj-shipping-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 34px 24px;
  }

  .cj-about-visual,
  .cj-about-image-placeholder,
  .cj-shipping-visual,
  .cj-shipping-image-placeholder {
    min-height: clamp(320px, 62vw, 470px);
  }

  .cj-about-copy {
    max-width: none;
    text-align: center;
  }

  .cj-about-rule,
  .cj-about-heartline {
    margin-left: auto;
    margin-right: auto;
  }

  .cj-about-copy h2 {
    font-size: clamp(44px, 9vw, 64px);
  }

  .cj-about-copy p {
    font-size: clamp(18px, 3.2vw, 21px);
  }

  .cj-shipping-copy h2 {
    white-space: normal;
    font-size: clamp(42px, 8.8vw, 60px);
  }

  .cj-shipping-intro {
    font-size: clamp(18px, 3vw, 20px);
  }
}

@media (max-width: 760px) {
  .cj-home-new-header {
    min-height: 64px;
    padding: 0 16px;
  }

  .cj-new-mobile-toggle {
    width: 42px;
    height: 42px;
  }

  .cj-new-menu.cj-new-mobile-open {
    top: 64px;
    padding: 8px 16px 16px;
  }

  .cj-home-new-hero {
    width: 100%;
    padding: 28px 16px 26px;
    gap: 22px;
  }

  .cj-new-hero-copy h1 {
    font-size: clamp(40px, 11vw, 54px);
    overflow-wrap: normal;
  }

  .cj-new-title-divider {
    width: min(230px, 72vw);
  }

  .cj-new-hero-copy p {
    max-width: 36rem;
    font-size: 17px;
  }

  .cj-new-hero-buttons {
    width: 100%;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    gap: 12px;
  }

  .cj-new-btn {
    width: 100%;
    min-width: 0;
  }

  .cj-new-visual {
    min-height: clamp(300px, 76vw, 410px);
  }

  .cj-new-clicky-placeholder {
    width: min(380px, 82vw);
  }

  .cj-new-trust-bar {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 10px 0;
    margin-bottom: 38px;
  }

  .cj-new-trust-item,
  .cj-new-trust-item:nth-of-type(2) {
    border-top: 1px solid rgba(216, 154, 54, 0.18);
  }

  .cj-new-trust-item:first-of-type {
    border-top: 0;
  }

  .cj-new-brands {
    width: calc(100% - 28px);
    padding-bottom: 42px;
  }

  .cj-new-brand-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 18px;
    padding: 24px 20px;
  }

  .cj-new-brand-icon {
    width: 128px;
    height: 128px;
  }

  .cj-new-brand-copy {
    width: 100%;
    height: auto;
    min-height: 0;
    grid-template-rows: auto 18px auto 24px;
    align-items: center;
    justify-items: center;
  }

  .cj-new-brand-card h3,
  .cj-new-brand-card p {
    height: auto;
  }

  .cj-new-brand-card p {
    max-width: 22rem;
  }

  .cj-new-brand-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .cj-about-clicky {
    padding-top: 48px;
    padding-bottom: 60px;
  }

  .cj-about-clicky-card,
  .cj-shipping-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .cj-about-visual,
  .cj-about-image-placeholder,
  .cj-shipping-visual,
  .cj-shipping-image-placeholder {
    min-height: clamp(280px, 72vw, 380px);
  }

  .cj-about-btn {
    width: 100%;
    min-height: 58px;
    font-size: 18px;
  }

  .cj-shipping-story {
    padding-top: 52px;
    padding-bottom: 64px;
  }

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

  .cj-shipping-step {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .cj-home-closing,
  .cj-home-teasers {
    width: calc(100% - 24px);
    gap: 12px;
  }

  .cj-story-panel {
    min-height: 0;
    padding: 24px 0 24px 20px;
    grid-template-columns: minmax(0, 1fr) 34%;
  }

  .cj-story-panel h2,
  .cj-delivery-panel h2,
  .cj-referral-teaser h2,
  .cj-newsletter-teaser h2 {
    font-size: 27px;
  }

  .cj-story-panel p,
  .cj-delivery-panel > p,
  .cj-referral-teaser p,
  .cj-newsletter-teaser p {
    font-size: 14px;
  }

  .cj-story-panel > img {
    width: 145%;
    max-height: 190px;
  }

  .cj-delivery-panel,
  .cj-referral-teaser,
  .cj-newsletter-teaser {
    min-height: 0;
    padding: 24px 20px;
  }

  .cj-delivery-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .cj-delivery-steps article:nth-child(2)::after {
    content: none;
  }

  .cj-referral-teaser {
    grid-template-columns: minmax(0, 1fr) 74px;
  }

  .cj-teaser-gift {
    font-size: 54px;
  }

  .cj-newsletter-form > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cj-newsletter-form input[type="email"],
  .cj-newsletter-form button {
    border-radius: 7px;
  }

  .cj-new-logo {
    font-size: clamp(30px, 9.5vw, 36px);
  }

  .cj-home-new-hero {
    padding: 24px 14px 24px;
  }

  .cj-new-hero-copy h1 {
    font-size: clamp(36px, 10.8vw, 44px);
    line-height: 1.02;
    margin-bottom: 22px;
  }

  .cj-new-hero-copy p {
    font-size: 16.5px;
    line-height: 1.34;
  }

  .cj-new-visual {
    min-height: clamp(270px, 78vw, 340px);
  }

  .cj-new-clicky-placeholder {
    width: min(330px, 84vw);
  }

  .cj-new-clicky-placeholder::after {
    inset: -7px;
  }

  .cj-new-clicky-image {
    width: 112%;
    height: 112%;
    transform: translate(1%, -4%);
  }

  .cj-new-trust-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    min-height: 58px;
    padding: 12px 16px;
  }

  .cj-new-trust-icon {
    width: 40px;
    height: 40px;
  }

  .cj-new-trust-icon svg {
    width: 27px;
    height: 27px;
  }

  .cj-new-trust-item strong {
    font-size: 17px;
    margin-bottom: 3px;
  }

  .cj-new-brand-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .cj-new-brand-icon {
    width: 116px;
    height: 116px;
    border-radius: 18px;
  }

  .cj-new-brand-card h3 {
    font-size: 23px;
  }

  .cj-new-brand-card p {
    font-size: 15px;
    line-height: 1.35;
  }

  .cj-about-clicky-card,
  .cj-shipping-card {
    padding: 24px 16px;
  }

  .cj-about-eyebrow,
  .cj-shipping-eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .cj-about-copy h2 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .cj-about-copy p {
    font-size: 16px;
    line-height: 1.45;
  }

  .cj-about-note {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .cj-shipping-copy h2 {
    font-size: clamp(34px, 9.6vw, 42px);
  }

  .cj-shipping-intro {
    font-size: 16px;
    margin: 18px auto 24px;
  }

  .cj-shipping-step {
    padding: 18px 14px;
  }

  .cj-shipping-step-photo {
    width: 72px;
    height: 72px;
  }

  .cj-shipping-btn {
    min-height: 56px;
    font-size: 17px;
  }
}

@media (max-width: 360px) {
  .cj-home-new-header {
    padding: 0 12px;
  }

  .cj-new-logo {
    font-size: 30px;
  }

  .cj-home-new-hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cj-new-hero-copy h1 {
    font-size: 34px;
  }

  .cj-new-hero-copy p {
    font-size: 15.5px;
  }

  .cj-new-clicky-placeholder {
    width: min(300px, 82vw);
  }

  .cj-new-trust-bar,
  .cj-new-brands {
    width: calc(100% - 20px);
  }

  .cj-new-brand-card {
    padding: 20px 14px;
  }

  .cj-about-clicky,
  .cj-shipping-story {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cj-about-clicky-card,
  .cj-shipping-card {
    padding: 22px 14px;
  }
}

@media (max-width: 760px) {
  .cj-home-new-hero {
    width: min(100% - 28px, 640px);
    display: grid;
    grid-template-columns: 1fr;
    padding: 24px 0 28px;
    gap: 24px;
  }

  .cj-new-hero-copy {
    order: -1;
    display: block;
    width: 100%;
    max-width: 620px;
    text-align: left;
  }

  .cj-new-hero-copy h1 {
    width: auto;
    margin: 0;
    font-size: clamp(36px, 9vw, 54px);
    line-height: 1.02;
    text-align: left;
  }

  .cj-new-title-divider {
    width: 58px;
    margin: 16px 0;
  }

  .cj-new-visual {
    order: 0;
    width: 100%;
    height: clamp(250px, 70vw, 420px);
    min-height: 0;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .cj-new-hero-heading {
    grid-template-columns: minmax(0, 1fr) clamp(82px, 20vw, 118px);
    gap: 6px;
  }

  .cj-new-clicky-image {
    width: 118px;
    max-width: 100%;
    height: auto;
    transform: none;
  }

  .cj-new-hero-copy p {
    width: min(100%, 560px);
    margin: 0;
    font-size: 15.5px;
    line-height: 1.4;
    text-align: left;
  }

  .cj-new-hero-buttons {
    width: 100%;
    max-width: 460px;
    margin: 22px 0 0;
    flex-direction: row;
  }

  .cj-new-btn {
    min-height: 50px;
    height: 50px;
    font-size: 17px;
    border-radius: 9px;
  }

  .cj-new-trust-bar {
    margin-top: 8px;
  }

  .cj-new-brands {
    padding-top: 14px;
  }

  .cj-new-brands h2 {
    gap: 8px;
    margin-bottom: 24px;
    font-size: clamp(27px, 8.2vw, 32px);
    line-height: 1;
    white-space: nowrap;
  }

  .cj-new-brands h2::before,
  .cj-new-brands h2::after {
    width: clamp(24px, 9vw, 46px);
    flex: 0 1 46px;
  }

  .cj-new-brands h2 span {
    font-size: 14px;
  }

  .cj-new-brand-grid {
    gap: 16px;
  }

  .cj-new-brand-card {
    grid-template-columns: 92px minmax(0, 1fr);
    justify-items: stretch;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 16px;
    text-align: left;
  }

  .cj-new-brand-icon {
    width: 92px;
    height: 92px;
    border-radius: 17px;
  }

  .cj-new-brand-copy {
    align-items: start;
    justify-items: start;
    row-gap: 6px;
  }

  .cj-new-brand-card h3 {
    font-size: 20px;
    line-height: 1.05;
  }

  .cj-new-brand-divider {
    height: 14px;
    width: 86px;
    margin: 0;
    font-size: 14px;
  }

  .cj-new-brand-card p {
    max-width: 100%;
    font-size: 13.5px;
    line-height: 1.26;
  }

  .cj-new-brand-card a {
    height: 22px;
    font-size: 14.5px;
  }

  .cj-about-clicky {
    padding-top: 42px;
  }

  .cj-about-visual,
  .cj-about-image-placeholder {
    min-height: 250px;
  }

  .cj-about-copy h2 {
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1;
  }

  .cj-shipping-visual,
  .cj-shipping-image-placeholder {
    min-height: 250px;
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .cj-new-brand-grid {
    width: min(680px, 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .cj-new-brand-card {
    min-height: 230px;
  }

  .cj-new-brand-card:last-child {
    grid-column: 1 / -1;
    width: min(330px, 100%);
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .cj-home-new-header {
    min-height: 60px;
  }

  .cj-new-mobile-toggle {
    width: 38px;
    height: 38px;
  }

  .cj-new-mobile-toggle svg {
    width: 27px;
    height: 27px;
  }

  .cj-home-new-hero {
    width: calc(100% - 24px);
    padding-top: 18px;
    gap: 18px;
  }

  .cj-new-hero-copy h1 {
    width: auto;
    font-size: clamp(31px, 9vw, 39px);
  }

  .cj-new-visual {
    min-height: clamp(250px, 72vw, 310px);
    max-height: none;
  }

  .cj-new-hero-copy p {
    width: 100%;
    font-size: 15px;
  }

  .cj-new-hero-buttons {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .cj-new-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    height: 48px;
    font-size: 16px;
    box-shadow: 0 12px 22px rgba(30, 27, 22, 0.16);
  }

  .cj-new-trust-item small {
    font-size: 11.5px;
  }

  .cj-about-image-placeholder img,
  .cj-shipping-image-placeholder img {
    object-position: center center;
  }
}

@media (max-width: 360px) {
  .cj-new-hero-heading {
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 4px;
  }

  .cj-new-clicky-image {
    width: 64px;
  }

  .cj-new-hero-copy h1 {
    width: auto;
    max-width: 100%;
    font-size: 28px;
  }

  .cj-new-title-divider {
    width: 156px;
  }

  .cj-new-hero-copy p {
    width: 100%;
    font-size: 14.5px;
  }

  .cj-new-brands h2 {
    font-size: 26px;
    gap: 6px;
  }

  .cj-new-brands h2::before,
  .cj-new-brands h2::after {
    width: 18px;
    flex-basis: 18px;
  }

  .cj-new-brand-icon {
    width: 82px;
    height: 82px;
  }

  .cj-new-brand-card {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 15px 12px;
  }

  .cj-new-brand-card h3 {
    font-size: 19px;
  }

  .cj-new-brand-card p {
    font-size: 13px;
  }
}

.cj-about-image-placeholder img,
.cj-shipping-image-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

.cj-about-image-placeholder,
.cj-shipping-image-placeholder {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.78), transparent 42%),
    linear-gradient(135deg, rgba(255, 249, 237, 0.96), rgba(246, 224, 190, 0.36));
}

@media (min-width: 901px) {
  .cj-new-hero-copy h1.cj-new-signature-title {
    font-size: 74px;
    line-height: 0.86;
  }
}

@media (max-width: 900px) {
  .cj-new-hero-copy h1.cj-new-signature-title {
    max-width: 430px;
    font-size: 58px;
    line-height: 0.88;
  }
}

@media (max-width: 560px) {
  .cj-new-hero-copy h1.cj-new-signature-title {
    max-width: 310px;
    font-size: 44px;
    line-height: 0.9;
  }
}

@media (max-width: 360px) {
  .cj-new-hero-copy h1.cj-new-signature-title {
    max-width: 245px;
    font-size: 36px;
    line-height: 0.92;
  }
}
