/** Shopify CDN: Minification failed

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

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection (INDEX:4, SCOPED:FALSE) */
.snappi-collection-section {
    padding: 60px 20px 100px; /* Added 100px bottom padding */
    max-width: 1200px;
    margin: 0 auto;
  }

  .snappi-collection-title {
    font-family: var(--font-heading-family);
    font-size: 3rem;
    color: #1e3a8a; /* Snappi Blue */
    margin-bottom: 40px;
    text-align: left;
  }

  .snappi-collection-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  @media (min-width: 768px) {
    .snappi-collection-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .snappi-collection-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .snappi-product-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  
  .snappi-product-card:hover {
    transform: translateY(-5px);
  }

  .snappi-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .snappi-card-image, 
  .snappi-card-video,
  .snappi-card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Ensure wrapper is ready for absolute positioning children */
  .snappi-card-image-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  /* External video (iframe) handling */
  .snappi-card-video iframe {
     width: 100%;
     height: 100%;
     border: 0;
     pointer-events: none;
  }

  .snappi-product-card:hover .snappi-card-image,
  .snappi-product-card:hover .snappi-card-video {
    transform: scale(1.05);
  }

  .snappi-card-info {
    padding: 10px 5px;
  }

  .snappi-card-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14.3px !important;
    font-weight: 500 !important;
    color: rgb(38, 53, 116) !important;
    letter-spacing: 0.66px !important;
    line-height: 18.2px !important;
    display: block !important;
    text-align: center !important;
    width: 100%;
    margin: 0 auto !important;
    text-transform: none !important;
    text-decoration: none !important;
  }

  .snappi-card-arrow {
    transition: transform 0.3s ease;
    font-weight: 400;
    font-size: 1rem;
    display: inline-block;
    margin-left: 8px;
  }

  .snappi-product-card:hover .snappi-card-arrow {
    transform: translateX(5px);
  }
  
  .pagination {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; /* Fix vertical alignment */
    gap: 12px;
  }
  
  .pagination span {
    display: block;
    line-height: 1;
  }

  .pagination a, 
  .pagination .page.current {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px; /* Fixed height */
    padding: 0 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px; /* Perfectly round pills */
    text-decoration: none;
    color: #1c305e;
    font-family: var(--font-body-family);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 44px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
  }

  .pagination a:hover {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
  }

  .pagination .page.current {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
    cursor: default;
    box-shadow: none;
  }
  
  /* Specific style for Prev/Next to ensure they look good if text is longer */
  .pagination .prev, .pagination .next {
    padding: 0 24px;
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5, SCOPED:FALSE) */
.snappi-collection-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .snappi-collection-title {
    font-family: var(--font-heading-family);
    font-size: 3rem;
    color: #1e3a8a; /* Snappi Blue */
    margin-bottom: 40px;
    text-align: left;
  }

  .snappi-collection-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  @media (min-width: 768px) {
    .snappi-collection-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .snappi-collection-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
  }

  .snappi-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
  }
  
  .snappi-product-card:hover {
    transform: translateY(-5px);
  }

  .snappi-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF; /* Pure White */
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }

  .snappi-card-image-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    background-color: #f0f0f0;
    position: relative;
    margin: 0; /* Ensure no margin */
    /* border-radius removed to fit parent */
  }

  .snappi-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
  }

  .snappi-product-card:hover .snappi-card-image {
    transform: scale(1.05);
  }

  .snappi-card-info {
    padding: 16px 20px; /* Reduced vertical padding */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    background-color: #FFFFFF;
    position: relative;
    z-index: 2;
    width: 100%; /* Ensure width fill */
    box-sizing: border-box; /* Include padding in width */
  }

  .snappi-card-title {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14.3px !important;
    font-weight: 500 !important;
    color: rgb(38, 53, 116) !important;
    letter-spacing: 0.66px !important;
    line-height: 18.2px !important;
    display: block !important;
    text-align: center !important;
    width: 100%;
    margin: 0 auto !important;
    text-transform: none !important;
    text-decoration: none !important;
  }

  .snappi-card-arrow {
    transition: transform 0.3s ease;
    font-weight: 400;
    font-size: 1rem;
    display: inline-block;
    margin-left: 8px; /* Add space since gap is gone */
  }

  .snappi-product-card:hover .snappi-card-arrow {
    transform: translateX(5px);
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:6, SCOPED:FALSE) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:hello-world (INDEX:9, SCOPED:FALSE) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:main-product (INDEX:10, SCOPED:FALSE) */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Manrope:wght@400;600&display=swap');

  .snappi-product-section { 
    padding: 80px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
    font-family: var(--font-body-family); 
    color: #1c305e; 
  }
  
  .snappi-grid { 
    display: grid; 
    grid-template-columns: 1fr; 
    gap: 40px; 
    align-items: start;
  }
  
  @media (min-width: 900px) {
    .snappi-grid { 
      grid-template-columns: 0.8fr 1.2fr; 
      gap: 80px; 
      align-items: center;
    }
  }

  .snappi-media { 
    border-radius: 20px; 
    overflow: hidden; 
    background: #f4f4f4; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  /* Force Vertical Aspect Ratio */
  .video-wrapper, .media-wrapper, .image-wrapper { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 9/16; 
  }
  
  .video-wrapper iframe { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
  }
  
  /* Make native video fill the container */
  .snappi-native-video { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    cursor: pointer;
  }

  /* Style for external videos (YouTube/Vimeo) */
  .snappi-external-video {
    width: 100%; 
    height: 100%; 
    display: block;
  }
  
  .snappi-product-image { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
  }
  
  .snappi-info {
    max-width: 600px;
  }

  .snappi-label { 
    font-size: 0.75rem; 
    letter-spacing: 0.2em; 
    text-transform: uppercase; 
    color: #666; 
    display: block; 
    margin-bottom: 16px; 
    font-weight: 600;
  }

  .snappi-title { 
    font-family: 'Poppins', sans-serif !important;
    font-size: 28px !important; 
    font-weight: 500 !important;
    color: rgb(38, 53, 116) !important;
    letter-spacing: 0.66px !important;
    line-height: 1.2 !important;
    margin-bottom: 24px; 
    text-transform: none !important;
  }
  
  .snappi-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 40px;
  }
  
  .snappi-actions {
    margin-top: 30px;
  }
  
  .snappi-btn { 
    display: inline-block; 
    width: 100%; 
    padding: 18px 32px; 
    text-align: center; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 1rem;
    cursor: pointer; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .snappi-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
  }

  .snappi-btn--subscribe { 
    background: #1e3a8a; 
    color: white; 
  }
  
  .snappi-btn--download { 
    background: #22c55e; 
    color: white; 
  }
  
  .snappi-subtext { 
    text-align: center; 
    font-size: 0.9rem; 
    color: #888; 
    margin-top: 16px; 
  }
  
  @media (min-width: 768px) {
     .snappi-title { font-size: 3.5rem; }
  }
