/** Shopify CDN: Minification failed

Line 15:15 Expected identifier but found whitespace
Line 15:17 Unexpected "{"
Line 15:26 Expected ":"
Line 16:10 Expected identifier but found whitespace
Line 16:12 Unexpected "{"
Line 16:21 Expected ":"

**/


/* CSS from section stylesheet tags */
.announcement-bar {
    background: {{ section.settings.background_color }};
    color: {{ section.settings.text_color }};
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--font-body-medium);
  }

  .announcement-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .announcement-icon {
    margin-right: 8px;
  }

  .announcement-bar strong {
    font-family: var(--font-body-bold);
  }

  @media (max-width: 768px) {
    .announcement-bar {
      font-size: 13px;
      padding: 8px 16px;
    }
  }
/* Box Set Benefits Section */
  .box-set-benefits {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7a12d4 0%, #6a0dad 100%);
    color: white;
  }
  .box-set-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .box-set-benefits .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .box-set-benefits .section-header h2 {
    font-family: Grotesk-Bold, Grotesk, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    margin-bottom: 16px;
  }
  .box-set-benefits .section-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
  }
  .box-set-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  @media (max-width: 768px) {
    .box-set-benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  .box-set-benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .box-set-benefit-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .box-set-benefit-card h3 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
  }
  .box-set-benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
  }
/* Box Set FAQ Section */
  .box-set-faq {
    padding: 80px 20px;
    background: #f9fafb;
  }
  .box-set-faq .container {
    max-width: 800px;
    margin: 0 auto;
  }
  .box-set-faq .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .box-set-faq .section-header h2 {
    font-family: Grotesk-Bold, Grotesk, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    color: #0f131a;
  }
  .box-set-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .box-set-faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
  }
  .box-set-faq-question {
    padding: 20px 24px;
    font-family: Grotesk-Bold, sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
  }
  .box-set-faq-question:hover {
    background: #f9fafb;
  }
  .box-set-faq-question::after {
    content: '+';
    font-size: 24px;
    color: #7a12d4;
    transition: transform 0.3s;
    font-weight: 300;
  }
  .box-set-faq-item.open .box-set-faq-question::after {
    transform: rotate(45deg);
  }
  .box-set-faq-answer {
    padding: 0 24px 20px;
    color: #71767f;
    font-size: 15px;
    line-height: 1.7;
    display: none;
  }
  .box-set-faq-item.open .box-set-faq-answer {
    display: block;
  }
/* Box Set Included Section */
  .box-set-included {
    padding: 80px 20px;
    background: linear-gradient(180deg, white 0%, #f3e8ff 100%);
  }
  .box-set-included .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .box-set-included .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .box-set-included .section-header h2 {
    font-family: Grotesk-Bold, Grotesk, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    margin-bottom: 16px;
    color: #0f131a;
  }
  .box-set-included .section-header p {
    font-size: 18px;
    color: #71767f;
    max-width: 700px;
    margin: 0 auto;
  }
  .box-set-states-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 48px;
  }
  @media (max-width: 1024px) {
    .box-set-states-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 768px) {
    .box-set-states-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 480px) {
    .box-set-states-grid {
      grid-template-columns: 1fr;
    }
  }
  .box-set-state-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
  }
  .box-set-state-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  .box-set-state-card--focus {
    border-color: #3b82f6;
  }
  .box-set-state-card--zen {
    border-color: #10b981;
  }
  .box-set-state-card--bliss {
    border-color: #f59e0b;
  }
  .box-set-state-card--dream {
    border-color: #6366f1;
  }
  .box-set-state-card--gazm {
    border-color: #e11d48;
  }
  .box-set-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: #f9fafb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
  }
  .box-set-state-name {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .box-set-state-card--focus .box-set-state-name {
    color: #3b82f6;
  }
  .box-set-state-card--zen .box-set-state-name {
    color: #10b981;
  }
  .box-set-state-card--bliss .box-set-state-name {
    color: #f59e0b;
  }
  .box-set-state-card--dream .box-set-state-name {
    color: #6366f1;
  }
  .box-set-state-card--gazm .box-set-state-name {
    color: #e11d48;
  }
  .box-set-state-tagline {
    font-size: 14px;
    color: #71767f;
    font-family: Grotesk-Regular, sans-serif;
    line-height: 1.5;
  }
  .box-set-value-callout {
    background: linear-gradient(135deg, #7a12d4 0%, #6a0dad 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
  }
  .box-set-value-callout h3 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 28px;
    margin-bottom: 16px;
  }
  .box-set-value-callout p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
  }
  .box-set-value-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
  }
  .box-set-value-stat {
    text-align: center;
  }
  .box-set-value-stat-value {
    font-size: 48px;
    font-weight: 800;
    font-family: Grotesk-Bold, sans-serif;
    display: block;
    margin-bottom: 8px;
  }
  .box-set-value-stat-label {
    font-size: 14px;
    opacity: 0.9;
  }
