* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background-color: #f2f2fb;
  color: #333;
}
button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: inherit;
}
.app {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.location-request {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.location-request__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.location-request__modal {
  position: absolute;
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 1001;
  animation: slideUp 0.3s ease-out;
}
.location-request__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.location-request__description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}
.location-request__button {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.location-request__button--primary {
  background-color: #2563eb;
  color: white;
  margin-bottom: 20px;
}
.location-request__button--primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.location-request__button--primary:active {
  transform: translateY(0);
}
.location-request__instructions {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: left;
  animation: fadeIn 0.3s ease-out;
}
.location-request__instructions-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.location-request__instruction-item {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 6px;
}
.location-request__instruction-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2563eb;
}
.location-request__instruction-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.map-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: transparent;
  height: 100vh;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}
.map-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 12px solid white;
}
.map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100% !important;
  height: 100% !important;
  border-radius: 15px;
}
.leaflet-container {
  font-family: inherit;
  width: 100% !important;
  height: 100% !important;
}
.leaflet-control-attribution {
  opacity: 0.6;
  font-size: 10px;
}
.leaflet-top.leaflet-left {
  top: auto !important;
  left: auto !important;
  bottom: 20px !important;
  right: 20px !important;
}
.leaflet-control-zoom {
  left: auto !important;
  right: 0 !important;
  top: auto !important;
  bottom: 0 !important;
  margin: 0 !important;
}
.map-header {
  background-color: transparent;
  padding: 0 0 20px 0;
  text-align: center;
}
.map-header__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
.test-coordinates {
  position: absolute;
  top: 20px;
  left: 240px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}
.test-coordinates__input {
  min-width: 200px;
  padding: 12px 16px;
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  font-family: "Courier New", monospace;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.test-coordinates__input:hover {
  border-color: #f9c1c1;
  box-shadow: 0 4px 12px rgba(249, 193, 193, 0.3);
}
.test-coordinates__input:focus {
  outline: none;
  border-color: #f9c1c1;
  box-shadow: 0 0 0 3px rgba(249, 193, 193, 0.2);
}
.test-coordinates__input::placeholder {
  color: #999;
}
.test-coordinates__button {
  padding: 12px 20px;
  background-color: white;
  color: #333;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.test-coordinates__button:hover {
  border-color: #f9c1c1;
  box-shadow: 0 4px 12px rgba(249, 193, 193, 0.3);
  transform: translateY(-2px);
}
.test-coordinates__button:active {
  transform: translateY(0);
}
.category-dropdown {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 50;
  min-width: 200px;
}
.category-dropdown__select {
  display: none;
}

.my-location-btn {
  position: absolute;
  bottom: 20px;
  z-index: 50;
  width: 44px;
  height: 44px;
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  left: 20px;
}
.my-location-btn svg {
  width: 22px;
  height: 22px;
  color: #0066ff;
}
.my-location-btn:hover {
  background-color: #f0f7ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
}
.my-location-btn:active {
  transform: translateY(0);
}

.expand-search-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 50;
}
.expand-search-btn__button {
  background-color: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
  transition: all 0.3s ease;
  border: none;
}
.expand-search-btn__button span {
  display: none;
}

