.hero__right {
    width: 50%;
}
@media (max-width: 768px) {
  .hero__right{
    width: 100%;
  }
}

.exchange-widget {
  position: relative;
  padding: 24px;
  background: rgba(3, 8, 27, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  overflow: hidden;
}

.exchange-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    url('../../img/cripto/hero_cripto/bg_2.png'),
    url('../../img/cripto/hero_cripto/bg_1.png');
  background-position: left center, right bottom;
  background-repeat: no-repeat;
  background-size: 50% auto, 40% auto;
  z-index: 0;
  opacity: 0.4; 
}

.exchange-widget > * {
  position: relative;
  z-index: 1;
}

/* Секції "From" та "To" */
.from-section, .to-section {
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 8px;
  color: #6B7280;
  font-size: 14px;
}

.currency-selector {
  display: flex;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}


.amount-input, .amount-output {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 16px;
}

.amount-output {
  background: #F9FAFB;
}

/* Інформація про баланс */
.currency-info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #6B7280;
}

.max-btn {
  color: #4F46E5;
  cursor: pointer;
}

/* Іконка обміну */
.swap-icon {
    position: absolute;
  left: 45%;

}

.swap-icon img {
  width: 50px;
  height: 50px;
  cursor: pointer;
}

/* Поле адреси */
.address-section {
  margin: 20px 0;
}

.address-section label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #6B7280;
}

.address-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
}

/* Інформація про курс */
.rate-info {
  text-align: center;
  margin: 16px 0;
  color: #6B7280;
  font-size: 14px;
}

/* Кнопка обміну */
.swap-button {
  width: 100%;
  padding: 14px;
  background: #4F46E5;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  box-sizing: border-box;
  text-align: center;
}

.swap-button:hover {
  background: #4338CA;
}

/* Умови використання */
.terms {
  margin-top: 16px;
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}

.terms a {
  color: #4F46E5;
  text-decoration: none;
}

.currency-selector {
    background-color: rgba(255, 255, 255, 0.04);
    height: 40px;
    width: 100%;
}