/* Box Set Premium Section */
  .box-set-premium {
    padding: 80px 20px;
    background: white;
  }
  .box-set-premium .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .box-set-premium .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .box-set-premium .section-header h2 {
    font-family: Grotesk-Bold, Grotesk, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    margin-bottom: 16px;
    color: #0f131a;
  }
  .box-set-premium .section-header p {
    font-size: 18px;
    color: #71767f;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
  }
  .box-set-premium-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .box-set-premium-features {
      grid-template-columns: 1fr;
    }
  }
  .box-set-premium-feature {
    text-align: center;
    padding: 32px 24px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s;
  }
  .box-set-premium-feature:hover {
    background: #f3e8ff;
    transform: translateY(-4px);
  }
  .box-set-premium-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .box-set-premium-feature h3 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f131a;
  }
  .box-set-premium-feature p {
    font-size: 14px;
    color: #71767f;
    line-height: 1.7;
  }
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 250;
    display: none;
  }
  .cart-overlay.active {
    display: block;
  }
  .cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: white;
    z-index: 300;
    transition: right 0.3s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }
  .cart-drawer.active {
    right: 0;
  }
  .cart-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--color-gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cart-header h3 {
    font-weight: 700;
    font-size: 1.125rem;
  }
  .cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-gray-600);
  }
  .cart-items {
    padding: 1.25rem;
    flex: 1;
    overflow-y: auto;
  }
  .cart-empty {
    text-align: center;
    padding: 3.75rem 1.25rem;
    color: var(--color-gray-600);
  }
  .cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-gray-100);
  }
  .cart-item-image {
    width: 64px;
    height: 64px;
    background: var(--color-gray-100);
    border-radius: 8px;
    overflow: hidden;
  }
  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .cart-item-details {
    flex: 1;
  }
  .cart-item-details h4 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  .cart-item-details .price {
    font-size: 0.875rem;
    color: var(--color-gray-600);
  }
  .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .quantity-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-gray-300);
    background: white;
    border-radius: 6px;
    cursor: pointer;
  }
  .cart-item-remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray-500);
    cursor: pointer;
  }
  .cart-footer {
    padding: 1.25rem;
    border-top: 1px solid var(--color-gray-200);
  }
  .cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .cart-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--color-purple);
    color: white;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
  }
  .accelerated-checkout {
    margin-top: 1rem;
  }
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
.comparison-section {
    padding: 80px 20px;
    background: white;
  }
  
  .comparison-table {
    max-width: 900px;
    margin: 40px auto 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid #E8E8E8;
  }
  
  .comparison-row:last-child {
    border-bottom: none;
  }
  
  .comparison-header {
    background: #0F131A;
    color: white;
  }
  
  .comparison-header .comparison-cell {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
  }
  
  .comparison-cell {
    padding: 20px 24px;
    font-size: 15px;
    display: flex;
    align-items: center;
    color: #71767F;
  }
  
  .comparison-cell:nth-child(2),
  .comparison-cell:nth-child(3) {
    text-align: center;
    justify-content: center;
  }
  
  .comparison-cell.highlight {
    background: linear-gradient(135deg, rgba(122, 18, 212, 0.05) 0%, rgba(148, 0, 255, 0.05) 100%);
  }
  
  .comparison-check {
    color: #7a12d4;
    font-size: 20px;
    font-weight: 700;
  }
  
  .comparison-x {
    color: #d2d2d2;
    font-size: 18px;
  }
  
  @media (max-width: 768px) {
    .comparison-row {
      grid-template-columns: 1.5fr 1fr 1fr;
    }
    .comparison-cell {
      padding: 16px 12px;
      font-size: 14px;
    }
  }
.creators {
    padding: 80px 0;
  }
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-header p {
    color: #71767f;
    font-size: 16px;
    margin-top: 12px;
  }
  .creator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
  }
  @media (max-width: 768px) {
    .creator-grid {
      grid-template-columns: 1fr;
    }
  }
  .creator-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .creator-image {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .creator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .creator-image svg {
    width: 60%;
    height: 60%;
    opacity: 0.3;
  }
  .creator-role {
    font-size: 12px;
    color: #7a12d4;
    font-family: Grotesk-Bold, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .creator-name {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .creator-bio {
    font-size: 14px;
    color: #71767f;
    line-height: 1.7;
  }
  .creator-creds {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
  }
  .creator-cred {
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-family: Grotesk-Medium, sans-serif;
    color: #4b5563;
  }
.ebook-announcement-bar {
    background: #7a12d4;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-family: var(--font-body-medium);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 101;
  }

  .ebook-announcement-inner {
    max-width: 1200px;
    margin: 0 auto;
  }

  .ebook-announcement-icon {
    margin-right: 8px;
  }

  .ebook-announcement-bar strong {
    font-family: var(--font-body-bold);
  }

  @media (max-width: 768px) {
    .ebook-announcement-bar {
      font-size: 13px;
      padding: 8px 16px;
    }
  }
.ebook-author {
    padding: 80px 0;
    background: #f9fafb;
  }

  .author-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
  }

  .author-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  }

  .author-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .author-badge {
    font-size: 12px;
    color: #7a12d4;
    font-family: var(--font-body-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .author-name {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
    color: #0f131a;
  }

  .author-bio {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
  }

  .author-creds {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .author-cred {
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-family: var(--font-body-medium);
    color: #4b5563;
    border: 1px solid #e5e7eb;
  }

  @media (max-width: 768px) {
    .ebook-author {
      padding: 60px 0;
    }

    .author-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .author-image {
      max-width: 250px;
      margin: 0 auto;
    }

    .author-creds {
      justify-content: center;
    }
  }
.ebook-benefits {
    padding: 80px 0;
    background: white;
  }

  .benefits-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .benefits-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 16px;
    color: #0f131a;
  }

  .benefits-header p {
    font-size: 1.125rem;
    color: #71767f;
    max-width: 700px;
    margin: 0 auto;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 100%;
  }

  /* 4 columns on tablets and up */
  @media (min-width: 900px) {
    .benefits-grid {
      grid-template-columns: repeat(4, 1fr) !important;
    }
  }

  /* 2 columns on mobile */
  @media (max-width: 899px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
  }

  /* 1 column on very small screens */
  @media (max-width: 500px) {
    .benefits-grid {
      grid-template-columns: 1fr !important;
    }
  }

  .benefit-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
    border: 2px solid transparent;
  }

  .benefit-card:hover {
    background: white;
    border-color: #7a12d4;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(122, 18, 212, 0.15);
  }

  .benefit-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .benefit-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
    color: #0f131a;
  }

  .benefit-text {
    color: #71767f;
    font-size: 14px;
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .ebook-benefits {
      padding: 60px 0;
    }
  }
.ebook-final-cta {
    padding: 80px 0;
    background: white;
  }

  .final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
  }

  .ebook-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 16px;
    color: #0f131a;
  }

  .ebook-final-cta p {
    font-size: 1rem;
    color: #71767f;
    margin-bottom: 32px;
  }

  .ebook-final-cta .btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #7a12d4;
    color: white;
    border-radius: 999px;
    font-family: var(--font-body-bold);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(122, 18, 212, 0.3);
  }

  .ebook-final-cta .btn-primary:hover {
    background: #6a0dad;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(122, 18, 212, 0.4);
  }

  @media (max-width: 768px) {
    .ebook-final-cta {
      padding: 60px 0;
    }
  }
.ebook-form-section {
    background: #f9fafb;
    padding: 60px 0;
    border-top: 2px solid #7a12d4;
    border-bottom: 2px solid #7a12d4;
  }

  @media (max-width: 768px) {
    .ebook-form-section {
      padding: 40px 0;
    }
  }