.expand-search-btn__button:hover {
  background-color: #059669;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}
.expand-search-btn__button:active {
  transform: translateY(0);
}
.select2-container--default .select2-selection--single {
  background-color: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  height: auto;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.select2-container--default .select2-selection--single:hover {
  border-color: #f9c1c1;
  box-shadow: 0 4px 12px rgba(249, 193, 193, 0.3);
}
.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: #f9c1c1;
  box-shadow: 0 0 0 3px rgba(249, 193, 193, 0.2);
  outline: none;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 12px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #333 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -5px;
  margin-top: -3px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #333 transparent;
  border-width: 0 5px 6px 5px;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 300px;
  overflow-y: auto;
}
.select2-dropdown {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 4px;
}
.select2-container--default .select2-results__option {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #f9c1c1;
  color: #333;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #f9c1c1;
  color: #333;
}
.select2-container--default
  .select2-results__option[aria-selected="true"]:hover {
  background-color: #f7a8a8;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #666;
}
.loading-state {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background-color: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-state p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.custom-shop-marker {
  background: transparent;
  border: none;
}
.shop-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  background: transparent;
}
.shop-marker__pin {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.shop-marker__pin-img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.shop-marker__categories {
  display: flex;
  gap: 4px;
  margin-top: 4px;
  flex-wrap: wrap;
  max-width: 80px;
  justify-content: center;
}
.category-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.radius-status {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 25;
  font-size: 14px;
  font-weight: 500;
}
.radius-status__text {
  color: #333;
}
.shop-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}
.shop-popup--positioned {
  display: block !important;
  align-items: unset;
  justify-content: unset;
}
.shop-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.popup__content {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: 350px;
  max-width: 90vw;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  animation: popIn 0.3s ease-out;
  pointer-events: all;
  margin-top: -40px;
}
.popup__content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.shop-popup--positioned .popup__content {
  position: relative;
  transform: none !important;
}
.popup__close,
.shop-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  font-size: 17px;
  padding-bottom: 1px;
  color: #666;
  border-radius: 50%;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 400;
  line-height: 1;
  z-index: 10;
  border: none;
}
.popup__close:hover,
.shop-popup__close:hover {
  background-color: #e5e5e5;
  color: #333;
  transform: scale(1.1);
}
.popup-header {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.popup-header__icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
}
.popup-header__content {
  flex: 1;
}
.popup-header__label {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}
.popup-header__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}
.popup-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-products__label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.popup-products__circles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.product-circle {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-circle img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.product-circle__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  user-select: none;
}
.product-circle__icon img {
  width: 100%;
  height: 100%;
}
.product-circle--old {
  opacity: 0.55;
}
.product-circle--old:hover {
  opacity: 0.7;
}
.product-circle:hover {
  transform: scale(1.1);
}
.product-circle:hover img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-circle::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1000;
}
.product-circle::before {
  content: "";
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 1000;
}
.product-circle:hover::after,
.product-circle:hover::before {
  opacity: 1;
}
.no-shops-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}
.no-shops-dialog[style*="display: flex"] {
  pointer-events: all;
}
.no-shops__content {
  position: relative;
  background: white;
  background-image: url("../assets/wave.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: popIn 0.3s ease-out;
}
.no-shops__icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 20px;
}
.no-shops__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
}
.no-shops__text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}
.no-shops__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.no-shops__button {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}
.no-shops__button--primary {
  background-color: #f9c1c1;
  color: #333;
}
.no-shops__button--primary:hover {
  background-color: #f7a9a9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 193, 193, 0.4);
}
.no-shops__button--secondary {
  background-color: #f5f5f5;
  color: #666;
}
.no-shops__button--secondary:hover {
  background-color: #e5e5e5;
  color: #333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.notify-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 110;
}
.notify-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.notify-popup__content {
  position: relative;
  background-color: white;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 450px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 111;
  text-align: center;
  animation: popIn 0.3s ease-out;
}
.notify-popup__check {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  animation: scaleIn 0.3s ease-out;
}
.notify-popup__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.notify-popup__text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.message {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #10b981;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 200;
  animation: slideInRight 0.3s ease-out;
}
.message--error {
  background-color: #ef4444;
}
.message--warning {
  background-color: #f59e0b;
}
.button {
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.button--primary {
  background-color: #2563eb;
  color: white;
}
.button--primary:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.button--secondary {
  background-color: #e5e7eb;
  color: #333;
}
.button--secondary:hover {
  background-color: #d1d5db;
  transform: translateY(-2px);
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .map-container {
    padding: 10px;
  }
  .map-wrapper {
    border-radius: 16px;
    border: 8px solid white;
  }
  .map {
    border-radius: 16px;
  }
  .map-header {
    padding: 0 0 15px 0;
  }
  .map-header__title {
    font-size: 20px;
  }
  .test-coordinates {
    top: 70px;
    left: 15px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-width: calc(100% - 30px);
  }
  .test-coordinates__input {
    padding: 10px 12px;
    font-size: 12px;
    min-width: auto;
    width: 100%;
  }
  .test-coordinates__button {
    padding: 10px 12px;
    font-size: 12px;
  }
  .category-dropdown {
    top: 15px;
    left: 15px;
    min-width: 180px;
  }
  .radius-status {
    left: 20px;
    bottom: 20px;
  }
  .location-request__modal {
    padding: 30px 20px;
  }
  .location-request__title {
    font-size: 22px;
  }
  .popup__content,
  .no-shops__content,
  .notify-popup__content {
    padding: 30px 20px;
  }
  .popup-header {
    flex-direction: column;
    gap: 12px;
  }
  .popup-header__icon {
    font-size: 32px;
  }
  .popup-header__title {
    font-size: 18px;
  }
  .popup-products {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .product-circle {
    width: 44px;
    height: 44px;
  }
  .product-circle__icon {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .map-container {
    padding: 8px;
  }
  .map-wrapper {
    border-radius: 12px;
    border: 6px solid white;
  }
  .map {
    border-radius: 12px;
  }
  .map-header {
    padding: 0 0 10px 0;
  }
  .location-request__modal {
    width: 95%;
    padding: 25px 15px;
  }
  .location-request__title {
    font-size: 18px;
  }
  .map-header__title {
    font-size: 18px;
  }
  .test-coordinates {
    top: 60px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-width: calc(100% - 24px);
  }
  .test-coordinates__input {
    padding: 8px 10px;
    font-size: 11px;
    min-width: auto;
    width: 100%;
  }
  .test-coordinates__button {
    padding: 8px 10px;
    font-size: 11px;
  }
  .category-dropdown {
    top: 12px;
    left: 12px;
    min-width: 150px;
  }
  .select2-container--default .select2-selection--single {
    padding: 10px 12px;
    font-size: 13px;
  }
  .radius-status {
    left: 18px;
    bottom: 18px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .popup-header__icon {
    font-size: 28px;
  }
  .popup-header__title {
    font-size: 16px;
  }
  .popup-products__label {
    font-size: 14px;
  }
  .product-circle {
    width: 40px;
    height: 40px;
  }
  .product-circle__icon {
    width: 20px;
    height: 20px;
  }
  .no-shops__content {
    padding: 30px 20px;
  }
  .no-shops__icon {
    font-size: 48px;
    margin-bottom: 16px;
  }
  .no-shops__title {
    font-size: 22px;
  }
  .no-shops__text {
    font-size: 14px;
  }
  .no-shops__button {
    padding: 12px 20px;
    font-size: 14px;
  }
}
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background-color: #10b981;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: all;
  min-width: 250px;
}
.toast--error {
  background-color: #ef4444;
}
.toast--info {
  background-color: #3b82f6;
}
.toast--warning {
  background-color: #f59e0b;
}
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
  }
  .toast {
    min-width: auto;
    width: 100%;
  }
  .expand-search-btn {
    top: 12px;
    right: 10px;
  }
  .expand-search-btn__button {
    padding: 9px 7px;
    font-size: 0px;
  }
  .expand-search-btn__button span {
    display: inline-block;
    font-size: 13px;
  }
}

@media all and (max-width: 500px) {
  .popup__content {
    padding: 15px;
  }
}