#bonus-popup {
    display: flex; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    justify-content: center;  
    align-items: center;      
    background: rgba(0, 0, 0, 0); 
    z-index: 9999;
    opacity: 0;
    pointer-events: none; 
    transition: opacity 0.4s ease, background 0.4s ease;
}

#bonus-popup.show {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(135deg, rgb(14 2 22), rgba(0, 50, 50, 0.8), rgba(10, 10, 60, 0.85));
    background-size: 300% 300%;
}

#bonus-popup .popup-content {
    background-image: url(/winter/img/sections/showcase-bg.jpg);
    font-family: "AlbertusBold", sans-serif;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    box-shadow: 0 0 20px 9px rgb(0 0 0 / 37%);
}

#bonus-popup.show .popup-content {
    transform: scale(1);
    opacity: 1;
}

    #bonus-popup .popup-content h2 {
        font-size: 1.4em;
        text-transform: uppercase;
        font-weight: 800;
    }

  #bonus-popup.show .popup-content {
    transform: scale(1);
  }

  #bonus-popup #close-popup {
    position: absolute;
    right: 10px; top: 10px;
    border: none;
    background: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff;
  }

  #bonus-popup .popup-logo {
    max-width: 120px;
    display: inline;
  }

  #bonus-popup input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    border: 2px solid #f4bf007a;
    box-shadow: 0 0 8px 4px rgb(254 151 0 / 34%);
    background: #dddddd1f;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.35s ease-in-out,box-shadow 0.35s ease-in-out;
  }

  #bonus-popup input[type="email"]:focus {
    outline: none;
    border: 2px solid #f4bf00bf;
    box-shadow: 0 0 8px 4px rgb(254 151 0 / 64%);
  }

  #bonus-popup .bonus-count {
    color: #fdc46b;
    font-weight: 600;
  }

  #bonus-popup input::placeholder {
    color: #fdc46b;
    opacity: 1;
  }

  #bonus-popup button[type="submit"] {
    background: linear-gradient(to right, #f3c200, #ff9600);
    color: #12110f;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 17px;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin: 10px 0;
    box-shadow: 0 0 8px 4px rgb(254 151 0 / 34%);
    filter: brightness(1);
    transition: box-shadow 0.35s ease, filter 0.35s ease;
  }

  #bonus-popup button[type="submit"]:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 8px 4px rgb(254 151 0 / 64%);
    cursor: pointer;
    border: none;
  }

  #bonus-message {
    margin-top: 10px;
    min-height: 20px;
  }

  /* Полоса прогресса */
  .bonus-progress-container {
    background: #eeeeee1a;
    border-radius: 8px;
    height: 12px;
    width: 100%;
    margin: 15px 0;
    overflow: hidden;
  }

.bonus-progress-bar {
    height: 100%;
    width: 0%;
    background: #7b5fff;
    position: relative;
    overflow: hidden;
    transition: width 0.5s ease;
}

.bonus-progress-bar::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 10%, transparent 10%);
    background-size: 50px 50px;
    animation: wave 3s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(50%) translateY(5%); }
    100% { transform: translateX(-50%) translateY(0); }
}

  /* Блок условий */
  .bonus-conditions {
    text-align: left;
    font-size: 11px;
    color: #9d9d9d;
    margin-top: 15px;
    line-height: 1.5;
    padding-inline-start: 20px;
  }

  .bonus-conditions li {
    margin-bottom: 5px;
  }

    /* Уведомления в стиле Bootstrap */
  #bonus-message {
    display: none; /* скрыто по умолчанию */
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.6;
  }

  #bonus-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  #bonus-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  #bonus-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
  }

  .item {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.item img {
    width: 40px;
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(15, 0, 24, 0.95);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  min-width: 220px;
  max-width: 350px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  z-index: 10;
}

.tooltip-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}


.tooltip-desc {
  font-weight: 400;
  font-size: 14px;
}


.item:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

#bonus-count-top {
  display: inline-block;
}


    .slider-item-bg1::after {
  content: "";
  position: absolute;
  inset: 0; 
  background: rgb(9 4 8 / 67%); 
  pointer-events: none; 
}

.video_custom {
      width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

    .slick-dots {
      position: absolute;
    bottom: -60px;
    display: flex;
    justify-content: center;
    gap: 9px;
    padding: 0;
    margin: 0;
    list-style: none;
}


.slick-dots li button {
  font-size: 0; 
  background: none;
border: none;
}


.slick-dots li button:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-color: #ff9700;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.slick-dots li button:hover {
    cursor: pointer;
}


.slick-dots li.slick-active button:before {
  opacity: 1;
  transform: scale(1.3);
  background-color: #ff9700;
}

.kit-badge {
    background: red;
    border-radius: 4px;
    padding: 0 5px;
    position: absolute;
    display: block;
    left: 30px;
    width: 50px;
    top: -20px;
}