/* ======================================================
   MANPOP – finální CSS
   - vzhled info boxu
   - tooltip (ikona i)
   - striktní skrytí položky poplatku (košík + checkout)
====================================================== */


/* =====================
   INFO BOX
===================== */
#app-fee-box {
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  padding: 16px;
  margin: 16px 0;
  font-size: 14px;
  position: absolute;
  border-radius: 6px;
}

#app-fee-box.is-hidden {
  display: none !important;
}


/* =====================
   HEADER (název vlevo / i vpravo)
===================== */
#app-fee-box .fee-box__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 8px;
}



/* =====================
   TEXT
===================== */
#app-fee-box .fee-box__text {
  margin-bottom: 10px;
  color: #333;
}

#app-fee-box .fee-box__row {
  display: inline-flex;
  gap: 6px;
  justify-content: space-between;
  font-weight: 600;
}


/* =====================
   TOOLTIP (ikona i)
===================== */
#app-fee-box .app-tooltip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
}

#app-fee-box .app-tooltip__icon {
  width: 18px;
  height: 18px;
  display: block;
  opacity: 0.6;
  color: green;
}

#app-fee-box .app-tooltip:hover .app-tooltip__icon {
  opacity: 1;
}

#app-fee-box .app-tooltip__bubble {
    display: none;
    position: absolute;
    top: 10%;
    left: 160%;
    right: 0;
    background: #333;
    color: #fff;
    padding: 8px 10px;
    font-size: 12px;
    width: 350px;
    z-index: 10;
    border-radius: 6px;
    text-align: left;
}

#app-fee-box .app-tooltip:hover .app-tooltip__bubble,
#app-fee-box .app-tooltip:focus-within .app-tooltip__bubble {
  display: block;
}


/* ======================================================
   STRIKTNÍ SKRYTÍ POLOŽKY POPLATKU
   ❗ uprav data-micro-sku podle svého ID
====================================================== */

/* primární způsob – nejčistší */
.in-cart [data-micro-sku="1454"],
.in-checkout [data-micro-sku="1454"] {
  display: none !important;
}

/* fallback – pokud JS přidá třídu */
.is-fee-row {
  display: none !important;
}


/* ======================================================
   UI LOCK – i kdyby nebylo skryté
====================================================== */
.cart-item.manipulation-fee,
.cart-row.manipulation-fee {
  pointer-events: none;
  opacity: 0.6;
}

/* skrýt křížek */
.cart-item.manipulation-fee .remove,
.cart-item.manipulation-fee .cart-remove,
.cart-item.manipulation-fee a[title*="Odebrat"] {
  display: none !important;
}

/* skrýt množství */
.cart-item.manipulation-fee input,
.cart-item.manipulation-fee .quantity {
  display: none !important;
}
