/* Globální ohraničení sekce influencerek */
.influencer-section {
  width: 100%;
  margin: 50px 0;
  box-sizing: border-box;
  padding: 0 15px;
}

/* Nadpis odpovídající nadpisu "Ověřeno celebritami" */
.influencer-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  text-align: left;
}

/* Obalovač slideru */
.influencer-carousel-wrapper {
  position: relative;
  padding: 0 55px; /* Větší prostor pro pohodlné zobrazení kulatých tlačítek */
}

/* Kontejner pro skrytí přetékajících karet */
.influencer-carousel-track-container {
  overflow: hidden;
  width: 100%;
}

/* Pohyblivá dráha s kartami */
.influencer-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease-out;
  width: 100%;
  cursor: grab; /* Naznačení uživateli na desktopu, že může táhnout myší */
  user-select: none;
}

.influencer-carousel-track:active {
  cursor: grabbing;
}

/* Samotná karta influencerky */
.influencer-card {
  flex: 0 0 calc(50% - 12px); /* Zobrazení 2 karet na desktopu */
  display: flex;
  gap: 24px;
  box-sizing: border-box;
}

/* Obrázek */
.influencer-image {
  flex: 0 0 240px;
  width: 240px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f2f2f2;
}

.influencer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none; /* Zabrání nechtěnému tahání samotného obrázku při dragu */
}

/* Obsah karty */
.influencer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Hvězdičky */
.influencer-rating {
  display: flex !important;
  gap: 10px !important;
  margin-bottom: 15px !important;
  align-items: center !important;
  min-height: 18px;
}

.rating-star {
  width: 18px !important;
  height: 18px !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.rating-star path {
  fill: var(--colors-surface-rating, #ffc107) !important;
}

/* Instagram link a ikona */
.influencer-instagram {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.instagram-icon path,
.instagram-icon circle {
  fill: #fc148c !important;
}

.influencer-instagram a {
  font-weight: 600;
  font-size: 16px;
  color: #fc148c;
  text-decoration: none;
}

.influencer-instagram a:hover {
  text-decoration: underline;
}

/* Text recenze */
.influencer-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* UNIKÁTNÍ OVLÁDACÍ ŠIPKY (Zcela chráněné před styly Shoptetu) */
.influencer-carousel-wrapper .custom-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px !important;
  height: 44px !important;
  background-color: #ffffff !important;
  border: 1px solid #e2e2e2 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12) !important;
  transition: all 0.2s ease-in-out !important;
  z-index: 10 !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #000000 !important;
}

.influencer-carousel-wrapper .custom-carousel-btn:hover {
  background-color: #f7f7f7 !important;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18) !important;
}

.influencer-carousel-wrapper .custom-carousel-btn svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}

.influencer-carousel-wrapper .custom-prev {
  left: 5px !important;
}

.influencer-carousel-wrapper .custom-next {
  right: 5px !important;
}

/* MOBILNÍ ZAŘÍZENÍ (Šipky skryty, posun prstem) */
@media (max-width: 991px) {
  .influencer-carousel-wrapper {
    padding: 0 35px !important; /* Malé zúžení, aby šipky měly na mobilu prostor u krajů displeje */
  }

  .influencer-carousel-wrapper .custom-carousel-btn {
    display: flex !important; /* Šipky jsou povoleny i na mobilu */
    width: 32px !important;
    height: 32px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important; /* Decentnější stín */
    background-color: rgba(
      255,
      255,
      255,
      0.95
    ) !important; /* Jemná průhlednost pro odlehčený vzhled */
    border: 1px solid #e8e8e8 !important;
  }

  .influencer-carousel-wrapper .custom-carousel-btn svg {
    width: 16px !important; /* Menší vnitřní ikonka */
    height: 16px !important;
  }

  /* Pozicování šipek na mobilech zcela ke krajům */
  .influencer-carousel-wrapper .custom-prev {
    left: 0 !important;
  }

  .influencer-carousel-wrapper .custom-next {
    right: 0 !important;
  }

  .influencer-card {
    flex: 0 0 100%;
    flex-direction: column;
    gap: 16px;
  }

  .influencer-image {
    flex: none;
    width: 100%;
    height: 350px;
  }
}
