/** Shopify CDN: Minification failed

Line 106:0 All "@import" rules must come first

**/
.sbc-section {
  background: #ffffff;
}

.sbc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sbc-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  color: #1a1a1a;
  text-transform: uppercase;
}

.sbc-underline {
  width: 100%;
  height: 3px;
  background: #e0a800;
  margin-bottom: 32px;
}

.sbc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sbc-item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sbc-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 2;
  background: #f2f2f2;
}

.sbc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sbc-item:hover .sbc-image {
  transform: scale(1.08);
}

.sbc-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sbc-placeholder-svg {
  width: 60%;
  height: 60%;
  opacity: 0.3;
}

.sbc-label {
  margin: 12px 0 0 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  color: #1a1a1a;
}

@media (max-width: 749px) {
  .sbc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sbc-heading {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .sbc-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Shop by Price section ===== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

.sbp-section {
  background: #ffffff;
}

.sbp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sbp-heading {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 8px 0;
  color: #1a1a1a;
  text-transform: uppercase;
}

.sbp-underline {
  width: 100%;
  height: 3px;
  background: #e0a800;
  margin-bottom: 32px;
}

.sbp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sbp-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1 / 1;
  border: 2px solid #d4af37;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  background-color: #1f6f68;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.sbp-tile:hover {
  transform: scale(1.03);
  border-color: #f0c94a;
}

.sbp-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transition: transform 0.5s ease;
}

.sbp-tile:hover .sbp-bg {
  transform: scale(1.08);
}

.sbp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 70, 65, 0.35);
}

.sbp-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}

.sbp-eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
}

.sbp-eyebrow-rule {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  margin: 6px 0;
}

.sbp-price {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.sbp-tile--luxury .sbp-eyebrow {
  font-size: 44px;
}

.sbp-sublabel {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 989px) {
  .sbp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .sbp-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sbp-eyebrow {
    font-size: 22px;
  }

  .sbp-price {
    font-size: 24px;
  }
}