.ebook-hero {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #f5f0ff 0%, white 100%);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero-sub {
    font-size: 1.125rem;
    color: #71767f;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }

  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .social-proof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    margin-top: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .social-proof-icon {
    font-size: 20px;
  }

  .social-proof-text {
    font-size: 13px;
    color: #4b5563;
    font-family: var(--font-body-medium);
  }

  .social-proof-number {
    color: #7a12d4;
    font-family: var(--font-body-bold);
  }

  .hero-cta {
    margin-top: 32px;
  }

  .btn-primary {
    display: inline-block;
    padding: 18px 48px;
    background: #7a12d4;
    color: white;
    border-radius: 999px;
    font-family: var(--font-body-bold);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(122, 18, 212, 0.3);
  }

  .btn-primary:hover {
    background: #6a0dad;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(122, 18, 212, 0.4);
  }

  @media (max-width: 768px) {
    .ebook-hero {
      padding: 140px 0 60px;
    }

    .hero-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
.pain-point {
    padding: 80px 0;
    background: white;
  }

  .pain-point-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .pain-point h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    line-height: 1.2;
    color: #0f131a;
  }

  .pain-point p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .pain-point .highlight {
    color: #7a12d4;
    font-family: var(--font-body-bold);
  }

  @media (max-width: 768px) {
    .pain-point {
      padding: 60px 0;
    }
  }
.ebook-revolution {
    padding: 80px 0;
    background: linear-gradient(135deg, #7a12d4 0%, #5a0ba4 100%);
    color: white;
  }

  .revolution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .ebook-revolution h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .ebook-revolution p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
  }

  .revolution-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .revolution-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  @media (max-width: 768px) {
    .ebook-revolution {
      padding: 60px 0;
    }

    .revolution-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }
.faq {
    padding: 80px 0;
    background: #f9fafb;
  }
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-header p {
    color: #71767f;
    font-size: 16px;
    margin-top: 12px;
  }
  .faq-list {
    max-width: 700px;
    margin: 48px auto 0;
  }
  .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid transparent;
  }
  .faq-question {
    padding: 20px 24px;
    font-family: Grotesk-Bold, sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0f131a;
  }
  .faq-question::after {
    content: '+';
    font-size: 24px;
    color: #9ca3af;
    transition: transform 0.3s;
  }
  .faq-item.open .faq-question::after {
    transform: rotate(45deg);
  }
  .faq-answer {
    padding: 0 24px 20px;
    color: #71767f;
    font-size: 14px;
    line-height: 1.7;
    display: none;
  }
  .faq-item.open .faq-answer {
    display: block;
  }
.footer {
    background: var(--color-black);
    color: white;
    padding: 60px 0 24px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  .footer-brand .logo {
    display: block;
    margin-bottom: 1rem;
  }
  .footer-brand .logo-image {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
  }
  .footer-brand .logo-text {
    font-weight: 700;
    font-size: 1.25rem;
  }
  .footer-brand .logo-text span {
    color: var(--color-purple);
  }
  .footer-brand p {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.7;
  }
  .footer-col h4 {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  .footer-col a {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    font-size: 14px;
    padding: 0.375rem 0;
    padding: 6px 0;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover {
    color: white !important;
    text-decoration: none;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    color: var(--color-gray-600);
    font-size: 0.8125rem;
  }
.header {
    background: white;
    border-bottom: 1px solid var(--color-gray-200);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .logo-image {
    width: var(--logo-width, 120px);
    height: auto;
    max-height: 50px;
    object-fit: contain;
  }
  .logo-text {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 20px;
    color: var(--color-black);
  }
  .logo-text span {
    color: var(--color-purple);
  }
  @media (max-width: 768px) {
    .logo-image {
      width: var(--logo-width-mobile, 100px);
    }
  }
  .nav {
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .nav > a,
  .nav-dropdown > a,
  .header-account-link {
    color: #71767f;
    text-decoration: none;
    font-size: 14px;
    font-family: Grotesk-Medium, sans-serif;
    transition: color 0.2s;
  }
  .nav > a:hover,
  .nav-dropdown:hover > a,
  .header-account-link:hover {
    color: var(--color-purple);
  }
  .nav a {
    text-decoration: none;
  }
  .nav a:hover {
    text-decoration: none;
  }

  /* Dropdown */
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }
  .nav-dropdown > a::after {
    content: '';
    border: solid var(--color-gray-600);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s;
  }
  .nav-dropdown:hover > a::after {
    transform: rotate(-135deg);
    margin-top: 3px;
    border-color: var(--color-purple);
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    margin-top: 12px;
  }
  .nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
  }
  .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--color-gray-600);
    font-size: 14px;
    font-family: Grotesk-Medium, sans-serif;
    transition: all 0.2s;
    /* text-decoration: none; */
  }
  .dropdown-menu a:hover {
    background: #f9fafb;
    color: var(--color-purple);
  }
  .product-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
  }
  .focus-icon {
    background: #fef3c7;
  }
  .zen-icon {
    background: #dbeafe;
  }
  .bliss-icon {
    background: #fce7f3;
  }
  .dream-icon {
    background: #e0e7ff;
  }
  .gazm-icon {
    background: #fecdd3;
  }
  .box-set-icon {
    background: #e9d5ff;
  }

  .header .cart-btn {
    background: #0f131a !important;
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    font-family: Grotesk-Bold, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .cart-count {
    background: var(--color-purple);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }
  @media (max-width: 768px) {
    .nav {
      display: none;
    }
  }
.product-page {
    padding: 100px 0 80px;
  }
  .product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  @media (max-width: 900px) {
    .product-container {
      grid-template-columns: 1fr;
    }
  }
  .product-gallery {
    position: sticky;
    top: 120px;
  }
  .main-image {
    background: var(--color-gray-50);
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-bottom: 1rem;
  }
  .main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }
  .product-details {
    padding-top: 20px;
  }
  .product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  .product-description {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 1.5rem;
  }
  .product-price-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--color-gray-200);
  }
  .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
  }
  .product-price .compare-price {
    font-size: 1.25rem;
    color: var(--color-gray-500);
    text-decoration: line-through;
    margin-left: 0.5rem;
  }
  .product-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .qty-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-gray-300);
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.125rem;
    transition: background 0.2s;
  }
  .qty-btn:hover {
    background: var(--color-gray-100);
  }
  .qty-value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
  }
  .add-to-cart-btn {
    flex: 1;
    background: var(--color-purple);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
  }
  .add-to-cart-btn:hover {
    background: var(--color-purple-dark);
    transform: translateY(-1px);
  }
  .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.8125rem;
    color: var(--color-gray-600);
  }
  .trust-badge-item svg {
    color: var(--color-green);
    flex-shrink: 0;
  }
