/** Shopify CDN: Minification failed

Line 108:9 Expected identifier but found whitespace
Line 108:10 Unexpected "1px"

**/
/* ===== Turbo Core Hero Section ===== */

/* Layout */
.turbo-hero-section {
  background-color: #ffffff;
  padding-block: 4rem;
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
  min-height: 600px;
}

@media (min-width: 1024px) {
  .turbo-hero-section {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    max-height: 600px;
    height: 100vh; /* Optional: fills available screen but capped */
    overflow: hidden;
  }
}

.turbo-hero-image,
.turbo-hero-text {
  flex: 1 1 50%;
  height: 100%;
}

/* Full-bleed fix for image only */
.turbo-hero-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin-left: calc(-1 * var(--gutter));
}

@media (min-width: 768px) {
  .turbo-hero-image {
    margin-left: calc(-1 * var(--gutter-lg));
  }
}

/* Image */
.turbo-hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
  box-shadow: none;
}

/* Text block */
.turbo-hero-text {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  justify-content: center;
  padding-inline: 2rem;
  height: 100%;
}

/* Typography */
.turbo-hero-text h1 {
  font-family: 'Sansation', sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}

.turbo-hero-text p {
  color: #555;
  margin-bottom: 2rem;
}

/* Buttons */
.turbo-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .turbo-hero-buttons {
    flex-direction: row;
    gap: 1.25rem;
  }
}

/* Button overrides */
.turbo-hero-section .btn-primary {
  background-color: #000;
  color: #fff;
}

.turbo-hero-section .btn-primary:hover,
.turbo-hero-section .btn-primary:focus {
  background-color: #d4af37;
  color: #fff;
}

  border: 1px solid #000;
  color: #000;
  background: transparent;
}

  background-color: #d4af37;
  color: #fff;
}

.gift-tooltip {
  position: relative;
  display: inline-block;
  margin-left: 0.4em;
  cursor: pointer;
  color: var(--cart-color-gold, #C49A47);
}

.gift-tooltip svg {
  pointer-events: none;
}

.gift-tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 230px;
  background: #fffbea;
  color: #444;
  text-align: left;
  border-radius: 8px;
  border: 1px solid #eee0b5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 0.65em 1em;
  position: absolute;
  left: 50%;
  top: 110%;
  z-index: 20;
  font-size: 0.98em;
  line-height: 1.4;
  transform: translateX(-50%);
  transition: opacity 0.15s;
  pointer-events: none;
}

.gift-tooltip:hover .gift-tooltip-text,
.gift-tooltip:focus .gift-tooltip-text,
.gift-tooltip:active .gift-tooltip-text {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* On mobile, make tooltip above if not enough space */
@media (max-width: 500px) {
  .gift-tooltip-text {
    left: 0;
    right: 0;
    transform: none;
    top: 140%;
    min-width: 160px;
    width: 95vw;
    max-width: 260px;
  }
}
