/* ===== MP Bundle Box v0.6 – desktop + opravený mobil ===== */
/* Soubor: mp-bundle-box-v06.css */

#mp-bundle-box {
  width: 100%;
  max-width: 560px;
  margin: 24px 0 22px;
  padding: 22px;
  border: 1px solid #ffd3bd;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff8f3 0%, #ffffff 100%);
  box-shadow: 0 14px 35px rgba(255, 92, 31, 0.08), 0 8px 24px rgba(0,0,0,0.05);
  font-family: inherit;
  box-sizing: border-box;
  user-select: none;
  clear: both;
}

#mp-bundle-box * {
  box-sizing: border-box;
}

.mp-bundle-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.mp-bundle-title h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: #202230;
}

.mp-bundle-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f6f8;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
}

.mp-bundle-price {
  text-align: right;
  white-space: nowrap;
}

.mp-bundle-save {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dcf8e7;
  color: #168237;
  font-size: 13px;
  font-weight: 800;
}

.mp-bundle-old-price {
  display: block;
  margin-top: 10px;
  color: #98a2b3;
  font-size: 14px;
  text-decoration: line-through;
}

.mp-bundle-final-price {
  display: block;
  margin-top: 2px;
  color: #202230;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.mp-bundle-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mp-bundle-row {
  width: 100%;
  display: grid;
  grid-template-columns: 52px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #e7e9ef;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 5px 16px rgba(0,0,0,0.045);
  transition: 0.2s ease;
  font-family: inherit;
  color: inherit;
}

.mp-bundle-row:hover {
  border-color: #ff5a1f;
  box-shadow: 0 10px 24px rgba(255, 92, 31, 0.13);
  transform: translateY(-1px);
}

.mp-bundle-row:focus {
  outline: 2px solid rgba(255, 90, 31, 0.25);
  outline-offset: 2px;
}

.mp-bundle-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f4f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5a1f;
  font-size: 22px;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}

.mp-bundle-row-title {
  display: block;
  margin-bottom: 4px;
  color: #202230;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.mp-bundle-row-desc {
  display: block;
  color: #667085;
  font-size: 14px;
  line-height: 1.25;
}

.mp-bundle-arrow {
  color: #202230;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}

.mp-bundle-plus {
  width: 28px;
  height: 28px;
  margin: -2px auto;
  border-radius: 50%;
  background: #fff;
  color: #ff5a1f;
  border: 1px solid #ffd3bd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

.mp-bundle-cta {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #ff7a00 0%, #ff4b13 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(255, 92, 31, 0.30);
  transition: 0.2s ease;
  font-family: inherit;
}

.mp-bundle-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.mp-bundle-cta:focus {
  outline: 2px solid rgba(255, 90, 31, 0.25);
  outline-offset: 2px;
}

.mp-bundle-benefits {
  margin-top: 16px;
  text-align: center;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.mp-bundle-benefits span {
  display: inline-block;
  margin: 0 6px;
}

/* Mobil: box bude vždy normální blok pod produktovou horní částí, ne vedle fotky */
@media (max-width: 768px) {
  #mp-bundle-box {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 18px 10px 24px !important;
    padding: 16px !important;
    border-radius: 16px;
    clear: both !important;
    float: none !important;
    display: block !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  .mp-bundle-header {
    display: block;
    margin-bottom: 14px;
  }

  .mp-bundle-title h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .mp-bundle-subtitle {
    font-size: 12px;
  }

  .mp-bundle-price {
    margin-top: 12px;
    text-align: left;
  }

  .mp-bundle-save {
    font-size: 12px;
    padding: 5px 10px;
  }

  .mp-bundle-old-price {
    display: inline-block;
    margin: 10px 10px 0 0;
  }

  .mp-bundle-final-price {
    display: inline-block;
    font-size: 25px;
  }

  .mp-bundle-row {
    grid-template-columns: 44px 1fr 18px;
    gap: 10px;
    padding: 12px;
    border-radius: 13px;
  }

  .mp-bundle-thumb {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
  }

  .mp-bundle-row-title {
    font-size: 15px;
  }

  .mp-bundle-row-desc {
    font-size: 12px;
  }

  .mp-bundle-plus {
    width: 24px;
    height: 24px;
    font-size: 17px;
  }

  .mp-bundle-cta {
    min-height: 52px;
    font-size: 14px;
    border-radius: 13px;
  }

  .mp-bundle-benefits {
    font-size: 12px;
  }

  .mp-bundle-benefits span {
    margin: 0 3px;
  }
}