.page-hero {
    background: linear-gradient(180deg, #f5f0ff 0%, white 100%);
    padding: 140px 20px 60px;
    text-align: center;
  }

  .page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(122, 18, 212, 0.08) 0%, rgba(148, 0, 255, 0.08) 100%);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    color: #7a12d4;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 60px);
    line-height: 1.13;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0f131a;
    letter-spacing: 0.25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero h1 span {
    background: linear-gradient(135deg, #7a12d4 0%, #9400ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .page-hero h1 span.no-gradient {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #0f131a;
    background-clip: unset;
    color: #0f131a;
  }

  .page-hero .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 auto;
    color: #71767f;
    letter-spacing: 0.35px;
    max-width: 600px;
  }

  @media (max-width: 768px) {
    .page-hero {
      padding: 100px 20px 40px;
    }
  }
.patents-section {
    background: #0F131A;
    color: white;
    padding: 80px 20px;
  }
  
  .patents-section h2 {
    color: white;
  }
  
  .patents-section .section-intro {
    color: rgba(255,255,255,0.7);
  }
  
  .patent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
  }
  
  @media (max-width: 1000px) {
    .patent-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 700px) {
    .patent-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 500px) {
    .patent-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .patent-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .patent-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
  }
  
  .patent-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #7a12d4 0%, #9400ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .patent-benefit {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
  }
  
  .patent-badge {
    display: inline-block;
    background: #7A12D4;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
.section-privacy-policy .policy-content {
    padding: 60px 0 80px;
    background: white;
  }

  .section-privacy-policy .policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-privacy-policy .policy-container h1 {
    font-family: Grotesk-Bold, sans-serif !important;
    font-size: 32px !important;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #0f131a !important;
    font-weight: 700 !important;
  }

  .section-privacy-policy .policy-container h2 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #0f131a;
  }

  .section-privacy-policy .policy-container h3 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #4b5563;
  }

  .section-privacy-policy .policy-container h5 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 16px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #4b5563;
  }

  .section-privacy-policy .policy-container p {
    color: #71767f;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .section-privacy-policy .policy-container ul {
    margin-left: 24px;
    margin-bottom: 16px;
    list-style-type: disc;
  }

  .section-privacy-policy .policy-container li {
    color: #71767f;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
  }

  .section-privacy-policy .policy-container strong {
    color: #0f131a;
    font-family: Grotesk-Bold, sans-serif;
  }

  .section-privacy-policy .policy-container a {
    color: #7a12d4;
    text-decoration: none;
  }

  .section-privacy-policy .policy-container a:hover {
    text-decoration: underline;
  }

  .section-privacy-policy .last-updated {
    background: #f9fafb;
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #71767f;
  }

  .section-privacy-policy .policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
  }

  .section-privacy-policy .policy-container table td {
    padding: 12px;
    border: 1px solid #e5e7eb;
    color: #71767f;
    font-size: 14px;
    vertical-align: top;
  }

  .section-privacy-policy .policy-container table td:first-child {
    font-family: Grotesk-Bold, sans-serif;
    color: #0f131a;
  }

  @media (max-width: 768px) {
    .section-privacy-policy .policy-container {
      padding: 0 16px;
    }
  }
.product-benefits {
    padding: 80px 20px;
    background: white;
  }
  .product-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .product-benefits-grid {
      grid-template-columns: 1fr;
    }
  }
  .product-benefits-image {
    border-radius: 20px;
    overflow: hidden;
  }
  .product-benefits-image img {
    width: 100%;
    display: block;
  }
  .product-benefits-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  .product-benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .product-benefit-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-gray-100);
  }
  .product-benefit-item:last-child {
    border-bottom: none;
  }
  .product-benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--product-color-light, var(--color-purple-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
  }
  .product-benefit-text h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .product-benefit-text p {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin: 0;
  }
.product-cross-sell {
    padding: 80px 20px;
    background: var(--product-color, var(--color-purple));
    color: white;
    text-align: center;
  }

  /* Product-specific colors */
  [data-product-handle='focus'] .product-cross-sell {
    --product-color: #3b82f6;
  }
  [data-product-handle='zen'] .product-cross-sell {
    --product-color: #10b981;
  }
  [data-product-handle='bliss'] .product-cross-sell {
    --product-color: #f59e0b;
  }
  [data-product-handle='dream'] .product-cross-sell {
    --product-color: #6366f1;
  }
  [data-product-handle='gazm'] .product-cross-sell {
    --product-color: #e11d48;
  }
  .product-cross-sell-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-cross-sell h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .product-cross-sell > .product-cross-sell-container > p {
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }
  .product-cross-sell-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 500px;
    margin: 0 auto;
    color: var(--color-black);
  }
  .product-cross-sell-card img {
    width: 200px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
  }
  .product-cross-sell-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .product-cross-sell-tagline {
    color: var(--color-gray-600);
    font-size: 14px;
    margin-bottom: 16px;
  }
  .product-cross-sell-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-purple);
    margin: 16px 0;
  }
  .product-cross-sell-card .price span {
    font-size: 14px;
    color: var(--color-gray-600);
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 8px;
  }
  .product-cross-sell-btn {
    background: var(--color-purple);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s;
  }
  .product-cross-sell-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }
.product-faq {
    padding: 80px 20px;
    background: white;
  }
  .product-faq-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-faq-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .product-faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
  }
  .product-faq-list {
    max-width: 700px;
    margin: 0 auto;
  }
  .product-faq-item {
    border-bottom: 1px solid var(--color-gray-200);
  }
  .product-faq-question {
    padding: 20px 0;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    user-select: none;
  }
  .product-faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--color-gray-500);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
  }
  .product-faq-item.open .product-faq-question::after {
    transform: rotate(45deg);
  }
  .product-faq-answer {
    padding: 0 0 20px;
    color: var(--color-gray-600);
    font-size: 15px;
    line-height: 1.7;
    display: none;
  }
  .product-faq-item.open .product-faq-answer {
    display: block;
  }
