/* Hlavní kontejner pro Sticky lištu */
#pene-sticky-cart {
  position: fixed;
  bottom: -100px; 
  left: 0;
  width: 100%;
  height: 75px;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  z-index: 9999;
  display: none; 
  align-items: center;
  justify-content: center;
  transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 15px;
  box-sizing: border-box;
  border-top: 1px solid #f2ece6;
}

/* Třída používaná pro zobrazení lišty */
#pene-sticky-cart.is-visible {
  display: flex;
  bottom: 0;
}

.sticky-cart-inner {
  max-width: 1140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.sticky-product-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}

#sticky-title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 450px;
}

#sticky-price-val {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  margin-top: 2px;
}

/* Tlačítko s českým textem (text se mění v HTML/JS) */
.sticky-add-btn {
  background-color: #a1c900;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(161, 201, 0, 0.2);
}

.sticky-add-btn:hover {
  background-color: #84b517;
  transform: translateY(-2px);
}

/* Mobilní verze */
@media (max-width: 767px) {
  .sticky-product-info { display: none !important; }  
  .sticky-cart-inner { justify-content: center; }
  #pene-sticky-cart { height: 70px; }
  .sticky-add-btn { width: 100%; font-size: 15px; }
}