/* END_SECTION:main-product */

/* START_SECTION:search (INDEX:14, SCOPED:FALSE) */
.snappi-search-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
  }

  .snappi-search-header {
      text-align: center;
      margin-bottom: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
  }

  .snappi-search-title {
    font-family: var(--font-heading-family);
    font-size: 3rem;
    color: #1e3a8a;
    margin: 0;
  }

  .snappi-search-bar-wrapper {
      width: 100%;
      max-width: 600px;
  }

  /* Reusing Search Styles from Hero but adapted */
  .search-container {
      position: relative;
      width: 100%;
  }

  .search-input {
      width: 100%;
      padding: 1rem 1.5rem;
      padding-right: 3.5rem;
      border-radius: 30px;
      border: 1px solid #ddd;
      font-size: 1rem;
      background-color: white;
      min-height: 50px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      font-family: var(--font-body-family);
      color: #333;
  }

  .search-input:focus {
      outline: 2px solid #1e3a8a;
      border-color: transparent;
  }

  .search-button {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: #1e3a8a;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* Grid Styles (Copied from Collection) */
  .snappi-collection-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    width: 100%;
  }

  .snappi-no-results {
      grid-column: 1 / -1;
      text-align: center;
      font-size: 1.2rem;
      color: #666;
      padding: 40px;
  }

  @media (min-width: 768px) {
    .snappi-collection-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .snappi-collection-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .snappi-product-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
  }
  
  .snappi-product-card:hover {
    transform: translateY(-5px);
  }

  .snappi-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .snappi-card-image, 
  .snappi-card-video,
  .snappi-card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .snappi-card-image-wrapper {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .snappi-card-video iframe {
     width: 100%;
     height: 100%;
     border: 0;
     pointer-events: none;
  }

  .snappi-product-card:hover .snappi-card-image,
  .snappi-product-card:hover .snappi-card-video {
    transform: scale(1.05);
  }

  .snappi-card-info {
    padding: 10px 5px;
  }

  .snappi-card-title {
    font-family: var(--font-body-family);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c305e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  .snappi-card-arrow {
    transition: transform 0.3s ease;
    font-weight: 400;
  }

  .snappi-product-card:hover .snappi-card-arrow {
    transform: translateX(5px);
  }
  
  .pagination {
    margin-top: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
  
  .pagination span {
    display: block;
    line-height: 1;
  }

  .pagination a, 
  .pagination .page.current {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    text-decoration: none;
    color: #1c305e;
    font-family: var(--font-body-family);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 44px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-sizing: border-box;
  }

  .pagination a:hover {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
  }

  .pagination .page.current {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
    cursor: default;
    box-shadow: none;
  }
  
  .pagination .prev, .pagination .next {
    padding: 0 24px;
  }
/* END_SECTION:search */

/* START_SECTION:snappi-checkout-agency (INDEX:16, SCOPED:FALSE) */
/* ==============================
     Agency Checkout — Reuses base styles
     from snappi-checkout + overrides
     ============================== */
  .snappi-checkout-section {
    padding: 80px 20px 100px;
    background-color: #e4e0d8;
    min-height: 100vh;
  }

  .snappi-checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  @media (min-width: 768px) {
    .snappi-checkout-container {
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
    }
  }

  .snappi-checkout-headline h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .snappi-checkout-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .snappi-checkout-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .snappi-checkout-form-header {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    margin-bottom: 28px;
    text-align: center;
  }

  .snappi-form-group {
    margin-bottom: 20px;
  }

  .snappi-form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgb(38, 53, 116);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }

  .snappi-form-group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0dcd6;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background-color: #faf9f7;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .snappi-form-group input::placeholder {
    color: #b0aaa0;
  }

  .snappi-form-group input:focus {
    border-color: rgb(38, 53, 116);
    box-shadow: 0 0 0 3px rgba(38, 53, 116, 0.1);
    background-color: #fff;
  }

  .snappi-checkout-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: rgb(38, 53, 116);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.3px;
  }

  .snappi-checkout-btn:hover {
    background: rgb(30, 42, 95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 53, 116, 0.3);
  }

  /* ==============================
     Summary Card — Agency
     ============================== */
  .snappi-checkout-summary-col {
    position: sticky;
    top: 100px;
  }

  .snappi-checkout-summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid rgb(38, 53, 116);
  }

  .snappi-summary-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(38, 53, 116);
    margin-bottom: 24px;
  }

  .snappi-summary-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 24px 0;
  }

  .snappi-agency-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .snappi-agency-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
  }

  .snappi-agency-check {
    color: rgb(38, 53, 116);
    font-weight: 700;
    font-size: 1.1rem;
  }

  .snappi-agency-feature-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #999;
    padding-left: 32px;
    margin-top: -8px;
  }

  .snappi-agency-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 8px;
  }

  .snappi-agency-total-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #888;
  }

  .snappi-agency-total-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
  }

  .snappi-agency-period {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
  }

  .snappi-summary-flower {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .snappi-summary-flower .snappi-flower-icon {
    width: 50px;
    height: 50px;
    opacity: 0.6;
  }

  @media (max-width: 767px) {
    .snappi-checkout-headline h1 {
      font-size: 1.8rem;
    }

    .snappi-checkout-form-card {
      padding: 30px 24px;
    }

    .snappi-checkout-summary-col {
      position: static;
    }
  }
/* END_SECTION:snappi-checkout-agency */

/* START_SECTION:snappi-checkout (INDEX:17, SCOPED:FALSE) */
/* ==============================
     Snappi Checkout — Base
     ============================== */
  .snappi-checkout-section {
    padding: 80px 20px 100px;
    background-color: #e4e0d8;
    min-height: 100vh;
  }

  .snappi-checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }

  @media (min-width: 768px) {
    .snappi-checkout-container {
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
    }
  }

  /* ==============================
     Left Column — Form
     ============================== */
  .snappi-checkout-headline h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .snappi-checkout-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .snappi-checkout-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .snappi-checkout-form-header {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    margin-bottom: 28px;
    text-align: center;
  }

  .snappi-form-group {
    margin-bottom: 20px;
  }

  .snappi-form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgb(38, 53, 116);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
  }

  .snappi-form-group input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e0dcd6;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background-color: #faf9f7;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .snappi-form-group input::placeholder {
    color: #b0aaa0;
  }

  .snappi-form-group input:focus {
    border-color: rgb(38, 53, 116);
    box-shadow: 0 0 0 3px rgba(38, 53, 116, 0.1);
    background-color: #fff;
  }

  .snappi-checkout-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: rgb(38, 53, 116);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 8px;
    letter-spacing: 0.3px;
  }

  .snappi-checkout-btn:hover {
    background: rgb(30, 42, 95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 53, 116, 0.3);
  }

  .snappi-checkout-microcopy {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #999;
    margin-top: 16px;
    letter-spacing: 0.3px;
  }

  /* ==============================
     Right Column — Order Summary
     ============================== */
  .snappi-checkout-summary-col {
    position: sticky;
    top: 100px;
  }

  .snappi-checkout-summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid rgb(38, 53, 116);
  }

  .snappi-summary-badge {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgb(38, 53, 116);
    margin-bottom: 24px;
  }

  .snappi-summary-commitment,
  .snappi-summary-plan {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
  }

  .snappi-summary-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #888;
  }

  .snappi-summary-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
  }

  .snappi-summary-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
  }

  .snappi-summary-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 24px 0;
  }

  .snappi-summary-next h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    margin-bottom: 20px;
  }

  .snappi-next-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .snappi-next-step {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .snappi-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(38, 53, 116, 0.08);
    color: rgb(38, 53, 116);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .snappi-step-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
  }

  .snappi-summary-flower {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .snappi-summary-flower .snappi-flower-icon {
    width: 50px;
    height: 50px;
    opacity: 0.6;
  }

  /* ==============================
     Mobile Adjustments
     ============================== */
  @media (max-width: 767px) {
    .snappi-checkout-headline h1 {
      font-size: 1.8rem;
    }

    .snappi-checkout-form-card {
      padding: 30px 24px;
    }

    .snappi-checkout-summary-col {
      position: static;
    }
  }
/* END_SECTION:snappi-checkout */

/* START_SECTION:snappi-creator-benefits (INDEX:18, SCOPED:FALSE) */
.sc-benefits-section {
    background-color: #e4e0d8;
    padding: 80px 20px;
  }

  .sc-benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .sc-benefits-header {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 50px;
  }

  .sc-benefits-highlight {
    color: rgb(38, 53, 116);
  }

  .sc-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 768px) {
    .sc-benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .sc-benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 30px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    border-top: 4px solid rgb(38, 53, 116);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sc-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .sc-benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .sc-benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    margin-bottom: 12px;
  }

  .sc-benefit-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
  }

  @media (max-width: 767px) {
    .sc-benefits-header {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:snappi-creator-benefits */

/* START_SECTION:snappi-creator-faq (INDEX:19, SCOPED:FALSE) */
.sc-faq-section {
    background-color: #e4e0d8;
    padding: 80px 20px;
  }

  .sc-faq-container {
    max-width: 700px;
    margin: 0 auto;
  }

  .sc-faq-header {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    text-align: center;
    margin-bottom: 40px;
  }

  .sc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sc-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  }

  .sc-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    text-align: left;
    transition: background 0.2s ease;
  }

  .sc-faq-question:hover {
    background: rgba(38, 53, 116, 0.03);
  }

  .sc-faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
  }

  .sc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }

  .sc-faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    padding: 0 24px 20px;
  }

  /* Open state */
  .sc-faq-open .sc-faq-icon {
    transform: rotate(45deg);
  }

  .sc-faq-open .sc-faq-answer {
    max-height: 200px;
  }