/* Breadcrumb */
  .product-breadcrumb {
    padding: 100px 20px 20px;
    background: var(--color-gray-50);
  }
  .product-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--color-gray-600);
  }
  .product-breadcrumb a {
    color: var(--color-gray-600);
    text-decoration: none;
  }
  .product-breadcrumb a:hover {
    color: var(--color-purple);
  }

  /* Product Hero Container */
  .product-hero-section {
    background: var(--color-gray-50);
    padding: 0 20px 60px;
  }
  .product-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  @media (max-width: 900px) {
    .product-hero-container {
      grid-template-columns: 1fr;
    }
  }

  /* Product Gallery */
  .product-hero-gallery {
    position: sticky;
    top: 100px;
  }
  .product-hero-main-image {
    background: white;
    border-radius: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    overflow: hidden;
  }
  .product-hero-main-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: opacity 0.2s ease;
  }
  .product-hero-thumbnail-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .product-hero-thumbnail {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
  }
  .product-hero-thumbnail:hover,
  .product-hero-thumbnail.active {
    border-color: var(--product-color, var(--color-purple));
  }
  .product-hero-thumbnail img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
  }

  /* Product Info */
  .product-hero-info {
    padding-top: 20px;
  }
  .product-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--product-color-light, var(--color-purple-light));
    color: var(--product-color, var(--color-purple));
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .product-hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
    line-height: 1.1;
  }
  .product-hero-tagline {
    font-size: 18px;
    color: var(--color-gray-600);
    margin-bottom: 20px;
  }
  .product-hero-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
  .product-hero-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
  }
  .product-hero-rating-text {
    font-size: 14px;
    color: var(--color-gray-600);
  }

  /* Daily Use Callout */
  .product-hero-daily-callout {
    background: #f0f9ff;
    border-left: 3px solid #3b82f6;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
  }
  .product-hero-daily-callout h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1e40af;
  }
  .product-hero-daily-callout p {
    font-size: 14px;
    color: var(--color-gray-700);
    line-height: 1.5;
    margin: 0;
  }

  /* Clinical Highlights */
  .product-hero-clinical {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--color-gray-200);
  }
  .product-hero-clinical h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-600);
    margin-bottom: 16px;
  }
  .product-hero-clinical-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .product-hero-clinical-stat {
    text-align: center;
  }
  .product-hero-clinical-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--product-color);
  }
  .product-hero-clinical-label {
    font-size: 11px;
    color: var(--color-gray-600);
    margin-top: 4px;
  }

  /* Pricing Section */
  .product-hero-pricing {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--color-gray-200);
  }
  .product-hero-pricing-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }
  .product-hero-pricing-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .product-hero-pricing-option:hover {
    border-color: var(--product-color, var(--color-purple));
  }
  .product-hero-pricing-option.selected {
    border-color: var(--product-color, var(--color-purple));
    background: var(--product-color-light, var(--color-purple-light));
  }
  .product-hero-pricing-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .product-hero-pricing-option.selected .product-hero-pricing-radio {
    border-color: var(--product-color, var(--color-purple));
  }
  .product-hero-pricing-option.selected .product-hero-pricing-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--product-color, var(--color-purple));
    border-radius: 50%;
  }
  .product-hero-pricing-details {
    flex: 1;
  }
  .product-hero-pricing-label {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .product-hero-save-badge,
  .discount-badge {
    background: var(--color-green);
    color: white;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
  }
  .product-hero-pricing-desc {
    font-size: 13px;
    color: var(--color-gray-600);
    margin-top: 2px;
  }
  .product-hero-pricing-amount {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .product-hero-pricing-amount span {
    font-size: 13px;
    color: var(--color-gray-600);
    font-weight: 400;
  }
  .product-hero-pricing-amount .price-compare {
    font-size: 16px;
    color: var(--color-gray-700);
    text-decoration: line-through;
    font-weight: 400;
  }

  /* Purchase Row */
  .product-hero-purchase-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
  }
  .product-hero-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-gray-300);
    border-radius: 10px;
    overflow: hidden;
  }
  .product-hero-qty-btn {
    width: 44px;
    height: 52px;
    border: none;
    background: var(--color-gray-50);
    cursor: pointer;
    font-size: 18px;
    transition: background 0.2s;
  }
  .product-hero-qty-btn:hover {
    background: var(--color-gray-200);
  }
  .product-hero-qty-value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border: none;
    background: white;
  }
  .product-hero-add-to-cart {
    flex: 1;
    background: var(--product-color, var(--color-purple));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 24px;
  }
  .product-hero-add-to-cart:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  /* Trust Badges */
  .product-hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--color-gray-600);
  }
  .product-hero-trust-badge svg {
    color: var(--color-green);
    flex-shrink: 0;
  }

  /* Product-specific colors */
  [data-product-handle='focus'] {
    --product-color: #3b82f6;
    --product-color-light: #dbeafe;
  }
  [data-product-handle='zen'] {
    --product-color: #10b981;
    --product-color-light: #d1fae5;
  }
  [data-product-handle='bliss'] {
    --product-color: #f59e0b;
    --product-color-light: #fef3c7;
  }
  [data-product-handle='dream'] {
    --product-color: #6366f1;
    --product-color-light: #e0e7ff;
  }
  [data-product-handle='gazm'] {
    --product-color: #e11d48;
    --product-color-light: #fce7f3;
  }
  [data-product-handle='mindvalley-states-box-set'],
  [data-product-handle='box-set'] {
    --product-color: #7a12d4;
    --product-color-light: #f3e8ff;
  }
