/** Shopify CDN: Minification failed

Line 48:2 All "@import" rules must come first
Line 704:2 All "@import" rules must come first
Line 1331:2 All "@import" rules must come first
Line 1654:2 All "@import" rules must come first
Line 1979:2 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
.canvas-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }

  #gl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-property: opacity;
    transition-duration: 0.25s;
    transition-delay: 75ms;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
    mix-blend-mode: screen;
  }

  .canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
    transition: background-color 0.1s ease-out;
  }
/* Load Inter font */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  .seedlabs-cart {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .seedlabs-cart__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 40px;
    align-items: start;
  }

  /* Cart Items Section */
  .seedlabs-cart__items {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .seedlabs-cart__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: white;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .seedlabs-cart__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 32px 0;
  }

  .seedlabs-cart__items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .seedlabs-cart__item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.3s ease;
  }

  .seedlabs-cart__item:last-child {
    border-bottom: none;
  }

  .seedlabs-cart__item.removing {
    opacity: 0;
    pointer-events: none;
  }

  /* Product Image */
  .seedlabs-cart__item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seedlabs-cart__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .seedlabs-cart__item-no-image {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
  }

  /* Product Details */
  .seedlabs-cart__item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
  }

  .seedlabs-cart__item-title {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    border-bottom: none !important;
    transition: opacity 0.2s ease;
  }

  .seedlabs-cart__item-title:hover {
    opacity: 0.8;
  }

  .seedlabs-cart__item-variant {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
  }

  .seedlabs-cart__item-price {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  .seedlabs-cart__item-compare-price {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
  }

  /* Quantity Controls and Actions */
  .seedlabs-cart__item-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }

  .seedlabs-cart__item-quantity {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .seedlabs-cart__label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .seedlabs-cart__quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
  }

  .seedlabs-cart__quantity-button {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.25rem;
    font-weight: 300;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seedlabs-cart__quantity-button:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
  }

  .seedlabs-cart__quantity-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .seedlabs-cart__quantity-input {
    width: 50px;
    height: 36px;
    border: none;
    background: transparent;
    color: white;
    text-align: center;
    font-size: 1rem;
    font-family: inherit;
    -moz-appearance: textfield;
  }

  .seedlabs-cart__quantity-input::-webkit-inner-spin-button,
  .seedlabs-cart__quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  .seedlabs-cart__quantity-input:focus {
    outline: none;
  }

  .seedlabs-cart__item-line-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }

  .seedlabs-cart__line-price-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
  }

  .seedlabs-cart__item-remove {
    background: transparent;
    border: none;
    color: #ff7b7b;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s ease;
    text-decoration: none;
  }

  .seedlabs-cart__item-remove:hover {
    color: #ff9999;
  }

  .seedlabs-cart__item-remove--mobile {
    display: none;
  }

  /* Order Summary */
  .seedlabs-cart__summary {
    position: sticky;
    top: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .seedlabs-cart__summary-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin: 0 0 24px 0;
  }

  .seedlabs-cart__summary-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .seedlabs-cart__summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }

  .seedlabs-cart__summary-row--total {
    margin-top: 16px;
  }

  .seedlabs-cart__summary-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .seedlabs-cart__summary-row--total .seedlabs-cart__summary-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
  }

  .seedlabs-cart__summary-value {
    font-size: 1rem;
    color: white;
    font-weight: 500;
  }

  .seedlabs-cart__summary-row--total .seedlabs-cart__summary-value {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .seedlabs-cart__checkout-button {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 16px;
  }

  .seedlabs-cart__checkout-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .seedlabs-cart__checkout-button:active,
  .seedlabs-cart__checkout-button:focus {
    border-radius: 9999px;
    outline: none;
  }

  .seedlabs-cart__continue-shopping {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-decoration: none;
    border-bottom: none !important;
    transition: color 0.2s ease;
  }

  .seedlabs-cart__continue-shopping:hover {
    color: white;
  }

  /* Empty Cart State */
  .seedlabs-cart__empty {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
  }

  .seedlabs-cart__empty-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 64px 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 500px;
  }

  .seedlabs-cart__empty-title {
    font-size: 2rem;
    font-weight: 300;
    color: white;
    margin: 0 0 32px 0;
  }

  .seedlabs-cart__empty-button {
    display: inline-block;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: none !important;
    transition: all 0.3s ease;
  }

  .seedlabs-cart__empty-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .seedlabs-cart__empty-button:active,
  .seedlabs-cart__empty-button:focus {
    border-radius: 9999px;
    outline: none;
  }

  /* Loading Overlay */
  .seedlabs-cart__loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
  }

  .seedlabs-cart__loading.active {
    display: flex;
  }

  .seedlabs-cart__loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
  }

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

  /* Responsive Design */
  @media (max-width: 1023px) {
    .seedlabs-cart__container {
      grid-template-columns: 60fr 40fr;
      gap: 32px;
    }

    .seedlabs-cart__items,
    .seedlabs-cart__summary {
      padding: 36px;
    }

    .seedlabs-cart__item-image {
      width: 100px;
      height: 100px;
    }

    .seedlabs-cart__item {
      grid-template-columns: 100px 1fr auto;
      gap: 20px;
    }
  }

  @media (max-width: 767px) {
    .seedlabs-cart {
      padding: 100px 16px 60px;
    }

    .seedlabs-cart__container {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .seedlabs-cart__items,
    .seedlabs-cart__summary {
      padding: 28px;
    }

    .seedlabs-cart__summary {
      position: static;
    }

    .seedlabs-cart__item {
      grid-template-columns: 80px 1fr;
      gap: 16px;
    }

    .seedlabs-cart__item-image {
      width: 80px;
      height: 80px;
    }

    .seedlabs-cart__item-actions {
      grid-column: 1 / -1;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .seedlabs-cart__item-line-price {
      align-items: flex-start;
    }

    .seedlabs-cart__item-remove--desktop {
      display: none;
    }

    .seedlabs-cart__item-remove--mobile {
      display: inline-block;
    }

    .seedlabs-cart__title {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .seedlabs-cart__empty-card {
      padding: 48px 32px;
    }
  }
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
.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;
  }
/* Footer Base Styles */
  .footer {
    position: relative;
    width: 100%;
    background: rgba(16, 16, 16, 0.7);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Spline Sans Mono', monospace;
    z-index: 100;
    margin-top: auto;
    grid-column: 1 / -1;
  }

  .footer__container {
    width: 100%;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

  /* Left Column - Editable Copy */
  .footer__copy {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.6;
  }

  .footer__copy p {
    margin: 0;
  }

  /* Right Column - Copyright */
  .footer__copyright {
    text-align: right;
    white-space: nowrap;
  }

  .footer__copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
  }

  /* Link Styles Override */
  .footer a {
    color: white !important;
    border-bottom: none !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .footer a:hover {
    opacity: 0.7;
    color: white !important;
    border-bottom: none !important;
  }

  .footer a:visited {
    color: white !important;
  }

  .footer a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.3) !important;
    outline-offset: 3px;
  }

  .footer a:active {
    color: white !important;
    transform: none !important;
  }

  /* Responsive Design - Tablet */
  @media (max-width: 1023px) {
    .footer__container {
      padding: 32px 40px;
      gap: 40px;
    }
  }

  /* Responsive Design - Mobile */
  @media (max-width: 767px) {
    .footer__container {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 32px 20px;
      text-align: center;
    }

    .footer__copyright {
      text-align: center;
    }
  }
/* Load Inter and Spline Sans Mono fonts */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Spline+Sans+Mono:wght@300;400;500;600;700&display=swap');

  /* Header Foundation */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(16, 16, 16, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    height: 60px;
    position: relative;
  }

  /* Logo - Centered (Desktop) */
  .header__logo--desktop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  /* Logo - Left (Mobile) */
  .header__logo--mobile {
    display: none;
    z-index: 2;
  }

  .header__logo-link {
    display: block;
    text-decoration: none;
    color: white;
  }

  .header__logo-image {
    max-height: 40px;
    width: auto;
  }

  .header__logo-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
  }

  /* Cart - Right Side */
  .header__cart {
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .header__cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: opacity 0.15s ease;
    position: relative;
  }

  .header__cart-link:hover {
    opacity: 0.8;
  }

  .header__cart-text {
    font-size: 14px;
    font-weight: 500;
  }

  .header__cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff7b7b;
    color: white;
    font-size: 12px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* Desktop Navigation - Left Side */
  .header__nav {
    display: flex;
    align-items: center;
    z-index: 1;
  }

  .header__nav-list {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    transition: opacity 0.15s ease;
    position: relative;
  }

  .header__nav-link:hover {
    opacity: 0.8;
  }

  /* Mobile Menu Toggle */
  .header__mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 3;
  }

  .header__hamburger {
    width: 20px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
  }

  /* Mobile Menu Drawer */
  .header__mobile-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 60px);
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .header__mobile-menu.active {
    right: 0;
  }

  .header__mobile-menu-content {
    padding: 40px 20px;
  }

  .header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .header__mobile-nav-item {
    margin-bottom: 24px;
  }

  .header__mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 12px 0;
    transition: opacity 0.2s ease;
  }

  .header__mobile-nav-link:hover {
    opacity: 0.8;
  }

  /* Responsive Breakpoints */
  @media (max-width: 1023px) {
    .header__nav {
      display: none;
    }

    .header__mobile-toggle {
      display: flex;
    }
  }

  /* Tablet: Keep desktop layout but smaller */
  @media (max-width: 1023px) and (min-width: 768px) {
    .header__container {
      height: 55px;
    }

    .header__logo-text {
      font-size: 22px;
    }
  }

  /* Mobile: Different layout */
  @media (max-width: 767px) {
    .header__container {
      padding: 0 16px;
      height: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    /* Hide desktop logo, show mobile logo on left */
    .header__logo--desktop {
      display: none;
    }

    .header__logo--mobile {
      display: block;
      position: static;
      transform: none;
      flex: 0 0 auto;
    }

    .header__logo-text {
      font-size: 18px;
    }

    /* Create a flex container for cart and hamburger on the right */
    .header__container {
      position: relative;
    }

    .header__cart {
      position: absolute;
      right: 60px; /* Position cart to the left of hamburger */
      top: 50%;
      transform: translateY(-50%);
    }

    .header__cart-text {
      font-size: 14px;
    }

    .header__mobile-toggle {
      position: absolute;
      right: 16px; /* Position hamburger on far right */
      top: 50%;
      transform: translateY(-50%);
    }

    .header__mobile-menu {
      top: 50px;
      height: calc(100vh - 50px);
    }
  }

  /* Hamburger Animation */
  .header__mobile-toggle.active .header__hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
  }

  .header__mobile-toggle.active .header__hamburger:nth-child(2) {
    opacity: 0;
  }

  .header__mobile-toggle.active .header__hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
  }

  /* Ensure content doesn't hide behind fixed header */
  body {
    padding-top: 60px;
  }

  @media (max-width: 1023px) and (min-width: 768px) {
    body {
      padding-top: 55px;
    }
  }

  @media (max-width: 767px) {
    body {
      padding-top: 50px;
    }
  }

  /* Desktop Submenu Styles */
  .header__submenu {
    position: fixed;
    top: 60px; /* Below header */
    left: 0;
    width: 100%;
    background: rgba(16, 16, 16, 0.9);
    border-top: 2px solid rgba(16, 16, 16, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .header__submenu.active {
    opacity: 1;
    visibility: visible;
  }

  .header__submenu-content {
    display: none;
    padding: 40px 0;
  }

  .header__submenu-content.active {
    display: block;
  }

  .header__submenu-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0;
    width: 100%;
    padding: 0 20px;
  }

  .header__submenu-item {
    grid-column: span 3; /* 4 items per row by default */
    padding: 20px;
    border-radius: 8px;
    transition: background-color 0.15s ease;
  }

  .header__submenu-item--featured {
    grid-column: span 2;
    padding: 0;
    margin-right: 80px; /* Double spacing between featured and controllers */
  }


  .header__submenu-item--products {
    grid-column: span 2;
    padding: 0; /* No padding */
  }

  .header__submenu-item--sensors {
    grid-column: span 2;
    padding: 0; /* No padding */
  }

  .header__submenu-item--labs {
    grid-column: span 2;
    padding: 0; /* No padding */
  }

  .header__submenu-products {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
  }

  .header__submenu-product-list {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .header__submenu-product-item {
    margin: 0;
  }

  .header__submenu-product-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Spline Sans Mono', monospace;
    line-height: 1.0;
    display: block;
    padding: 4px 0;
    transition: color 0.15s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
  }

  .header__submenu-product-link:hover {
    color: rgba(255, 255, 255, 0.8);
  }

  .header__submenu-product-badge {
    display: inline-block;
    background: #ff7b7b;
    color: white;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 4px; /* Closer to text - reduced from 8px to 4px */
    vertical-align: text-top; /* Higher positioning relative to text baseline */
    font-family: 'Inter', sans-serif;
    line-height: 1;
  }

  .header__submenu-soon-badge {
    display: inline-block;
    background: #6C6C6C; /* Gray background */
    color: white;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 8px; /* Space from category title */
    vertical-align: text-top;
    font-family: 'Inter', sans-serif;
    line-height: 1;
  }

  .header__submenu-section-title {
    color: white;
    font-size: 20px;
    font-weight: 300;
    margin: 0;
    text-align: left;
    align-self: flex-start;
  }

  .header__submenu-section-title--empty {
    color: #6C6C6C; /* Grey out the title when no products */
  }

  .header__submenu-square {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: background-color 0.15s ease;
    overflow: hidden;
  }

  /* Featured square - no border radius, no padding, no hover */
  .header__submenu-item--featured .header__submenu-square {
    border-radius: 0;
    background: transparent;
    padding: 0 !important; /* Force no padding for featured square */
  }


  /* Remove padding when image is displayed */
  .header__submenu-square.has-image {
    padding: 0;
  }


  /* Featured Product Image Styling - Full Coverage */
  .header__submenu-featured-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stretch to fill entire square */
    border-radius: 0; /* No border radius - sharp corners */
    transition: opacity 0.3s ease;
    z-index: 1;
  }


  .header__submenu-item:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .header__submenu-item--featured:hover {
    background: none; /* Remove hover effect for featured section */
  }

  .header__submenu-item--products:hover {
    background: none; /* Remove hover effect for products column */
  }

  .header__submenu-item--sensors:hover {
    background: none; /* Remove hover effect for sensors column */
  }

  .header__submenu-item--labs:hover {
    background: none; /* Remove hover effect for labs column */
  }

  /* .header__submenu-item--products:hover {
    background: rgba(0, 255, 0, 0.3); Keep original color on hover - REMOVED
  } */

  /* Featured square - no background color */

  /* Testing colors for custom grid layout */

  .header__submenu-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
  }

  .header__submenu-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
  }

  /* Hide submenu on tablet and mobile */
  @media (max-width: 1023px) {
    .header__submenu {
      display: none;
    }
  }

  /* Adjust body padding for submenu */
  @media (min-width: 1024px) {
    body.submenu-open {
      padding-top: calc(60px + 160px); /* Header + estimated submenu height */
    }
  }
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: transparent;
    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;
  }