/* END_SECTION:snappi-creator-faq */

/* START_SECTION:snappi-creator-footer-cta (INDEX:20, SCOPED:FALSE) */
.sc-footer-cta-section {
    background-color: #e4e0d8;
    padding: 80px 20px 120px;
    text-align: center;
  }

  .sc-footer-cta-container {
    max-width: 650px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .sc-footer-flower {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 24px;
    opacity: 0.7;
  }

  .sc-footer-cta-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .sc-footer-cta-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 32px;
  }

  .sc-btn--primary {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 14px;
    padding: 16px 36px;
    background: rgb(38, 53, 116);
    color: #fff;
    transition: all 0.3s ease;
  }

  .sc-btn--primary:hover {
    background: rgb(30, 42, 95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 53, 116, 0.3);
  }

  .sc-btn--large {
    padding: 18px 44px;
    font-size: 1.1rem;
  }

  @media (max-width: 767px) {
    .sc-footer-cta-container {
      padding: 40px 24px;
    }

    .sc-footer-cta-headline {
      font-size: 1.4rem;
    }
  }
/* END_SECTION:snappi-creator-footer-cta */

/* START_SECTION:snappi-creator-hero (INDEX:21, SCOPED:FALSE) */
.sc-hero-section {
    background-color: #e4e0d8;
    padding: 120px 20px 80px;
    text-align: center;
  }

  .sc-hero-container {
    max-width: 750px;
    margin: 0 auto;
  }

  .sc-hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .sc-hero-subheadline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .sc-btn {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 14px;
    padding: 16px 36px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }

  .sc-btn--primary {
    background: rgb(38, 53, 116);
    color: #fff;
  }

  .sc-btn--primary:hover {
    background: rgb(30, 42, 95);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 53, 116, 0.3);
  }

  .sc-hero-microcopy {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin-top: 16px;
  }

  @media (max-width: 767px) {
    .sc-hero-headline {
      font-size: 2rem;
    }

    .sc-hero-section {
      padding: 80px 20px 60px;
    }
  }