.product-ingredients {
    padding: 80px 20px;
    background: #111827;
    color: white;
  }
  .product-ingredients-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-ingredients-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .product-ingredients-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .product-ingredients-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
  }
  .product-ingredient-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
  @media (max-width: 640px) {
    .product-ingredient-cards {
      grid-template-columns: 1fr;
    }
  }
  .product-ingredient-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .product-ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
  }
  .product-ingredient-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
  }
  .product-ingredient-name span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    margin-top: 4px;
  }
  .product-ingredient-dose {
    background: var(--product-color, var(--color-purple));
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .product-ingredient-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
  }
  .product-ingredient-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }
  .product-ingredient-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
  }
  .product-ingredient-stat strong {
    color: #c4b5fd;
  }

  /* Hero Ingredient Styles */
  .product-ingredient-card.hero-ingredient {
    grid-column: 1 / -1;
    background: linear-gradient(
      135deg,
      rgba(var(--product-color-rgb, 59, 130, 246), 0.2) 0%,
      rgba(139, 92, 246, 0.2) 100%
    );
    border: 2px solid var(--product-color, #3b82f6);
    padding: 40px;
    margin-bottom: 32px;
  }

  /* Product-specific RGB values for gradient */
  [data-product-handle='mindvalley-states-box-5-state-set'] {
    --product-color: #7a12d4;
    --product-color-rgb: 122, 18, 212;
  }
  [data-product-handle='focus'] {
    --product-color: #3b82f6;
    --product-color-rgb: 59, 130, 246;
  }
  [data-product-handle='zen'] {
    --product-color: #10b981;
    --product-color-rgb: 16, 185, 129;
  }
  [data-product-handle='bliss'] {
    --product-color: #f59e0b;
    --product-color-rgb: 245, 158, 11;
  }
  [data-product-handle='dream'] {
    --product-color: #6366f1;
    --product-color-rgb: 99, 102, 241;
  }
  [data-product-handle='gazm'] {
    --product-color: #e11d48;
    --product-color-rgb: 225, 29, 72;
  }

  .hero-ingredient-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--product-color, #3b82f6);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .hero-ingredient .product-ingredient-header {
    margin-bottom: 8px;
  }

  .hero-ingredient .product-ingredient-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
  }

  .hero-ingredient-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
  }

  .hero-ingredient .product-ingredient-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .product-ingredient-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  @media (max-width: 768px) {
    .product-ingredient-stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .product-ingredient-stats-grid .product-ingredient-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .product-ingredient-stats-grid .product-ingredient-stat strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--product-color, #3b82f6);
    display: block;
  }

  .product-ingredient-stats-grid .product-ingredient-stat span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
  }

  @media (max-width: 640px) {
    .product-ingredient-card.hero-ingredient {
      padding: 28px 20px;
    }

    .hero-ingredient .product-ingredient-name {
      font-size: 22px;
    }

    .hero-ingredient-subtitle {
      font-size: 14px;
    }

    .hero-ingredient .product-ingredient-desc {
      font-size: 14px;
    }
  }
.product-testimonials {
    padding: 80px 20px;
    background: white;
  }
  .product-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .product-testimonials-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .product-testimonials-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .product-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
  }
  @media (max-width: 400px) {
    .product-testimonial-grid {
      grid-template-columns: 1fr;
    }
  }
  .product-testimonial-card {
    background: var(--color-gray-50);
    border-radius: 16px;
    padding: 32px;
  }
  .product-testimonial-quote {
    font-size: 16px;
    color: var(--color-gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
    font-style: italic;
  }
  .product-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .product-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }
  .product-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .product-testimonial-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
  }
  .product-testimonial-title {
    font-size: 13px;
    color: var(--color-gray-600);
  }
  .product-testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-green);
    font-size: 12px;
    margin-top: 4px;
  }
/* Products Section - Exact match to mockup.html */
  .products-section {
    padding: 80px 0;
    background: white;
  }
  .products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .products-section .section-header p {
    color: #71767f;
    font-size: 1rem;
    margin-top: 0.75rem;
  }
  /* Product Grid - matches mockup auto-fit layout */
  .products-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  /* Product Card base styles */
  .products-section .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .products-section .product-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
  }
  .products-section .product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  .products-section .product-card-link:hover {
    text-decoration: none;
  }
  /* Featured card styling */
  .products-section .product-card.featured {
    border: 2px solid #7a12d4;
    position: relative;
  }
  .products-section .product-card.featured::before {
    content: 'BEST VALUE';
    position: absolute;
    top: 16px;
    right: 16px;
    background: #7a12d4;
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-family: Grotesk-Bold, sans-serif;
    font-weight: 700;
    z-index: 1;
  }
  /* Product Image */
  .products-section .product-image {
    height: 240px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .products-section .product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  /* Product Info */
  .products-section .product-card .product-info {
    padding: 24px;
  }
  .products-section .product-card .product-name {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 20px;
    margin-bottom: 4px;
  }
  .products-section .product-card .product-tagline {
    color: #71767f;
    font-size: 14px;
    font-family: Grotesk-Regular, sans-serif;
    margin-bottom: 16px;
  }
  .products-section .product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
  }
  .products-section .product-card .stars {
    color: #f59e0b;
    font-size: 14px;
  }
  .products-section .product-card .rating-text {
    font-size: 13px;
    color: #71767f;
    font-family: Grotesk-Regular, sans-serif;
  }
  /* Product Price */
  .products-section .product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }
  .products-section .product-card .price-current {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 28px;
    color: #0f131a;
  }
  .products-section .product-card .price-compare {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
    font-family: Grotesk-Regular, sans-serif;
  }
  .products-section .product-card .price-sub {
    font-size: 13px;
    color: #71767f;
    font-family: Grotesk-Regular, sans-serif;
    font-weight: 400;
  }
  .products-section .product-card .price-discount {
    background: #10b981;
    color: white;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-family: Grotesk-Bold, sans-serif;
    font-weight: 700;
  }
  /* Product Button */
  .products-section .product-btn {
    width: 100%;
    padding: 14px;
    background: #0f131a;
    color: white;
    border: none;
    border-radius: 999px;
    font-family: Grotesk-Bold, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .products-section .product-btn:hover {
    background: #7a12d4;
  }
  .products-section .product-card.featured .product-btn {
    background: #7a12d4;
  }
  .products-section .product-card.featured .product-btn:hover {
    background: #6a0dad;
  }
.quality-section {
    padding: 60px 40px;
    background: #ffffff;
    margin: 0 auto 60px;
    max-width: 1200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
  }

  .quality-section:first-child {
    margin-top: 60px;
  }

  .quality-section h2 {
    font-size: clamp(2rem, 4vw, 48px);
    line-height: 1.17;
    margin-bottom: 24px;
    color: #0f131a;
    font-weight: 700;
    letter-spacing: 0.25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .quality-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    color: #71767f;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.35px;
  }

  .quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
  }

  @media (max-width: 900px) {
    .quality-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 500px) {
    .quality-grid {
      grid-template-columns: 1fr;
    }
  }

  .quality-card {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, rgba(148, 0, 255, 0.03) 0%, rgba(0, 63, 255, 0.03) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .quality-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  .quality-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
  }

  .quality-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .quality-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f131a;
  }

  .quality-card p {
    font-size: 14px;
    color: #71767f;
    line-height: 1.6;
    margin: 0;
  }

  @media (max-width: 768px) {
    .quality-section {
      padding: 40px 24px;
    }
  }
