  /* Základ lišty */
  .tvan {
    position: relative;
    width: 100%;
    z-index: 20;
    display: block;
    box-sizing: border-box;
  }

  /* Barva pozadí */
  .tvan--bar {
    background-color: #FBF8F6;
    color: #cb997e;
  }

  /* Obsah uvnitř lišty */
  .tvan__overlay {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
  }

  .tvan__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
  }

  .tvan__text {
    font-weight: 600;
    font-size: 16px;
    color: #cb997e;
    line-height: 1.3;
  }

  /* Zvýraznění kódu */
  .tvan__code {
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(203, 153, 126, 0.5);
    background: rgba(203, 153, 126, 0.12);
    color: #cb997e;
    display: inline-block;
    white-space: nowrap;
  }

  .tvan__timer-wrapper {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 16px;
    color: #cb997e;
  }

  .tvan__countdown {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }

  @media (min-width: 768px) {
    .tvan__overlay {
      padding: 12px 24px;
    }
    .tvan__text {
      font-size: 18px;
    }
    .tvan__timer-wrapper {
      font-size: 18px;
    }
  }

  @media (max-width: 767px) {
    .tvan__row {
      gap: 4px;
    }

    .tvan__text {
      width: 100%;
      font-size: 15px;
      margin-bottom: 2px;
    }

    .tvan__timer-wrapper {
      font-size: 15px;
      font-weight: 600;
    }
  }