/** Shopify CDN: Minification failed

Line 197:2 Unexpected "}"

**/
  .skw-star-picker {
    height: 100%;
    width: 100%;
    display: block;
    margin-bottom: 2rem;
  }
  
  .stars-rating-picker {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  
  .star-rating-picker {
    flex: 1;
    text-align: center;
    font-size: 5rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
  }
  
  .star-rating-picker.filled,
  .star-rating-picker.hovered {
    color: #ffc107;
  }

  .stars-rating-picker-choice {
    text-align: center;
    font-family: 'LemonSun';
    background: #f5f5f5;
    padding: .5rem;
    font-size: 2.4rem;
  }

  .review-hidden {
    display: none;
  }
  
  .review-spinner {
    border: 2px solid #333;
    border-top: 2px solid #999;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: review-spin 1s linear infinite;
    margin-left: 10px;
    /* display: block; */
  }
  
  @keyframes review-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .review-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .review-submit-btn {
    background: #009444;
    transition: opacity .3s ease;
  }

  .review-submit-btn:hover {
    opacity: .9;
  }

  .fill-bar {
    height: 100%;
    background-color: #009444;
    border-radius: 150px;
    transition: width 1s ease-in-out;
  }

  .skw-reviews-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Space between lines and title */
    margin: 2rem auto;
  }
  
  .skw-reviews-title {
    font-size: clamp(2.8rem, 3vw, 4.5rem);
    color: #009444;
    font-family: 'Sunrise';
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
  }
  
  .skw-reviews-title-wrapper::before,
  .skw-reviews-title-wrapper::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #cecece;
    opacity: 0.5;
  }

  .skw-rating-details-score {
    font-size: 3.2rem;
    font-weight: bold;
    color: #999;
    line-height: 1;
    margin: 0;
    margin-bottom: 1.5rem;
  }

  .skw-rating-details-breack {
    display: flex;
    width: 75%;
  }
  
  .skw-reviews-container {
    display: flex;
    align-items: stretch; /* ✅ Make all children stretch vertically */
    width: 100%;
    max-width: 1000px;
    gap: 1rem; /* Optional: spacing between blocks */
    margin: auto;
  }
  
  .skw-rating-details,
  .skw-rating-graph,
  .skw-rating-counts {
    padding: 1rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  /* Optional background colors for testing */
  .skw-rating-details {
    align-items: center;
    width: 25%
  }
  
  .skw-rating-graph {
    gap: 1rem;
    flex: 1;
    border-left: 1px solid #ddd;
  }
  
  .skw-rating-graph-bar {
    height: 2rem;
    width: 100%;
    background: #f5f5f5;
    border-radius: 150px;
  }
  
  .skw-rating-counts {
    align-items: flex-start;
  }

  .skw-form-textarea, 
  .skw-form-input {
    font-family: sans-serif;
  }
  .skw-review-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }

  .skw-review-btn {
    padding: 7px 16px;
    font-family: 'LemonSun';
    font-size: 2.1rem ;
    background: #009444;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: opacity .3s ease;
    margin: auto;
    display: block;
  }

  .skw-review-btn-container {
    width: 100%;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    margin-top: 1rem;
}
  }

  .skw-review-btn:hover {
    opacity: .9;
  }

  /* Modal Styles */
  .skw-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .skw-modal {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    animation: fadeIn 0.3s ease-in-out;
  }

  @keyframes fadeIn {
    from {
      transform: translateY(-20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .skw-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .skw-modal-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #666;
  }

  .skw-review-form input,
  .skw-review-form textarea,
  .skw-review-form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
  }

  .skw-review-form textarea {
    min-height: 100px;
    resize: vertical;
    margin-bottom: 0;
  }

  .skw-review-form button[type="submit"] {
    background-color: #009444;
    color: white;
    border: none;
    padding: 10px 16px;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .skw-review-form button[type="submit"]:hover {
    opacity: .9;
  }

  .skw-single-review {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 1rem 0;
  }

  .skw-single-review p {
    margin: 4px 0 0 0;
    padding: 0;
    line-height: 1.4;
  }

  .skw-single-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .star-rating {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .star {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #facc15;
    stroke-width: 1.5;
  }
  .star.filled {
    fill: #facc15;
  }

  .skw-rating-graph-bar {
    height: 1.5rem;
    width: 100%;
    background: #f5f5f5;
    border-radius: 150px;
    margin: 2px 0;
  }

  .no-reviews-message {
    text-align: center;
    font-size: 3rem;
    font-family: 'LemonSun';
    color: #666;
  }

  @media screen and (max-width: 1100px) {
    .skw-review-container {
      padding: 1rem;
    }
  }

  @media screen and (max-width: 768px) {
    .skw-review-container {
      padding: 0 1rem;
    }
    .skw-rating-graph-bar {
      height: 1rem;
      margin: 4px 0;
    }
    .skw-reviews-container {
      gap: 0;
    }
    .skw-rating-details {
      align-items: center;
      width: 28%;
    }
    .star {
      height: 13px;
      width: 13px;
    }
    .skw-rating-details-score {
      margin-bottom: .5rem;
    }
    .skw-product-rating-details-score {
      font-size: 1.6rem;
      padding: 0.8rem;
    }

    @media screen and (max-width: 480px) {
      .skw-reviews-container {
        flex-direction: column;
      }
      .skw-rating-graph {
        border: none;
      }
      .skw-rating-details {
        width: 100%;
      }
      .skw-rating-details {
        align-items: center;
        width: 100%;
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
      }
      .skw-rating-details-breack {
        width: 100%;
      }
    }
  }