/** Shopify CDN: Minification failed

Line 333:0 Unexpected "}"

**/
.ogb-pricing-tiers {
  position: relative;
}

/* Remove Shapes push-btn shadow effect for cleaner look */
.ogb-pricing-tiers .push-btn::after,
.ogb-pricing-tiers .btn::after {
  display: none !important;
}

/* Ensure buttons don't shift on hover */
.ogb-pricing-tiers .push-btn:hover .push-btn__surface,
.ogb-pricing-tiers .btn:hover {
  transform: none !important;
}

/* Section Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 206, 0, 0.1);
  border: 1px solid rgba(204, 46, 72, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto 2rem;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.badge-icon svg {
  width: 1rem;
  height: 1rem;
  color: #CC2E48;
}

/* Section Description */
.section-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Pricing Tiers Grid */
.pricing-tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .pricing-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 990px) {
  .pricing-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Pricing Tier */
.pricing-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.pricing-tier:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Popular Tier */
.pricing-tier-popular {
  border: 2px solid #CC2E48;
  background: rgba(255, 206, 0, 0.05);
  box-shadow: 0 20px 40px rgba(204, 46, 72, 0.2);
}

.pricing-tier-popular:hover {
  box-shadow: 0 25px 50px rgba(204, 46, 72, 0.3);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: #CC2E48;
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  white-space: nowrap;
}

/* Tier Content */
.tier-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tier-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Tier Price */
.tier-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #CC2E48;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-feature-settings: normal !important;
  font-variant-numeric: normal !important;
}

.price-unit {
  font-size: 1.125rem;
  opacity: 0.7;
}

/* Compare Price */
.compare-price {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  opacity: 0.7;
}

.compare-price-amount {
  text-decoration: line-through;
  margin-left: 0.25rem;
}

/* Tier Features */
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.feature-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 206, 0, 0.15);
  color: #CC2E48;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-text {
  flex: 1;
}

/* Tier Button */
.tier-button {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.tier-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: #CC2E48;
  color: #000000;
}

.btn-primary:hover:not(:disabled) {
  background: #F19BA3;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(204, 46, 72, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-scheme-text, #000000);
  border: 2px solid #CC2E48;
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: #CC2E48;
  color: #CC2E48;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: #000000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Footer Note */
.section-footer-note {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .pricing-tiers-grid {
    gap: 2rem;
  }
  
  .pricing-tier {
    padding: 2rem 1.5rem;
  }
  
  .tier-title {
    font-size: 1.25rem;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}


/* Remove Shapes push-btn shadow effect for cleaner look */
.ogb-pricing-tiers .push-btn::after,
.ogb-pricing-tiers .btn::after {
  display: none !important;
}

/* Ensure buttons don't shift on hover */
.ogb-pricing-tiers .push-btn:hover .push-btn__surface,
.ogb-pricing-tiers .btn:hover {
  transform: none !important;
}

  /* Force buttons to show on mobile */
  .tier-button {
    display: block !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 50px !important;
  }
  
  /* Make secondary buttons more visible on mobile */
  .btn-secondary {
    background: #CC2E48 !important;
    color: #ffffff !important;
    border: 2px solid #CC2E48 !important;
    font-weight: 700 !important;
  }
  
  .btn-primary {
    background: #CC2E48 !important;
    color: #000000 !important;
    font-weight: 700 !important;
  }
}