/* Load Inter font */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  .seedlabs-product {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .seedlabs-product__container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  /* Product Gallery */
  .seedlabs-product__gallery {
    position: sticky;
    top: 100px;
  }

  .seedlabs-product__main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
  }

  .seedlabs-product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .seedlabs-product__main-image:hover .seedlabs-product__image {
    transform: scale(1.05);
  }

  .seedlabs-product__thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .seedlabs-product__thumbnail {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }

  .seedlabs-product__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .seedlabs-product__thumbnail:hover,
  .seedlabs-product__thumbnail.active {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }

  .seedlabs-product__no-image {
    aspect-ratio: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
  }

  /* Product Details Card */
  .seedlabs-product__details {
    position: relative;
  }

  .seedlabs-product__details-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .seedlabs-product__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: white;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .seedlabs-product__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 0 32px 0;
  }

  /* Quantity and Price Row */
  .seedlabs-product__quantity-price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .seedlabs-product__quantity {
    display: flex;
    flex-direction: column;
  }

  .seedlabs-product__stock-info {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
  }

  .seedlabs-product__price-container {
    display: flex;
    flex-direction: column;
  }

  .seedlabs-product__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: auto;
  }

  .seedlabs-product__price-amount {
    font-size: 2rem;
    font-weight: 600;
    color: white;
  }

  .seedlabs-product__compare-price {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
  }

  .seedlabs-product__description {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
  }

  .seedlabs-product__description p {
    margin: 0 0 16px 0;
  }

  .seedlabs-product__description p:last-child {
    margin-bottom: 0;
  }

  /* Product Form */
  .seedlabs-product__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .seedlabs-product__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .seedlabs-product__select,
  .seedlabs-product__quantity-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
  }

  .seedlabs-product__select:hover,
  .seedlabs-product__quantity-input:hover,
  .seedlabs-product__select:focus,
  .seedlabs-product__quantity-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    outline: none;
  }

  .seedlabs-product__select option {
    background: rgba(16, 16, 16, 0.95);
    color: white;
  }

  .seedlabs-product__quantity-input {
    width: 100%;
  }

  .seedlabs-product__add-to-cart {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }

  .seedlabs-product__add-to-cart:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .seedlabs-product__add-to-cart:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .seedlabs-product__add-to-cart:active,
  .seedlabs-product__add-to-cart:focus {
    border-radius: 9999px;
    outline: none;
  }

  /* Shopify Payment Button */
  .seedlabs-product__form .shopify-payment-button {
    margin-top: 8px;
  }

  .seedlabs-product__form .shopify-payment-button__button {
    border-radius: 9999px !important;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .seedlabs-product__container {
      grid-template-columns: 1fr;
      gap: 60px;
    }

    .seedlabs-product__gallery {
      position: static;
    }

    .seedlabs-product__details-card {
      padding: 36px;
    }
  }

  @media (max-width: 768px) {
    .seedlabs-product {
      padding: 100px 16px 60px;
    }

    .seedlabs-product__details-card {
      padding: 28px;
    }

    .seedlabs-product__title {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .seedlabs-product__quantity-price-row {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .seedlabs-product__price-amount {
      font-size: 1.75rem;
    }

    .seedlabs-product__thumbnails {
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
    }
  }

  @media (max-width: 480px) {
    .seedlabs-product__details-card {
      padding: 24px;
      border-radius: 12px;
    }

    .seedlabs-product__add-to-cart {
      padding: 16px;
      font-size: 1rem;
    }
  }
/* Load Inter font */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

  /* Base Section Styles */
  .seedlabs-products {
    position: relative;
    min-height: 100vh;
    padding: 120px 20px 80px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  .seedlabs-products__container {
    max-width: 1400px;
    margin: 0 auto;
  }

  /* Page Header */
  .seedlabs-products__header {
    text-align: center;
    margin-bottom: 40px;
  }

  .seedlabs-products__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .seedlabs-products__subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }

  .seedlabs-products__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 40px 0 60px;
  }

  /* Category Section */
  .seedlabs-products__category {
    margin-bottom: 80px;
  }

  .seedlabs-products__category:last-child {
    margin-bottom: 0;
  }

  .seedlabs-products__category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .seedlabs-products__category-title {
    font-size: 1.75rem;
    font-weight: 500;
    color: white;
    margin: 0;
  }

  .seedlabs-products__category-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
  }

  /* Product Grid */
  .seedlabs-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 40px;
  }

  /* Product Card */
  .seedlabs-products__card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
  }

  .seedlabs-products__card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }

  .seedlabs-products__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .seedlabs-products__card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
  }

  .seedlabs-products__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .seedlabs-products__card:hover .seedlabs-products__card-image img {
    transform: scale(1.05);
  }

  .seedlabs-products__card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
  }

  .seedlabs-products__badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
  }

  .seedlabs-products__badge--new {
    background: rgba(255, 123, 123, 0.9);
    color: white;
  }

  .seedlabs-products__badge--sale {
    background: rgba(255, 184, 0, 0.9);
    color: rgba(0, 0, 0, 0.9);
  }

  .seedlabs-products__card-content {
    padding: 20px;
  }

  .seedlabs-products__card-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.4;
  }

  .seedlabs-products__card-price {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .seedlabs-products__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
  }

  .seedlabs-products__compare-price {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
  }

  /* Empty State */
  .seedlabs-products__empty {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
  }

  .seedlabs-products__empty p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  /* Link Color Exceptions - Keep product title links white */
  .seedlabs-products__card-link,
  .seedlabs-products__card-title {
    color: white !important;
    border-bottom: none !important;
    text-decoration: none;
  }

  .seedlabs-products__card:hover .seedlabs-products__card-title {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  /* Responsive Design - Tablet (768px-1023px) */
  @media (max-width: 1023px) and (min-width: 768px) {
    .seedlabs-products {
      padding: 100px 20px 60px;
    }

    .seedlabs-products__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .seedlabs-products__title {
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .seedlabs-products__category-title {
      font-size: 1.5rem;
    }

    .seedlabs-products__card-content {
      padding: 16px;
    }

    .seedlabs-products__card-title {
      font-size: 1rem;
    }

    .seedlabs-products__price {
      font-size: 1.125rem;
    }
  }

  /* Responsive Design - Mobile (<768px) */
  @media (max-width: 767px) {
    .seedlabs-products {
      padding: 100px 16px 60px;
    }

    .seedlabs-products__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .seedlabs-products__header {
      margin-bottom: 32px;
    }

    .seedlabs-products__title {
      font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .seedlabs-products__subtitle {
      font-size: 1rem;
    }

    .seedlabs-products__divider {
      margin: 32px 0 40px;
    }

    .seedlabs-products__category {
      margin-bottom: 60px;
    }

    .seedlabs-products__category-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 24px;
    }

    .seedlabs-products__category-title {
      font-size: 1.375rem;
    }

    .seedlabs-products__card-content {
      padding: 12px;
    }

    .seedlabs-products__card-title {
      font-size: 0.9375rem;
      margin-bottom: 8px;
    }

    .seedlabs-products__price {
      font-size: 1rem;
    }

    .seedlabs-products__compare-price {
      font-size: 0.8125rem;
    }

    .seedlabs-products__badge {
      font-size: 0.6875rem;
      padding: 3px 8px;
    }

    .seedlabs-products__card-badges {
      top: 8px;
      right: 8px;
      gap: 6px;
    }
  }
.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;
  }
/* Load AEONIK and Inter fonts */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

  .seedlabs-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    font-family: 'AEONIK', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }

  /* Liquid Glass Three-Layer Architecture */
  .seedlabs-hero__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
      rgba(131, 126, 213, 0.3) 0%,    /* --seedlabs-cosmic-lavender */
      rgba(107, 102, 204, 0.25) 25%,  /* --seedlabs-nebula-purple */
      rgba(90, 85, 184, 0.2) 50%,     /* --seedlabs-stellar-violet */
      rgba(74, 69, 158, 0.15) 75%,    /* --seedlabs-galaxy-indigo */
      rgba(74, 74, 74, 0.1) 100%      /* --seedlabs-void-charcoal */
    );
    backdrop-filter: blur(20px) saturate(180%) brightness(110%);
    z-index: -2;
  }

  .seedlabs-hero__inner-luminosity {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0.05) 40%,
      transparent 80%
    );
    border-radius: 50%;
    z-index: -1;
  }

  .seedlabs-hero__content {
    position: relative;
    z-index: 1;
    width: 50%;
    text-align: left;
    margin-left: 10%;
    padding: 0 40px 0 0;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .seedlabs-hero__title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    margin: 0 0 3rem 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 100%;
  }

  .seedlabs-hero__divider {
    width: 60%;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 0 3rem 0;
    border-radius: 1px;
    mix-blend-mode: overlay;
  }

  .seedlabs-hero__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 500;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
  }

  .seedlabs-hero__cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: white;
  }

  .seedlabs-hero__cta-button:active,
  .seedlabs-hero__cta-button:focus {
    border-radius: 9999px;
    outline: none;
  }

  .seedlabs-hero__cta-button svg {
    transition: transform 0.3s ease;
  }

  .seedlabs-hero__cta-button:hover svg {
    transform: translateX(4px);
  }

  /* Scroll to Top Button */
  .seedlabs-hero__scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seedlabs-hero__scroll-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .seedlabs-hero__scroll-top svg {
    transition: transform 0.2s ease;
  }

  .seedlabs-hero__scroll-top:hover svg {
    transform: translateY(-2px);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .seedlabs-hero__content {
      width: 60%;
      margin-left: 8%;
      padding: 0 30px 0 0;
    }
  }

  @media (max-width: 768px) {
    .seedlabs-hero {
      height: 80vh;
      padding-top: 80px; /* Account for fixed header */
    }

    .seedlabs-hero__content {
      width: 90%;
      margin-left: 5%;
      padding: 0 20px 0 0;
      text-align: left;
    }

    .seedlabs-hero__title {
      font-size: clamp(2rem, 8vw, 3.5rem);
      margin-bottom: 2.5rem;
    }

    .seedlabs-hero__divider {
      width: 60%;
      margin: 0 0 2.5rem 0; /* Left align divider on mobile */
    }

    .seedlabs-hero__cta-button {
      font-size: 1rem;
      padding: 14px 28px;
    }
  }

  @media (max-width: 480px) {
    .seedlabs-hero {
      height: 70vh;
    }

    .seedlabs-hero__content {
      width: 95%;
      margin-left: 2.5%;
      padding: 0 16px 0 0;
    }

    .seedlabs-hero__title {
      font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
  }

  /* Dark Mode Support */
  @media (prefers-color-scheme: dark) {
    .seedlabs-hero__backdrop {
      background: linear-gradient(135deg,
        rgba(131, 126, 213, 0.2) 0%,
        rgba(107, 102, 204, 0.15) 25%,
        rgba(90, 85, 184, 0.1) 50%,
        rgba(74, 69, 158, 0.08) 75%,
        rgba(16, 16, 16, 0.9) 100%
      );
    }
  }
.seedlabs-product-highlight {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 0;
    background: transparent;
  }

  .seedlabs-product-highlight__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    width: 100%;
    padding: 0 3rem;
  }

  .seedlabs-product-highlight__card {
    grid-column: span 6;
    position: relative;
    aspect-ratio: 16/9;
    border: none;
    overflow: hidden;
    border-radius: 1cqw;
    cursor: pointer;
  }

  .seedlabs-product-highlight__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    transition: transform 0.3s ease;
  }

  .seedlabs-product-highlight__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    z-index: 1;
  }


  .seedlabs-product-highlight__card:hover .seedlabs-product-highlight__background {
    transform: scale(1.05);
  }

  .seedlabs-product-highlight__card:hover .seedlabs-product-highlight__overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  .seedlabs-product-highlight__text-content,
  .seedlabs-product-highlight__button-content {
    position: absolute;
    z-index: 2;
    padding: 2rem;
  }

  /* Text positioning - Vertical */
  .seedlabs-product-highlight__text-content--top {
    top: 0;
  }

  .seedlabs-product-highlight__text-content--bottom {
    bottom: 0;
  }

  /* Text positioning - Horizontal */
  .seedlabs-product-highlight__text-content--left {
    left: 0;
    text-align: left;
  }

  .seedlabs-product-highlight__text-content--center {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .seedlabs-product-highlight__text-content--right {
    right: 0;
    text-align: right;
  }

  /* Text positioning - Combined adjustments */
  .seedlabs-product-highlight__text-content--bottom.seedlabs-product-highlight__text-content--center {
    transform: translate(-50%, 0);
  }

  .seedlabs-product-highlight__text-content--top.seedlabs-product-highlight__text-content--center {
    transform: translate(-50%, 0);
  }

  /* Button positioning - Vertical */
  .seedlabs-product-highlight__button-content--top {
    top: 0;
  }

  .seedlabs-product-highlight__button-content--bottom {
    bottom: 0;
  }

  /* Button positioning - Horizontal */
  .seedlabs-product-highlight__button-content--left {
    left: 0;
    text-align: left;
  }

  .seedlabs-product-highlight__button-content--center {
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .seedlabs-product-highlight__button-content--right {
    right: 0;
    text-align: right;
  }

  /* Button positioning - Combined adjustments */
  .seedlabs-product-highlight__button-content--bottom.seedlabs-product-highlight__button-content--center {
    transform: translate(-50%, 0);
  }

  .seedlabs-product-highlight__button-content--top.seedlabs-product-highlight__button-content--center {
    transform: translate(-50%, 0);
  }

  .seedlabs-product-highlight__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .seedlabs-product-highlight__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    background-color: #6B66CC;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 120px;
    white-space: nowrap;
    position: relative;
    z-index: 3;
  }

  .seedlabs-product-highlight__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .seedlabs-product-highlight__grid {
      gap: 2rem;
      padding: 0 2rem;
    }

    .seedlabs-product-highlight__text-content,
    .seedlabs-product-highlight__button-content {
      padding: 1.5rem;
    }

    .seedlabs-product-highlight__title {
      font-size: clamp(1.25rem, 4vw, 2rem);
    }
  }

  @media (max-width: 768px) {
    .seedlabs-product-highlight {
      padding: 3rem 0;
    }

    .seedlabs-product-highlight__card {
      grid-column: span 12;
      aspect-ratio: 3/2;
    }

    .seedlabs-product-highlight__grid {
      gap: 2rem;
      padding: 0 1.5rem;
    }

    .seedlabs-product-highlight__text-content,
    .seedlabs-product-highlight__button-content {
      padding: 1.5rem;
    }

    .seedlabs-product-highlight__title {
      font-size: clamp(1.125rem, 5vw, 1.75rem);
    }

    .seedlabs-product-highlight__button {
      padding: 0.75rem 1.5rem;
      font-size: 0.9rem;
    }
  }

  @media (max-width: 480px) {
    .seedlabs-product-highlight {
      padding: 2rem 0;
    }

    .seedlabs-product-highlight__grid {
      padding: 0 1rem;
      gap: 1rem;
    }

    .seedlabs-product-highlight__text-content,
    .seedlabs-product-highlight__button-content {
      padding: 1rem;
    }

    .seedlabs-product-highlight__card {
      aspect-ratio: 4/3;
    }
  }
