/** Shopify CDN: Minification failed

Line 20:13 Expected identifier but found whitespace
Line 20:15 Unexpected "{"
Line 20:24 Expected ":"
Line 30:27 Expected ")" to end URL token
Line 32:18 Expected identifier but found whitespace
Line 32:20 Unexpected "{"
Line 32:29 Expected ":"
Line 32:56 Expected ":"
Line 33:10 Expected identifier but found whitespace
Line 33:12 Unexpected "{"
... and 31 more hidden warnings

**/


/* CSS from section stylesheet tags */
.refer-a-friend-section {
  background: {{ section.settings.bg_color }};
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.refer-a-friend-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url({{ section.settings.bg_pattern | img_url: 'master' }});
  background-repeat: repeat;
  background-size: {{ section.settings.pattern_size }}px;
  opacity: {{ section.settings.pattern_opacity | divided_by: 100.0 }};
  pointer-events: none;
  z-index: 0;
}

.refer-a-friend__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.refer-a-friend__left h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}

.refer-a-friend__left .rte {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 18px;
}

.refer-a-friend__left .rte p {
  margin: 0 0 10px;
}

.refer-a-friend__illustration {
  margin-top: 30px;
  text-align: center;
}

.refer-a-friend__illustration img {
  max-width: {{ section.settings.image_width }}%;
  height: auto;
  border-radius: 12px;
}

.refer-a-friend__form-box {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.refer-a-friend__form-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin: 0 0 20px;
}

.refer-a-friend__group {
  margin-bottom: 16px;
}

.refer-a-friend__group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.refer-a-friend__group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border 0.2s;
}

.refer-a-friend__group input:focus {
  outline: none;
  border-color: {{ section.settings.bg_color }};
  box-shadow: 0 0 0 3px {{ section.settings.bg_color | color_modify: 'alpha', 0.2 }};
}

.refer-a-friend__add-btn {
  background: transparent;
  border: 2px solid {{ section.settings.bg_color }};
  color: {{ section.settings.bg_color }};
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.2s;
}

.refer-a-friend__add-btn:hover {
  background: {{ section.settings.bg_color }};
  color: #fff;
}

.refer-a-friend__submit {
  background: {{ section.settings.submit_color }};
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: all 0.2s;
}

.refer-a-friend__submit:hover {
  background: {{ section.settings.submit_color | color_darken: 10 }};
  transform: translateY(-1px);
}

.refer-a-friend__privacy {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-top: 16px;
}

.refer-a-friend__privacy a {
  color: {{ section.settings.bg_color }};
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .refer-a-friend__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .refer-a-friend__left h2 {
    font-size: 2.2rem;
    text-align: center;
  }
  .refer-a-friend__left .rte {
    text-align: center;
  }
  .refer-a-friend__illustration {
    order: -1;
    margin-bottom: 20px;
  }
  .refer-a-friend__form-box {
    padding: 28px 20px;
  }
}
.membership-main {
  background:rgb(255, 255, 255);
  padding: 40px 20px;
}

.ai-subscription-plans {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-subscription-plans__heading {
  text-align: center;
  margin: 0 0 40px;
  font-size: 32px;
  font-weight: 600;
  color: #121212;
}

.ai-subscription-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ai-subscription-plan {
  position: relative;
  background: #8BD4DD;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ai-subscription-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #121212;
}

.ai-subscription-plan--highlighted {
  border-color: #334fb4;
  border-width: 3px;
  background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 100%);
}

.ai-subscription-plan--highlighted:hover {
  border-color: #334fb4;
}

.ai-subscription-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #334fb4;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ai-subscription-plan__name {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
  color: #121212;
}

.ai-subscription-plan__price {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
  color: #121212;
}

.ai-subscription-plan__description {
  flex-grow: 1;
  margin: 0 0 24px;
  text-align: start;
  color: #666666;
  line-height: 1.6;
}

.ai-subscription-plan__description p {
  margin: 0 0 8px;
}

.ai-subscription-plan__description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-subscription-plan__description li {
  margin: 8px 0;
  padding-left: 24px;
  position: relative;
}

.ai-subscription-plan__description li:before {
  content: "Checkmark";
  position: absolute;
  left: 0;
  color: #334fb4;
  font-weight: 700;
}

.ai-subscription-plan__button {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  background: #121212;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.ai-subscription-plan__button:hover {
  background: #000000;
  transform: scale(1.02);
}

.ai-subscription-plan--highlighted .ai-subscription-plan__button {
  background: #334fb4;
}

.ai-subscription-plan--highlighted .ai-subscription-plan__button:hover {
  background: #2a3f99;
}

.ai-subscription-plan__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media screen and (max-width: 989px) {
  .ai-subscription-plans__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .ai-subscription-plans__heading {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .ai-subscription-plan {
    padding: 28px 20px;
  }
  .ai-subscription-plan__name {
    font-size: 22px;
  }
  .ai-subscription-plan__price {
    font-size: 32px;
  }
}