.tour-inner-header-price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding-right: 20px;
  padding-left: 20px;
  border-left: 1px solid #e2e2e2;
  justify-content: center;
}

.tour-inner-header-price {
  border-left: none;
  padding-left: 0;
  padding-right: 0;
}

.currency-dropdown {
  position: relative;
  user-select: none;
  cursor: pointer;
}

.currency-current {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  padding: 2px 6px;
  border-radius: 4px;
  background: #f0f0f0;
  transition: all 0.2s ease;
}

.currency-current:hover {
  background: #ebebeb;
}

.currency-current svg {
  transition: transform 0.3s ease;
}

.currency-dropdown.active .currency-current svg {
  transform: rotate(180deg);
}

.currency-list {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 100px;
}

.currency-dropdown.active .currency-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-item {
  padding: 10px 14px;
  font-size: 14px;
  color: #666;
  transition: all 0.2s;
  white-space: nowrap;
}

.currency-item:hover {
  background: #f9f9f9;
  color: #67b500;
}

.currency-item.active {
  background: #f0f7e6;
  color: #67b500;
  font-weight: 600;
}

@media (min-width: 1280px) {
  .tour-inner-header {
    z-index: 10;
    overflow: visible;
  }

  .tour-inner-header-container,
  .tour-inner-header-cart-wrp,
  .tour-inner-header-price-container,
  .currency-dropdown {
    overflow: visible;
  }
}