.seedlabs-social-links {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 0;
    background: transparent;
  }

  .seedlabs-social-links__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    width: 100%;
    padding: 0 3rem;
  }

  .seedlabs-social-links__card {
    grid-column: span 12;
    position: relative;
    height: 120px;
    border: none;
    overflow: hidden;
    border-radius: 1cqw;
    cursor: pointer;
  }

  .seedlabs-social-links__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    transition: transform 0.3s ease;
    mix-blend-mode: screen;
  }

  .seedlabs-social-links__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    z-index: 1;
  }

  .seedlabs-social-links__card:hover .seedlabs-social-links__background {
    transform: scale(1.02);
  }

  .seedlabs-social-links__card:hover .seedlabs-social-links__overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  .seedlabs-social-links__content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .seedlabs-social-links__title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: white;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .seedlabs-social-links__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    background-color: #6B66CC;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    min-width: 120px;
    white-space: nowrap;
    position: relative;
    z-index: 3;
  }

  .seedlabs-social-links__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
  }

  .seedlabs-social-links__button:active,
  .seedlabs-social-links__button:focus {
    border-radius: 9999px;
    outline: none;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .seedlabs-social-links__grid {
      gap: 1.25rem;
      padding: 0 2rem;
    }

    .seedlabs-social-links__card {
      height: 100px;
    }

    .seedlabs-social-links__content {
      padding: 0 1.5rem;
    }

    .seedlabs-social-links__title {
      font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .seedlabs-social-links__button {
      padding: 0.625rem 1.5rem;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 768px) {
    .seedlabs-social-links {
      padding: 3rem 0;
    }

    .seedlabs-social-links__grid {
      gap: 1rem;
      padding: 0 1.5rem;
    }

    .seedlabs-social-links__card {
      height: 90px;
    }

    .seedlabs-social-links__content {
      padding: 0 1.25rem;
      flex-direction: row;
      gap: 1rem;
    }

    .seedlabs-social-links__title {
      font-size: clamp(0.9rem, 4vw, 1.25rem);
    }

    .seedlabs-social-links__button {
      padding: 0.5rem 1.25rem;
      font-size: 0.8rem;
      min-width: 100px;
    }
  }

  @media (max-width: 480px) {
    .seedlabs-social-links {
      padding: 2rem 0;
    }

    .seedlabs-social-links__grid {
      padding: 0 1rem;
      gap: 0.75rem;
    }

    .seedlabs-social-links__card {
      height: 80px;
    }

    .seedlabs-social-links__content {
      padding: 0 1rem;
      gap: 0.75rem;
    }

    .seedlabs-social-links__title {
      font-size: clamp(0.85rem, 5vw, 1rem);
    }

    .seedlabs-social-links__button {
      padding: 0.5rem 1rem;
      font-size: 0.75rem;
      min-width: 80px;
    }
  }

/* CSS from block stylesheet tags */
.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;
  }
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }

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

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