.language-dropdown {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

.language-button {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.language-button img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
}

.language-button span {
  font-weight: 600;
  color: #333;
  margin-right: 5px;
  font-size: 14px;
}

.language-button svg {
  width: 12px;
  height: 12px;
  transform: rotate(180deg);
  /* yukarı ok */
  transition: transform 0.3s;
}

.language-options {
  position: absolute;
  bottom: 110%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  min-width: 120px;
  padding: 4px 0;
}

.language-options div {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.language-options div:hover {
  background: #f1f1f1;
}

.language-options img {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  border-radius: 2px;
}

/* pay button selectable */
.selectable-div {
  cursor: pointer;
  transition: all 0.3s ease;
}

.selectable-div input[type='radio'] {
  display: none;
}

.selectable-div input[type='radio']:checked + label {
  border: 4px solid rgba(7, 64, 197, 0.84) !important;
  border-radius: 5px;
}

.selectable-div:hover label {
  box-shadow: 0 4px 6px rgba(3, 18, 156, 0.89);
  transform: translateY(-2px);
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  --moz-appearance: textfield;
}

/* Select2 Premium Styles */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    height: 45px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.select2-container--default .select2-selection--single:hover {
    border-color: #3554D1;
    box-shadow: 0 0 0 3px rgba(53, 84, 209, 0.1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #697488;
    line-height: 45px;
    padding-left: 15px;
    font-size: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    right: 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #3554D1;
    color: white;
}

.select2-dropdown {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border-color: #3554D1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(53, 84, 209, 0.1);
}

.select2-container--default .select2-results__option {
    padding: 10px 15px;
    font-size: 14px;
    color: #697488;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #f8f9fa;
    color: #3554D1;
}

.select2-container--default .select2-selection--single:focus {
    border-color: #3554D1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(53, 84, 209, 0.1);
}

.bg-color-2{
    background-color: #163c8c !important;
}

.w-80{
    height: 60vh !important;
}

.item-center{
    justify-content: center !important;
}

.top-text{
    color: #000 !important;
}

.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: slideInRight 0.8s ease-out, glowPulse 2.5s infinite;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-widget:hover {
  background-color: #1ebea5;
  transform: scale(1.05);
}

.whatsapp-icon svg {
  display: block;
  width: 34px;
  height: 50px;
  fill: white;
}