.elementor-5286 .elementor-element.elementor-element-51918f0{--display:flex;}.elementor-5286 .elementor-element.elementor-element-51918f0 [data-glow]{--border-light-opacity:1;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-list{overflow:hidden;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-slide{margin:0rem 1rem 2rem 1rem;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-track{margin:0 -1rem 0 -1rem;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-prev i{font-size:20px;color:#000000 !important;opacity:0.7;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-next i{font-size:20px;color:#000000 !important;opacity:0.7;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-prev img{width:20px;opacity:0.7;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-next img{width:20px;opacity:0.7;}.elementor-5286 .elementor-element.elementor-element-51918f0 .owocni-slick-slider[data-show-arrows="yes"] .slick-list{margin:0 calc(20px * 2 + 10px);}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-next:hover i{color:#000000 !important;opacity:1;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-prev:hover i{color:#000000 !important;opacity:1;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-next:hover img{opacity:1;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-prev:hover img{opacity:1;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-dots li button::before{font-size:10px;line-height:calc(10px * 1.4);}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-dots li{width:calc(10px * 1.4);height:calc(10px * 1.4);border-radius:999px;background-color:#E5E5E7;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-dots li:hover{background-color:#bababa;}.elementor-5286 .elementor-element.elementor-element-51918f0 .slick-dots li.slick-active{background-color:#bababa;}/* Start custom CSS for html, class: .elementor-element-519f1a3 */.owocni_carousel_container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
  }

  .owocni_carousel_wrapper {
    display: flex;
    position: relative;
    gap: 20px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transform: translateX(0);
    will-change: transform; /* Dodane dla lepszej wydajności */
    transition: transform 0.2s ease-out; /* Dodany efekt inercji */
  }

  .owocni_carousel_item {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    transition: scale 0.2s ease-in-out;
  }

  .owocni_carousel_item img,
  .owocni_carousel_item video {
    height: auto;
    object-fit: cover;
    border-radius: 18px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Styl dla nakładki - tylko na wideo */
  .owocni_video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.7; /* Domyślnie ciemne */
    transition: opacity 0.3s ease;
    border-radius: 18px;
    pointer-events: none;
  }

  /* Efekt najechania myszy - usunięcie nakładki */
  .owocni_carousel_item:hover .owocni_video_overlay {
    opacity: 0;
  }
  
  /* Styl dla przycisku stop - prawy dolny róg - zawsze widoczny */
  .owocni_video_stop_btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    /* Dodajemy obramowanie przycisku */
    border: 3px solid transparent;
    box-sizing: border-box;
    opacity: 1; /* Zawsze widoczne */
    transition: background-color 0.3s ease;
  }
  
  /* Styl dla przycisku stop - ikona */
  .owocni_video_stop_btn::before {
    content: '';
    width: 15px;
    height: 15px;
    background-color: white;
    border-radius: 2px;
  }
  
  /* Styl dla przycisku play */
  .owocni_video_stop_btn.play::before {
    width: 0;
    height: 0;
    background-color: transparent;
    border-style: solid;
    border-width: 8px 0 8px 15px;
    border-color: transparent transparent transparent white;
  }
  
  /* Styl dla przycisku fullscreen - prawy górny róg - zawsze widoczny */
  .owocni_video_fullscreen_btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
    opacity: 1; /* Zawsze widoczne */
  }
  
  .owocni_video_fullscreen_btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Animacja obramówki czasu - używam JavaScript zamiast CSS */
  @keyframes timeProgress {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -283; /* Mniej więcej obwód koła */ }
  }
  
  .owocni_time_border {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    pointer-events: none;
  }
  
  .owocni_time_border circle {
    fill: none;
    stroke: #63D84F;
    stroke-width: 10px;
    stroke-linecap: round;
    stroke-dasharray: 283; /* π × diameter */
    transform-origin: center;
    transform: rotate(-90deg);
  }
  
  /* Styl dla wideo w trybie pełnoekranowym */
  .owocni_fullscreen_video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .owocni_fullscreen_video.active {
    opacity: 1;
  }
  
  .owocni_fullscreen_video video {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
  }
  
  .owocni_fullscreen_video.active video {
    transform: scale(1);
  }
  
  .owocni_fullscreen_video .owocni_close_fullscreen {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10000;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .owocni_fullscreen_video .owocni_close_fullscreen:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
  
  .owocni_fullscreen_video .owocni_close_fullscreen::before,
  .owocni_fullscreen_video .owocni_close_fullscreen::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background-color: white;
    transform: rotate(45deg);
    transition: background-color 0.3s ease;
  }
  
  .owocni_fullscreen_video .owocni_close_fullscreen::after {
    transform: rotate(-45deg);
  }
  
  .owocni_fullscreen_video .owocni_close_fullscreen:hover::before,
  .owocni_fullscreen_video .owocni_close_fullscreen:hover::after {
    background-color: #fff;
  }
  
  /* Dodatkowy overlay */
  .owocni_fullscreen_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    z-index: -1;
  }
  
  /* Dodatkowa klasa do płynnego przesuwania */
  .owocni_carousel_wrapper.dragging {
    transition: none; /* Wyłącz efekt przejścia podczas przeciągania */
  }

  /* Dodajemy nowy styl dla braku przejścia */
  .owocni_carousel_wrapper.no-transition {
    transition: none !important;
  }

  .owocni_carousel_wrapper.dragging .owocni_carousel_item {
    scale: 0.95;
  }/* End custom CSS */