/* --- DESIGN SYSTEM CYKLOSHOP.SK (BLACK VERSION) --- */
#popup-banner-shoptet * {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif, Arial;
}

#popup-banner-shoptet {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85); /* Tmavší overlay */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#popup-banner-shoptet.active {
  opacity: 1;
  pointer-events: auto;
}

/* --- OKNO --- */
#popup-banner-shoptet .popup-content-box {
  background-color: #ffffff;
  width: 95%;
  max-width: 580px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 2px solid #000000; /* Čierny border */
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 95vh;
  overflow-y: auto;
}

#popup-banner-shoptet.active .popup-content-box {
  transform: translateY(0);
}

/* --- NADPIS --- */
#popup-banner-shoptet .popup-heading {
  margin: 0 0 15px 0;
  color: #000000; /* Čierny nadpis */
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

#popup-banner-shoptet .highlight-text {
  color: #d71920; /* Červená zostáva pre vibe */
  display: block;
}

/* --- KONTAJNER PRE PREDAJNE --- */
#popup-banner-shoptet .stores-container {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

#popup-banner-shoptet .store-info-box {
  flex: 1;
  background: #f8f9fa;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  text-align: left;
}

#popup-banner-shoptet .store-name {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 2px solid #d71920;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#popup-banner-shoptet .opening-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

#popup-banner-shoptet .opening-hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 11px;
  color: #333;
  line-height: 1.2;
}

#popup-banner-shoptet .opening-hours-list li:last-child {
  border-bottom: none;
}

/* --- STATUSY --- */
#popup-banner-shoptet .status-badge {
  font-weight: 700;
  white-space: nowrap;
}

#popup-banner-shoptet .status-badge.closed {
  color: #d71920;
}

#popup-banner-shoptet .status-badge.open {
  color: #28a745;
}

/* --- TLAČIDLÁ --- */
#popup-banner-shoptet .close-icon {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  color: #999;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#popup-banner-shoptet .action-btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-top: 20px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#popup-banner-shoptet .action-btn:hover {
  background-color: #d71920;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.3);
}

/* --- MINI BANNER --- */
#mini-banner-shoptet {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background-color: #000000;
  color: #ffffff;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
  border-radius: 50px; 
  z-index: 999998;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid #fff;
  transition: all 0.3s;
}

#mini-banner-shoptet:hover {
  background-color: #d71920;
  transform: scale(1.05);
}

/* --- RESPONSIVE --- */
@media (max-width: 580px) {
  #popup-banner-shoptet .stores-container {
    flex-direction: column;
  }
  #popup-banner-shoptet .popup-content-box {
    width: 92%;
    padding: 25px 15px;
  }
  #popup-banner-shoptet .store-info-box {
    margin-bottom: 5px;
  }
  #mini-banner-shoptet {
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    white-space: nowrap;
  }
}