/* END_SECTION:snappi-creator-hero */

/* START_SECTION:snappi-creator-personas (INDEX:22, SCOPED:FALSE) */
.sc-personas-section {
    background-color: #e4e0d8;
    padding: 80px 20px;
  }

  .sc-personas-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .sc-personas-header {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    margin-bottom: 50px;
  }

  .sc-personas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 768px) {
    .sc-personas-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .sc-persona-card {
    background: #fff;
    border-radius: 20px;
    padding: 44px 28px 36px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .sc-persona-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .sc-persona-emoji {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .sc-persona-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    margin-bottom: 12px;
  }

  .sc-persona-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
  }
/* END_SECTION:snappi-creator-personas */

/* START_SECTION:snappi-creator-problem (INDEX:23, SCOPED:FALSE) */
.sc-problem-section {
    background-color: #e4e0d8;
    padding: 80px 20px;
  }

  .sc-problem-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  .sc-problem-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 28px;
  }

  .sc-problem-highlight {
    color: rgb(38, 53, 116);
  }

  .sc-problem-body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
  }

  @media (max-width: 767px) {
    .sc-problem-container {
      padding: 40px 24px;
    }

    .sc-problem-headline {
      font-size: 1.5rem;
    }
  }
/* END_SECTION:snappi-creator-problem */

