/** Shopify CDN: Minification failed

Line 15:21 Expected identifier but found whitespace
Line 15:23 Unexpected "{"
Line 15:32 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:whats-in-the-box (INDEX:100) */
.witb-section {
    padding: 60px 0;
    background-color: {{ section.settings.background_color }};
  }

  .witb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
  }

  .witb-left {
    position: sticky;
    top: 40px;
  }

  .witb-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #111;
  }

  .witb-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
  }

  .witb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .witb-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .witb-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .witb-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #f5f5f5;
    padding: 12px;
    box-sizing: border-box;
  }

  .witb-card-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
  }

  .witb-card-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
  }

  @media (max-width: 768px) {
    .witb-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .witb-left {
      position: static;
    }

    .witb-heading {
      font-size: 1.5rem;
    }

    .witb-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .witb-card {
      padding: 16px 12px;
    }
  }
/* END_SECTION:whats-in-the-box */