.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

/* ===== SYMBOL SIZES ===== */
.symbol-small {
  width: 18px;
  height: auto;
  display: inline-block;
}

.symbol-medium {
  width: 20px;
  height: auto;
  display: inline-block;
}

.symbol-big {
  width: 26px;
  height: auto;
  display: inline-block;
}

/* ===== FONT SIZES ===== */
.font-small {
  font-size: 12px;
  margin: 0;
}

.font-medium {
  font-size: 14px;
  margin: 0;
}

.font-big {
  font-size: 22px;
  margin: 0;
}

/* ===== PRICE ITEMS ===== */
.lp-price-item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 0;
  color: var(--color-text-primary);
  line-height: 1;
}

.lp-euro-price {
  color: #5ba831;
  font-weight: 600;
  line-height: 1;
}

.lp-crypto-price {
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1;
}

/* ===== CRYPTO LINE ===== */
.crypto-line {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 13px;
  line-height: 1.1;
}
.crypto-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.crypto-line:first-child {
  padding-top: 0;
}
.crypto-line img {
  flex-shrink: 0;
}
.crypto-line .crypto-amount {
  color: var(--color-text-primary);
  font-weight: 500;
  font-family: 'Courier New', monospace;
  line-height: 1;
}

/* ===== TOOLTIP (PAYMENT HOVER) ===== */
.tooltip {
  position: relative;
  display: inline-block;
  width: 100%;
}

.tooltip .tooltiptext {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-height: 170px;
  background: rgba(34, 34, 34, 0.95);
  color: white;
  text-align: center;
  border-radius: 4px;
  padding: 12px 10px;
  z-index: 50;
  transition: opacity 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: 1.05em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: default;
  backdrop-filter: blur(4px);
}

.tooltip:hover .tooltiptext,
.tooltip:focus .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.tooltip:focus-within .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ===== PAYMENT SYMBOLS ===== */
.lp-tag img {
  vertical-align: middle;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .symbol-small {
    width: 16px;
  }

  .symbol-medium {
    width: 18px;
  }

  .symbol-big {
    width: 22px;
  }

  .font-small {
    font-size: 11px;
  }

  .font-medium {
    font-size: 12px;
  }

  .font-big {
    font-size: 18px;
  }

  .crypto-line {
    font-size: 11px;
    gap: 3px;
  }

  .tooltip .tooltiptext {
    min-height: 150px;
    padding: 10px;
    font-size: 0.95em;
  }
}
@media (max-width: 600px) {
  .symbol-small {
    width: 14px;
  }

  .symbol-medium {
    width: 16px;
  }

  .symbol-big {
    width: 20px;
  }

  .font-small {
    font-size: 10px;
  }

  .font-medium {
    font-size: 11px;
  }

  .font-big {
    font-size: 16px;
  }

  .crypto-line {
    font-size: 10px;
    padding: 3px 0;
  }

  .lp-price-item {
    flex-wrap: wrap;
  }

  .tooltip .tooltiptext {
    min-height: 120px;
    padding: 6px;
    font-size: 0.9em;
  }
}
/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  .tooltip .tooltiptext {
    background: rgba(34, 34, 34, 0.98);
  }
}
html[data-theme="dark"] .tooltip .tooltiptext {
  background: rgba(34, 34, 34, 0.98) !important;
}