/* START_SECTION:snappi-creator-steps (INDEX:24, SCOPED:FALSE) */
.sc-steps-section {
    background-color: #e4e0d8;
    padding: 80px 20px;
  }

  .sc-steps-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }

  .sc-steps-header {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(38, 53, 116);
    margin-bottom: 12px;
  }

  .sc-steps-subheader {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #777;
    margin-bottom: 50px;
  }

  .sc-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  @media (min-width: 768px) {
    .sc-steps-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .sc-step-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 28px 36px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .sc-step-card:hover {
    transform: translateY(-4px);
  }

  .sc-step-number-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(38, 53, 116);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .sc-step-phase {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #999;
    margin-bottom: 12px;
  }

  .sc-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgb(38, 53, 116);
    margin-bottom: 14px;
  }

  .sc-step-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
  }

  .sc-btn--outline {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 12px;
    padding: 12px 28px;
    border: 2px solid rgb(38, 53, 116);
    color: rgb(38, 53, 116);
    background: transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
  }

  .sc-btn--outline:hover {
    background: rgb(38, 53, 116);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 53, 116, 0.25);
  }

  @media (max-width: 767px) {
    .sc-steps-header {
      font-size: 1.6rem;
    }
  }
/* END_SECTION:snappi-creator-steps */

