/** Shopify CDN: Minification failed

Line 230:0 Unexpected "{"
Line 230:1 Expected identifier but found "%"

**/
  #main-content {
    clip-path: none !important;
  }
  .stories-container {
    display: flex;
    gap: 20px;
    padding: 20px 0px;
    overflow-x: auto;
    width: 100%;
    justify-content: center;
  }

  /* .story-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    /* border: 3px solid #fe3d3d; 
    flex-shrink: 0;
  } */
  .story-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding:  2px; /* עובי הרינג */
  background: conic-gradient(
    #f58529, /* אדום-כתום */
    #dd2a7b, /* ורוד */
    #8134af, /* סגול */
    #f58529  /* חוזר לאדום */
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

/* בתוך העיגול אפשר להכניס תמונה של הפרופיל */
.story-thumbnail img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
}
  .story-thumbnail:hover {
    transform: scale(1.1);
  }
  /* .story-thumbnail.active {
    border-color: {{ section.settings.active_color }};
  } */

  .story-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Story Modal */
  .story-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #454343;
    z-index: 9999;
    direction: ltr !important;
  }
  .stories-container::-webkit-scrollbar {
    display: none;
  }

  .stories-container {
    -ms-overflow-style: none;  /* IE 10+ */
    scrollbar-width: none;     /* Firefox */
  }  

  .story-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr !important;
  }

  /* Progress Bar Styles */
  .story-progress {
    max-width: 500px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px;
    display: flex;
    gap: 4px;
    z-index: 10;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0.8) 0%, rgba(38, 38, 38, 0) 100%);
    direction: ltr !important;
  }

  .progress-bar-item {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 1px;
    overflow: hidden;
    direction: ltr !important;
    cursor: pointer;
  }

  .progress-bar-item.active:after {
    content: "";
    display: block;
    height: inherit;
    background: white;
    transform: translateX(-100%);
    animation: thumb 5s forwards linear;
  }
  
  @keyframes thumb {
    to {
    transform: initial;
    }
  }

  /* Story Content */
  .story-content {
    background: black;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr !important;
  }

  .story-image {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    direction: ltr !important;
  }

  /* Navigation */
  .nav-area {
    position: absolute;
    top: 30px;
    bottom: 0;
    width: 50%;
    z-index: 9;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-area.prev { left: 0; }
  .nav-area.next { right: 0; }

  /* Close Button */
  .close-story {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 11;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .close-story:hover {
    opacity: 1;
  }

  /* Action Buttons */
  .story-actions {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 9;
    max-width: 450px;
    direction: ltr !important;
  }
   .story-actions .add-to-cart, .story-actions .share-whatsapp {
     text-align: center !important;
   }
  .story-actions button {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    background: #fff;
    color: #000;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
    direction: ltr !important;
  }

  .story-actions button:hover {
    transform: scale(1.05);
  }

  @media (max-width: 768px) {
    .story-actions {
      flex-direction: column;
      width: 90%;
    }

    .story-actions button {
      width: 100%;
    }
  }
{%- endstyle -%}