.guarantee-badge {
    background: white;
    border: 2px solid #7a12d4;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    max-width: 500px;
    margin: -40px auto 60px;
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.1);
  }
  
  .guarantee-icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  
  .guarantee-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #7a12d4;
    margin-bottom: 8px;
  }
  
  .guarantee-text {
    color: #71767f;
    font-size: 15px;
  }
  
  @media (max-width: 768px) {
    .guarantee-badge {
      margin: -20px 20px 40px;
    }
  }
.section-refund-policy .policy-content {
    padding: 60px 0 80px;
    background: white;
  }

  .section-refund-policy .policy-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .section-refund-policy .policy-container h1 {
    font-family: Grotesk-Bold, sans-serif !important;
    font-size: 32px !important;
    margin-top: 48px;
    margin-bottom: 24px;
    color: #0f131a !important;
    font-weight: 700 !important;
  }

  .section-refund-policy .policy-container h2 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #0f131a;
  }

  .section-refund-policy .policy-container p {
    color: #71767f;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .section-refund-policy .policy-container strong {
    color: #0f131a;
  }

  .section-refund-policy .policy-container a {
    color: #7a12d4;
    text-decoration: none;
  }

  .section-refund-policy .policy-container a:hover {
    text-decoration: underline;
  }
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    pointer-events: none;
  }

  .sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .sticky-cta-btn {
    background: #7a12d4;
    color: white;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--font-body-bold);
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(122, 18, 212, 0.4);
    transition: all 0.3s;
  }

  .sticky-cta-btn:hover {
    background: #6a0dad;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(122, 18, 212, 0.5);
  }

  .sticky-cta-icon {
    font-size: 18px;
  }

  @media (max-width: 768px) {
    .sticky-cta {
      bottom: 10px;
      right: 10px;
    }

    .sticky-cta-btn {
      padding: 14px 24px;
      font-size: 14px;
    }
  }
.contact-section {
    padding: 60px 0;
    background: white;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
  }
  
  .contact-card {
    background: #f9fafb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
  }
  
  .contact-card:hover {
    background: #f5f0ff;
    transform: translateY(-4px);
  }
  
  .contact-icon {
    font-size: 40px;
    margin-bottom: 16px;
  }
  
  .contact-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .contact-text {
    color: #71767f;
    font-size: 14px;
    margin-bottom: 16px;
  }
  
  .contact-link {
    display: inline-block;
    color: #7a12d4;
    font-family: var(--font-body-bold);
    font-size: 14px;
    text-decoration: none;
  }
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
  }

  .faq-category {
    margin-bottom: 48px;
  }

  .faq-category-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #7a12d4;
    margin-bottom: 24px;
  }

  .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s;
  }

  .faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }

  .faq-question {
    padding: 20px 24px;
    font-family: var(--font-body-bold);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
  }

  .faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }

  .faq-answer-inner {
    padding-bottom: 20px;
    color: #71767f;
    font-size: 14px;
    line-height: 1.8;
  }

  .faq-answer-inner a {
    color: #7a12d4;
  }

  .faq-item.open .faq-answer {
    max-height: 1000px;
  }
.section-terms .terms-content {
    padding: 60px 0 80px;
    background: white;
  }

  .section-terms .terms-content .mv-container {
    max-width: 800px;
  }

  .section-terms .terms-meta {
    text-align: center;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 40px;
  }

  .section-terms .terms-meta p {
    font-size: 14px;
    color: #71767f;
    margin: 4px 0;
  }

  .section-terms .terms-meta strong {
    color: #0f131a;
    font-family: Grotesk-Bold, sans-serif;
  }

  .section-terms .terms-text h1 {
    font-family: Grotesk-Bold, sans-serif !important;
    font-size: 32px !important;
    color: #0f131a !important;
    margin: 48px 0 24px;
    font-weight: 700 !important;
  }

  .section-terms .terms-text h2 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 24px;
    color: #0f131a;
    margin: 40px 0 20px;
  }

  .section-terms .terms-text h2:first-child {
    margin-top: 0;
  }

  .section-terms .terms-text p {
    color: #71767f;
    font-size: 15px;
    line-height: 1.8;
    margin: 16px 0;
  }

  .section-terms .terms-text strong {
    color: #0f131a;
    font-family: Grotesk-Bold, sans-serif;
  }

  .section-terms .terms-text a {
    color: #7a12d4;
    text-decoration: underline;
  }

  .section-terms .terms-text a:hover {
    color: #6a0dad;
  }
.testimonials-cta-section {
    background: linear-gradient(135deg, #0f131a 0%, #1e1b4b 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
  }

  .testimonials-cta-section h2 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
  }

  .testimonials-cta-section p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #7a12d4;
    color: white;
    font-family: Grotesk-Bold, sans-serif;
    font-size: 16px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
  }

  .testimonials-cta-btn:hover {
    background: #6a0dad;
    transform: translateY(-2px);
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .testimonials-cta-section h2 {
      font-size: 28px;
    }

    .testimonials-cta-section p {
      font-size: 16px;
    }
  }