/* START_SECTION:snappi-header (INDEX:27, SCOPED:FALSE) */
.snappi-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent; /* Or white/blur depending on scroll behavior */
    padding: 20px 0;
    transition: background 0.3s ease;
  }
  
  /* Add background on scroll or if not on top (requires JS, but keeping simple for now) 
     For now, let's make it sit nicely on top of content.
  */

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px; /* Wider container */
    margin: 0 auto;
    padding: 0 40px;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 40px; /* Space between logo and nav */
  }

  .header-logo svg, .header-logo-image {
    display: block;
    width: auto;
    height: 48px; /* Fixed height for consistency */
    object-fit: contain;
  }

  .header-nav {
    display: flex;
    gap: 30px;
  }

  .nav-link {
    font-family: var(--font-body-family);
    font-size: 1rem;
    font-weight: 500;
    color: #1e3a8a; /* Snappi Blue */
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover, .nav-link.active {
    font-weight: 700;
  }
  
  .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1e3a8a;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .icon-link {
    color: #1e3a8a; /* Snappi Blue */
    transition: transform 0.2s ease;
  }

  .icon-link:hover {
    transform: scale(1.1);
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .header-nav {
      display: none; /* Hide nav on mobile for now, or add hamburger menu logic */
    }
  }
/* END_SECTION:snappi-header */

/* START_SECTION:snappi-login (INDEX:29, SCOPED:FALSE) */
.customer-login-section {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background-color: transparent;
  }

  .customer-login-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }

  .login-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: rgb(38, 53, 116);
    margin-bottom: 40px;
    font-weight: 500;
  }

  .login-field {
    margin-bottom: 20px;
  }

  .login-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc; /* Or transparent/white with shadow? Keeping simple for now */
    border-radius: 25px; /* Pill shape */
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgb(38, 53, 116);
    background-color: white;
    box-sizing: border-box;
    outline: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }

  .login-input::placeholder {
    color: #999;
  }

  .login-input:focus {
    border-color: rgb(38, 53, 116);
    box-shadow: 0 0 0 2px rgba(38, 53, 116, 0.2);
  }

  .login-forgot {
    text-align: left;
    margin-bottom: 30px;
    padding-left: 10px;
  }

  .login-forgot a, .login-create a {
    color: #666;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
  }

  .login-submit {
    margin-bottom: 20px;
  }

  /* Reuse the button style but ensure centered */
  .snappi-btn {
    width: auto;
    min-width: 150px;
    background-color: rgb(38, 53, 116);
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-radius: 8px; /* Slightly less rounded than inputs */
    cursor: pointer;
  }

  .login-create {
    margin-top: 20px;
  }
/* END_SECTION:snappi-login */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:32, SCOPED:FALSE) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:33, SCOPED:FALSE) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:35, SCOPED:FALSE) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */