/** Shopify CDN: Minification failed

Line 135:43 Expected "}" to go with "{"

**/
.cdg-hero-section {
  background: #ffffff;
}

.cdg-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 90px;
}

.cdg-hero__icon {
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
}
.cdg-hero__icon img { width: 100%; height: auto; display: block; }

.cdg-hero__heading {
  font-family: 'Righteous', var(--font-heading-family, sans-serif);
  font-size: 42px;
  line-height: 1.2;
  color: #D91A2A;
  margin: 0 0 18px;
}

.cdg-hero__text {
  font-size: 16px;
  color: rgba(45,40,34,0.65);
  max-width: 440px;
  margin: 0 0 30px;
}

.cdg-hero__buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.cdg-btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cdg-btn--primary {
  background: #D91A2A;
  color: #fff !important;
}
.cdg-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217,26,42,0.3);
}
.cdg-btn--outline {
  background: transparent;
  color: #2D2822 !important;
  border: 1.5px solid rgba(45,40,34,0.15);
}
.cdg-btn--outline:hover { border-color: #2D2822; }

.cdg-hero__visual {
 .cdg-hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  max-height: 3600px;
  border-radius: 24px;
  background: #F3E5D8;
  border: 1px solid rgba(45,40,34,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cdg-hero__visual img {
  width: 60%;
  max-width: 360px;
  height: auto;
}
.cdg-hero__visual-placeholder {
  width: 100%;
  height: 100%;
  background: #F3E5D8;
}

.cdg-hero__slogan {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #2D2822;
  font-size: 12px;
  padding: 9px 18px;
  border-radius: 100px;
  font-style: italic;
  border: 1px solid rgba(45,40,34,0.09);
  white-space: nowrap;
}

@media screen and (max-width: 749px) {
  .cdg-hero__inner {
    grid-template-columns: 1fr;
    padding: 48px 0 56px;
  }
  .cdg-hero__heading { font-size: 30px; }
}
.cdg-slider { position: relative; width: 100%; height: 100%; }
.cdg-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s ease;
  display: flex; align-items: center; justify-content: center;
}
.cdg-slide.is-active { opacity: 1; }
.cdg-slide img { width: 60%; max-width: 420px; height: auto; }
.cdg-slide__label {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.9); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; color: #2D2822;
}
.cdg-slider__dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 2;
}
.cdg-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(45,40,34,0.25); cursor: pointer; padding: 0;
}
.cdg-dot.is-active { background: #D91A2A; }