/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Unexpected "{"
Line 16:3 Expected identifier but found "'woda-sports-preorder.css'"
Line 17:0 Unexpected "{"
Line 17:1 Unexpected "{"
Line 17:3 Expected identifier but found "'component-loading-overlay.css'"
Line 18:0 Unexpected "{"
Line 18:1 Unexpected "{"
Line 18:3 Expected identifier but found "'component-card.css'"
Line 19:0 Unexpected "{"
... and 37 more hidden warnings

**/
{{ 'woda-sports-preorder.css' | asset_url | stylesheet_tag }}
{{ 'component-loading-overlay.css' | asset_url | stylesheet_tag }}
{{ 'component-card.css' | asset_url | stylesheet_tag }}
{{ 'component-price.css' | asset_url | stylesheet_tag }}

<link rel="preload" href="{{ 'component-rte.css' | asset_url }}" as="style" onload="this.onload=null;this.rel='stylesheet'">

{%- if section.settings.enable_quick_add -%}
  <link rel="stylesheet" href="{{ 'quick-add.css' | asset_url }}" media="print" onload="this.media='all'">
  <script src="{{ 'quick-add.js' | asset_url }}" defer="defer"></script>
  <script src="{{ 'product-form.js' | asset_url }}" defer="defer"></script>
{%- endif -%}
<noscript>{{ 'component-rte.css' | asset_url | stylesheet_tag }}</noscript>

{%- style -%}
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
    padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
  }

  @media screen and (min-width: 750px) {
    .section-{{ section.id }}-padding {
      padding-top: {{ section.settings.padding_top }}px;
      padding-bottom: {{ section.settings.padding_bottom }}px;
    }
  }

  .section-{{ section.id }}-padding.preorder-page {
    background: linear-gradient(135deg, #f8fff8 0%, #f0fdf4 100%);
    min-height: 100vh;
  }

  .section-{{ section.id }}-padding.preorder-page .woda-collections-container {
    background: transparent;
  }

  .woda-collections-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }

  .preorder-page .woda-collections-container {
    padding: 4rem 1rem;
  }

  .woda-collection-section.preorder-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 0;
    margin-bottom: 2rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(46, 139, 87, 0.1);
    backdrop-filter: blur(20px);
  }

  .woda-collection-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .preorder-collection-badge {
    background: linear-gradient(135deg, #2E8B57 0%, #20B2AA 100%);
    color: white;
    padding: 1.5rem 4rem;
    border-radius: 30px;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 3rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .preorder-collection-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    color: #1a5c3a;
    background: linear-gradient(135deg, #2E8B57, #20B2AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .preorder-collection-description {
    font-size: 1.6rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 300;
    color: #4a5d4a;
  }

  .woda-product-grid.preorder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .woda-product-card.preorder-style {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 15px 45px rgba(46, 139, 87, 0.1);
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .woda-product-card.preorder-style::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2E8B57, #20B2AA, #3CB371);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 24px 24px 0 0;
  }

  .woda-product-card.preorder-style:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(46, 139, 87, 0.2);
    border-color: #2E8B57;
  }

  .woda-product-card.preorder-style:hover::before {
    transform: scaleX(1);
  }

  .preorder-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #3CB371, #2E8B57);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(60, 179, 113, 0.3);
    animation: badge-pulse 3s infinite;
  }

  @keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
  }

  .woda-product-card.preorder-style .card__media {
    border-radius: 20px;
    margin-bottom: 2rem;
    background: transparent;
    height: 380px;
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .woda-product-card.preorder-style .card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: drop-shadow(0 8px 20px rgba(46, 139, 87, 0.15));
  }

  .woda-product-card.preorder-style:hover .card__media img {
    transform: scale(1.08);
  }

  .woda-product-card.preorder-style .card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: auto;
    text-align: center;
  }

  .woda-product-card.preorder-style .card__heading {
    font-size: 2rem;
    font-weight: 600;
    color: #1a5c3a;
    margin-bottom: 1.2rem;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  .preorder-product-reviews {
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 36px;
    cursor: default;
  }

  .jdgm-widget.jdgm-preview-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .jdgm-widget .jdgm-star {
    font-size: 2rem !important;
    color: #2E8B57 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
  }

  .jdgm-widget .jdgm-prev-badge__text {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #1a5c3a !important;
  }

  .preorder-product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin: 1.5rem 0;
    cursor: default;
  }

  .preorder-feature-badge {
    background: linear-gradient(135deg, #f8fff8, #f0fdf4);
    color: #1a5c3a;
    padding: 0.7rem 1.4rem;
    border-radius: 18px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #dcfce7;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }

  .woda-product-card.preorder-style:hover .preorder-feature-badge {
    background: linear-gradient(135deg, #2E8B57, #20B2AA);
    color: white;
    border-color: #2E8B57;
    transform: translateY(-1px);
  }

  .woda-product-card.preorder-style .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a5c3a;
    margin-bottom: 1.5rem;
    cursor: default;
    text-align: center;
    padding-left: 0;
    margin-left: 0;
    line-height: 1;
  }

  .preorder-product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
  }

  .preorder-buy-now-button {
    padding: 1.4rem 2.5rem;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #2E8B57 0%, #20B2AA 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }

  .preorder-buy-now-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
  }

  .preorder-buy-now-button:hover {
    background: linear-gradient(135deg, #20B2AA 0%, #2E8B57 100%);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.5);
    transform: translateY(-3px);
    cursor: pointer;
  }

  .preorder-buy-now-button:hover::before {
    left: 100%;
  }

  /* Estilos específicos para fallback reviews */
  .fallback-reviews {
    display: none;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
  }

  .fallback-reviews.show {
    display: flex;
  }

  .fallback-reviews .stars-container {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    color: #2E8B57;
    font-size: 2rem;
    line-height: 1;
  }

  .fallback-reviews .stars-container .star {
    color: #2E8B57 !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    font-weight: bold !important;
  }

  .fallback-reviews .rating-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #1a5c3a;
    font-weight: 700;
    font-size: 1.4rem;
  }

  @media (max-width: 768px) {
    .preorder-collection-title {
      font-size: 3rem;
    }
    
    .woda-product-grid.preorder-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .woda-product-card.preorder-style {
      padding: 1.5rem;
    }
    
    .woda-product-card.preorder-style .card__media {
      height: 300px;
    }

    /* Responsive para reviews */
    .fallback-reviews .stars-container .star {
      font-size: 1.6rem !important;
    }
    
    .fallback-reviews .rating-info {
      font-size: 1.2rem !important;
    }
  }
{%- endstyle -%}