.testimonials-hero {
    background: linear-gradient(180deg, #f5f0ff 0%, #f9fafb 100%);
    padding: 140px 20px 60px;
    text-align: center;
  }

  .testimonials-hero h1 {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #0f131a;
  }

  .testimonials-hero h1 span {
    color: #7a12d4;
  }

  .testimonials-hero .hero-sub {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    color: #71767f;
    max-width: 600px;
  }

  @media (max-width: 768px) {
    .testimonials-hero {
      padding: 100px 20px 40px;
    }

    .testimonials-hero h1 {
      font-size: 32px;
    }
  }
/* Filter Tabs - Testimonials Page */
  .testimonials-page-filter {
    padding: 32px 0;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 64px;
    z-index: 50;
  }

  .testimonials-page-filter .tabs-inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .testimonials-page-filter .filter-tab {
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    background: white;
    font-family: Grotesk-Medium, sans-serif;
    font-size: 14px;
    color: #71767f;
    cursor: pointer;
    transition: all 0.2s;
  }

  .testimonials-page-filter .filter-tab:hover {
    border-color: #c4b5fd;
    color: #7a12d4;
  }

  .testimonials-page-filter .filter-tab.active {
    background: #7a12d4;
    border-color: #7a12d4;
    color: white;
  }

  /* Testimonials Section */
  .testimonials-page-section {
    padding: 60px 0 80px;
    background: #f9fafb;
  }

  /* Testimonials Grid */
  .testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 24px;
  }

  @media (max-width: 480px) {
    .testimonials-page-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Testimonial Card */
  .testimonials-page-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

  .testimonials-page-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }

  /* Quote */
  .testimonials-page-quote {
    font-size: 18px;
    font-family: Grotesk-Medium, sans-serif;
    color: #0f131a;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1;
  }

  .testimonials-page-quote::before {
    content: '"';
    font-size: 48px;
    color: #c4b5fd;
    line-height: 0;
    display: block;
    margin-bottom: 8px;
  }

  /* Details */
  .testimonials-page-details {
    font-size: 15px;
    color: #71767f;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  /* Author */
  .testimonials-page-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
  }

  /* Avatar */
  .testimonials-page-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
  }

  .testimonials-page-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Info */
  .testimonials-page-info {
    flex: 1;
  }

  .testimonials-page-name {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 16px;
    color: #0f131a;
  }

  .testimonials-page-title {
    font-size: 14px;
    color: #71767f;
    margin-top: 2px;
  }

  /* Product Section */
  .testimonials-page-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }

  /* Product Pill */
  .testimonials-page-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-family: Grotesk-Medium, sans-serif;
    color: #4b5563;
  }

  .testimonials-page-pill img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  /* Product Colors */
  .testimonials-page-pill.product-focus {
    background: #dbeafe;
    color: #3b82f6;
  }

  .testimonials-page-pill.product-zen {
    background: #d1fae5;
    color: #10b981;
  }

  .testimonials-page-pill.product-bliss {
    background: #fef3c7;
    color: #f59e0b;
  }

  .testimonials-page-pill.product-dream {
    background: #e0e7ff;
    color: #6366f1;
  }

  .testimonials-page-pill.product-gazm {
    background: #fce7f3;
    color: #e11d48;
  }

  /* Verified Badge */
  .testimonials-page-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #10b981;
    font-family: Grotesk-Medium, sans-serif;
  }

  .testimonials-page-verified svg {
    width: 14px;
    height: 14px;
  }

  /* Mobile Responsive */
  @media (max-width: 768px) {
    .testimonials-page-filter {
      top: 56px;
    }

    .testimonials-page-filter .tabs-inner {
      gap: 8px;
    }

    .testimonials-page-filter .filter-tab {
      padding: 8px 16px;
      font-size: 13px;
    }

    .testimonials-page-grid {
      grid-template-columns: 1fr;
    }
  }
.testimonials {
    padding: 80px 0;
    background: white;
  }
  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-header p {
    color: #71767f;
    font-size: 16px;
    margin-top: 12px;
  }

  /* Filter Tabs */
  .filter-tabs {
    padding: 32px 0;
    background: white;
    position: sticky;
    top: 64px;
    z-index: 50;
    margin-bottom: 32px;
  }
  .tabs-inner {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .filter-tab {
    padding: 10px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    background: white;
    font-family: Grotesk-Medium, sans-serif;
    font-size: 14px;
    color: #71767f;
    cursor: pointer;
    transition: all 0.2s;
  }
  .filter-tab:hover {
    border-color: #c4b5fd;
    color: #7a12d4;
  }
  .filter-tab.active {
    background: #7a12d4;
    border-color: #7a12d4;
    color: white;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
  }
  .testimonial-card:hover {
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
  }
  .testimonial-quote {
    font-size: 18px;
    font-family: Grotesk-Medium, sans-serif;
    color: #0f131a;
    margin-bottom: 16px;
    line-height: 1.6;
  }
  .testimonial-quote::before {
    content: '"';
    font-size: 48px;
    color: #c4b5fd;
    line-height: 0;
    display: block;
    margin-bottom: 8px;
  }
  .testimonial-details {
    font-size: 15px;
    color: #71767f;
    margin-bottom: 24px;
    line-height: 1.7;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
  }
  .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e5e7eb;
    overflow: hidden;
    flex-shrink: 0;
  }
  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .testimonial-info {
    flex: 1;
  }
  .testimonial-name {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #0f131a;
  }
  .testimonial-title {
    font-size: 14px;
    color: #71767f;
    margin-top: 2px;
  }
  .testimonial-product {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
  }
  .product-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-family: Grotesk-Medium, sans-serif;
    color: #4b5563;
  }
  .verified-badge {
    color: #10b981;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: Grotesk-Medium, sans-serif;
  }

  @media (max-width: 768px) {
    .filter-tabs {
      top: 56px;
    }
    .tabs-inner {
      gap: 8px;
    }
    .filter-tab {
      padding: 8px 16px;
      font-size: 13px;
    }
  }
.value-stack {
    background: linear-gradient(135deg, #0f131a 0%, #1e1b4b 100%);
    padding: 80px 0;
    color: white;
  }
  .value-stack .mv-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 768px) {
    .value-stack .mv-container {
      grid-template-columns: 1fr;
    }
  }
  .value-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
  }
  .value-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .value-list li:last-child {
    border-bottom: none;
  }
  .value-check {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
  }
  .value-list strong {
    color: #c4b5fd;
  }
  .value-total {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
  }
  .value-total-label {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 8px;
  }
  .value-total-price {
    font-family: Grotesk-Bold, sans-serif;
    font-size: 48px;
  }
  .value-total-note {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
  }
  .value-cta {
    margin-top: 24px;
    width: 100%;
    padding: 16px;
    background: #7a12d4;
    color: white;
    border: none;
    border-radius: 999px;
    font-family: Grotesk-Bold, sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    text-align: center;
    text-decoration: none;
  }
  .value-cta:hover {
    background: #6a0dad;
    transform: translateY(-2px);
  }
  .value-cta:active {
    transform: translateY(0);
  }

/* CSS from snippet stylesheet tags */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }