.ak-surcharge-hidden-select { 
  position: absolute !important; 
  opacity: 0 !important; 
  pointer-events: none !important; 
  height: 0 !important; 
}

.ak-surcharge-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 8px;
}

.ak-surcharge-tile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: box-shadow .2s, border-color .2s;
}

.ak-surcharge-tile:hover {
  border-color: #67a8c7;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.ak-surcharge-tile.is-active {
  border-color: #65c602;
  box-shadow: 0 8px 18px rgba(17,24,39,.12);
}

.ak-surcharge-icons {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* zabrání překrytí – kromě tlačítka */
}

.ak-icon-check {
    font-size: 15px;
    color: #65c603;
    opacity: 0;
    transition: opacity .2s;
    margin: 9px;
    border-radius: 100%;
    background: #8aeaad5e;
    width: 23px;
    height: 23px;
    padding-left: 6px;
}

.ak-icon-close {
    font-size: 11px;
    color: #dc2626;
    background: #fff;
    border-radius: 50%;
    border:unset;
    width: 23px;
    height: 23px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
}

.ak-surcharge-tile.is-active .ak-icon-check { opacity: 1; }
.ak-surcharge-tile.is-active .ak-icon-close { opacity: 1; }

.ak-surcharge-img {
  flex: 0 0 130px;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ak-surcharge-img img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
}

.ak-surcharge-text { flex: 1 1 auto; min-width: 0; }
.ak-surcharge-title { font-weight: 600; font-size: 14px; line-height: 1.35; margin-bottom: 4px; }
.ak-surcharge-price {
    font-weight: 600;
    font-size: 14px;
    color: #73c80a;
    background: #eff6f2;
    padding: 0px 10px;
    max-width: 55%;
    border-radius: 40px;
    text-align: right;
}