/** Shopify CDN: Minification failed

Line 174:0 Unexpected "}"

**/
/* Hlavná trieda pre zvonček */
.notification-bell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
}

/* Tlačidlo zvončeka */
#notification-bell-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

/* Zjednotenie veľkosti ikonky zvončeka so zvyškom */
.icon-notification {
  width: 24px !important;
  height: 24px !important;
  stroke: #484751 !important;
  stroke-width: 1.15 !important;
}

/* Notifikačný odznak (badge) - malé číslo pri zvončeku */
#notification-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #f21970;
  color: white;
  font-size: 10px;
  font-weight: bold;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: visibility 0.3s linear, opacity 0.3s ease-in-out;
}

/* Aktívny stav - zobrazí badge */
#notification-badge.active {
  display: flex !important;
  visibility: visible;
  opacity: 1;
}

/* Rovnaký štýl pre všetky ikonky v hlavičke */
.header__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 8px;
}

/* Notifikačný dropdown */
#notification-dropdown {
  position: fixed;
  top: 0;
  right: 0;
  background: white;
  border: none;
  width: 100vw;
  height: 100vh;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 9999;
  overflow-y: auto;
  transition: all 0.3s ease;
  padding-top: 60px;
}

#notification-dropdown.active {
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Tlačidlo na uzatvorenie (X) */
#notification-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #484751;
}

#notification-close-btn:hover {
  color: #f21970;
}

/* Skrytý stav */
.hidden {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* 📢 Media Queries */
@media only screen and (max-width: 768px) {
  #notification-dropdown {
    top: 0;
    right: 0;
    padding-top: 35px;
    margin-top: 25vh;
  }

  #notification-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }
}

@media only screen and (min-width: 769px) {
  #notification-dropdown {
    width: 60%;
    max-width: 600px;
    height: auto;
    max-height: 80vh;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
    overflow-y: auto;
    margin-top: 15vh;
  }
}

#notification-dropdown ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#notification-dropdown li {
      padding: 25px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    display: flex;
    font-weight: 500;
    align-items: center;
    flex-direction: column;

}
}
#notification-dropdown li a {
  text-decoration: none;
  color: #333;
  width: 100%;
}

#notification-dropdown li a:hover {
  color: #f21970;
}

#notification-dropdown p {
  text-align: center;
  font-size: 16px;
  color: #666;
  padding: 15px;
}

.notification-item {
    list-style: none;
    margin: 8px 0;
}

/* 🔴 NEPREČÍTANÉ SPRÁVY - Zvýraznené, obdĺžnik */
.notification-item.unread {
  background-color: #f2f2f2 !important;
  color: #333 !important;
  border: 2px solid #999 !important;
  padding: 12px !important;
  border-radius: 6px !important;
  font-weight: bold !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-weight: 500 !important;
}

/* 🔵 PREČÍTANÉ SPRÁVY - Normálne, bez zvýraznenia */
.notification-item.read {
  background-color: transparent !important;
  color: #777 !important;
  border: none !important;
  opacity: 0.7 !important;
  font-weight: normal !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}


/* 🔧 Hlavička notifikácií - centrovanie */
#notification-header {
  display: flex;
  align-items: center;
  justify-content: center; /* Centrovanie obsahu */
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 15px;
     gap: 10px;
    margin-bottom: -30px;
}

/* 🔢 Counter v hlavičke draweru */
#notification-drawer-counter {
  font-size: 14px;
  font-weight: bold;
  color: #f21970 !important;
  display: inline-block;
}


.notification-button {
    display: inline-block;
    background-color: rgb(55 148 75); /* Primárna farba */
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 6px;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 15px;
    width: 120px;
}


