 .slider {
    position: relative;
  }

  .indicators {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 6px;
  }

  .dot {
    width: 20px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .dot.active {
    background-color: #fff;
    width: 30px;
  }

  .video-fullwidth {
    position: relative;
    text-align: center;
    margin: 60px 0;
  }

  .video-fullwidth video {
    width: 100% !important;
    height: auto !important;
    max-width: 900px;
    border: 2px solid #d4af37;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
  }

  .video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: rgba(212, 175, 55, 0.95);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  .video-overlay::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 26px solid #000;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 4px;
  }

  .video-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
  }

  .video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  /* === TABS === */
  .iqos-tabs {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    padding: 50px 0;
    position: relative;
  }

  .iqos-tab-buttons {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .iqos-tab-buttons button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    padding-bottom: 8px;
    transition: color 0.3s, border-bottom 0.3s;
  }

  .iqos-tab-buttons button.active {
    color: #fff;
    border-bottom: 3px solid #d4af37;
  }

  .iqos-tab-content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    flex-wrap: wrap;
    position: relative;
  }

  .iqos-slide {
    display: none;
    width: 100%;
    align-items: stretch;
    animation: fade 0.5s ease-in-out;
  }

  .iqos-slide.active {
    display: flex;
  }

  .iqos-slide img {
    width: 50%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
  }

  .iqos-text-block {
    flex: 1;
    background: #1a1a1a;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .iqos-text-block h3 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .iqos-text-block p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
  }

  @keyframes fade {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @media(max-width:900px) {
    .iqos-tab-content {
      flex-direction: column;
    }

    .iqos-slide img {
      width: 100%;
    }

    .iqos-text-block {
      padding: 40px;
    }

    .iqos-tab-buttons {
      gap: 30px;
    }
  }

  /* === ŠIPKY === */
  .iqos-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 20px;
    pointer-events: none;
  }

  .iqos-arrow {
    pointer-events: auto;
    background: none;
    border: none;
    font-size: 50px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: 0.3s ease;
  }

  .iqos-arrow:hover {
    color: #fff;
    transform: scale(1.2);
  }

  @media (max-width:900px) {
    .iqos-arrow {
      font-size: 36px;
    }
  }

  /* === OBSAH BALENÍ === */
  .package {
    text-align: center;
    margin-top: 60px;
  }

  .package h2 {
    color: #d4af37;
    font-size: 28px;
    margin-bottom: 30px;
  }

  .package-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .package-item {
    text-align: center;
    width: 160px;
  }

  .package-item img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
  }

  .package-item p {
    color: #ccc;
    font-size: 16px;
  }