/* ==========================================================
   TUZEXOVKY.CZ – Product & Bundle Components
   Verze: 1.0
   Použití: Shoptet vlastní CSS / externí soubor
   ========================================================== */

/* Bootstrap Icons */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


/* ==========================================================
   PRODUCT SECTION TITLES
   ========================================================== */

.product-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 15px;
  padding: 14px 18px;
  background: #f5f6f8;
  border-radius: 13px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.product-section-title i {
  flex: 0 0 auto;
  color: #fa7d9d;
  font-size: 21px;
  line-height: 1;
}


/* ==========================================================
   INFO BOXES / PRODUCT WARNINGS
   ========================================================== */

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 15px 0;
  padding: 15px 18px;
  border-radius: 13px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.info-box i {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1.35;
}

/* Energy drink */
.info-box.energy {
  background: #99d9d9;
  color: #1f1f1f;
}

/* Chlazené nápoje */
.info-box.chilled {
  background: #eaf8fb;
  color: #1f1f1f;
}

/* Kyselé sladkosti */
.info-box.sour {
  background: #fff3cd;
  color: #5f4500;
}

/* Chipsy v tubě / přeprava */
.info-box.chips {
  background: #fa7d9d;
  color: #1f1f1f;
}

/* Skladování */
.info-box.storage {
  background: #f5f6f8;
  color: #333;
}

/* Vlastní upozornění */
.info-box.custom {
  background: #99d9d9;
  color: #1f1f1f;
}


/* ==========================================================
   NUTRIČNÍ TABULKA
   ========================================================== */

.nutricni-tabulka {
  width: 100%;
  max-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 15px 0;
  overflow: hidden;
  border: 1px solid #e6e8eb;
  border-radius: 13px;
  background: #fff;
}

.nutricni-tabulka td {
  padding: 11px 14px;
  border-bottom: 1px solid #e6e8eb;
}

.nutricni-tabulka tr:last-child td {
  border-bottom: 0;
}

.nutricni-tabulka td:first-child {
  font-weight: 600;
}

.nutricni-tabulka td:last-child {
  text-align: right;
  font-weight: 700;
}

.nutricni-tabulka tr:first-child td {
  background: #f5f6f8;
  font-weight: 800;
}


/* ==========================================================
   PRODUCT BUNDLE
   ========================================================== */

.product-bundle {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.bundle-item {
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  color: #222;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  background: #fff;
  transition: all 0.2s ease;
}

.bundle-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.bundle-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.bundle-item span {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}


/* ==========================================================
   MOBILE BUNDLE SLIDER
   ========================================================== */

@media (max-width: 480px) {
  .bundle-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .bundle-item {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }

  .bundle-grid::-webkit-scrollbar {
    display: none;
  }
}
