@import 'fonts.css';
@import 'working_hours.css';
@import 'header.css';
@import 'index.css';
@import 'about_us.css';

h1, h2, h3, h4, h5, h6, p, a {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

a{
    text-decoration: none;
}
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    body {
        overscroll-behavior-x: none;
    }
}
/* Общие стили */
body {
    background: #F5F5F5 !important;
    width: 100%;
    position: relative;
}
body, button, input, textarea, select {
  font-family: 'Inter', sans-serif !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.block-header{
    font-weight: 600 !important;
}



/* Стили для футера (footer.html) */
.footer {
  background-color: #1A1A2B;
  color: #ffffff;
  border-radius: 32px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer > .footer-container:first-child {
  padding: 3rem 1rem 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 80px;
}

.logo h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  text-transform: lowercase;
}

.logo-accent {
  color: #f7df1e;
  font-size: 1.8rem;
}

.tagline {
    color: #EDE800;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    margin-bottom: 0;
    letter-spacing: -.04em;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(297px, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    line-height: 18px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: transparent;
    letter-spacing: -.04em;
}

.footer-links a:hover {
  color: #FFFFFFCC;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
  transition: text-decoration-color 0.3s ease-in-out;
  text-decoration-color: #FFFFFFCC;
}

/* Блог ссылки */
.blog-links a {
  display: block;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

/* Социальные сети */
.social-links {
    gap: 16px;
    display: flex;
    flex-direction: row;
    padding: 0;
    justify-content: flex-start;
}

.social-link:hover {
  text-decoration: none;
}
.social-logo{
    width: 26.6px;
    height: 26.6px;
}
/* Нижняя часть футера */
.footer-bottom {
  border-top: none;
}

.footer-bottom-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(297px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-bottom-column {
    display: flex;
    align-items: center;
    height: 14px;
    margin-bottom: 60px;
}

.copyright {
    color: #FFFFFF80;
    font-size: 14px;
    text-align: left;
    letter-spacing: -.04em;
}

.legal-link {
    text-align: left;
    color: #FFFFFF80;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: underline;
    line-height: 14px;
    letter-spacing: -.04em;
}

.legal-link:hover {
  color: #FFFFFF80;
  text-decoration: underline;
}


/* News styles */
.news-post {
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-post h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.news-post h2 a {
    color: #333;
    text-decoration: none;
}

.publication-date {
    font-size: 16px;
    font-weight: 400;
    color: #06060B80;
    margin: 0;
}

.news-post img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.news-post p {
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 15px;
}

.news-post .read-more {
    display: inline-block;
    padding: 8px 15px;
    background-color: #147ac4;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.news-post .read-more:hover {
    background-color: #0d5ea0;
}

/* Pagination styles */
.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination .step-links {
    display: inline-block;
}

.pagination .step-links a,
.pagination .step-links span {
    padding: 8px 12px;
    margin: 0 5px;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

.pagination .step-links a:hover {
    background-color: #eee;
}

.pagination .step-links .current {
    background-color: #147ac4;
    color: #fff;
    border-color: #147ac4;
}

/* Detail styles */
.news-detail {
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 0;
}

.news-detail-data{
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 13px;
    justify-content: flex-start;
    align-items: center;
    height: 22px;
}

.news-detail h1 {
    margin-bottom: 32px;
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -.04em;
    font-weight: 700;
    color: #1A1A2B;
}

.news-detail .publication-date {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.04em;
    color: #06060B80;
    margin-bottom: 0;
}

.news-detail img {
    max-width: 100%;
    height: auto;
    margin-bottom: 31px;
    border-radius: 32px;
}

.news-detail p {
    line-height: 24px;
    font-size: 18px;
    color: #1A1A2B;
    letter-spacing: -.04em;
}

.news-detail .back-to-list {
    display: inline-block;
    padding: 8px 15px;
    background-color: #555;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.news-detail .back-to-list:hover {
    background-color: #333;
}


.comment {
    display: flex; /* Use flexbox for layout */
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px !important;  /* Adjust size as needed */
    height: 50px !important;
    border-radius: 50% !important; /* Make it round */
    margin-right: 10px; /* Add some spacing */
    object-fit: cover; /* Prevents image distortion */
}

.comment p {
    margin: 0;
    margin-right: 30px;
}

.comment-date {
    font-size: 0.8em; /* Make the date smaller */
    color: #777; /* Lighter color for the date */
}

.upcoming-events {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.upcoming-events h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.event-carousel {
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    padding-bottom: 10px; /* Add some space for the scrollbar */
}

.event-list {
    display: flex; /* Arrange items horizontally */
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
    gap: 20px; /* Space between items */
    width: max-content; /* Set width to the content's width */
}

.event-item {
    width: 200px; /* Adjust as needed */
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.event-item:hover {
    transform: translateY(-5px);
}

.event-item a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.event-item img {
    width: 100%;
    height: 120px; /* Adjust as needed */
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}

.event-item h3 {
    font-size: 1em;
    margin: 10px 0;
}

.event-item p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

/* Стили для галереи фотографий */
.photo-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.photo-item {
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-item p {
    padding: 10px;
    font-size: 0.9em;
    color: #666;
}

/* Сообщения */
.messages-container {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
}

/* Форма поиска и фильтрации */
form.mb-3 {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem !important;
}

label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

/* Карточки мероприятий */
.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-body {
    flex: 1;
    padding: 1.5rem;
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.card-text {
    color: #6c757d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.card-text:last-child {
    margin-bottom: 1rem;
}

/* Пагинация */
.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.page-item .page-link {
    color: #3498db;
    border: 1px solid #dee2e6;
    margin: 0 3px;
    border-radius: 6px !important;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background-color: #3498db;
    border-color: #3498db;
}

.page-item.disabled .page-link {
    color: #6c757d;
}

/* Кнопка создания */
.btn-success {
    background-color: grey;
    border-color: grey;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

.btn-success:hover {
    background-color: #27ae60;
    border-color: #27ae60;
}


/* Изображение мероприятия */
.img-fluid {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto 2rem;
    display: block;
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Блок с информацией */
event-detail {
    margin-bottom: 1rem;
    padding: 0.8rem 1.2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
}

event-detail:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
}

/* Анимация появления */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.img-fluid, .event-detail{
    animation: fadeIn 0.6s ease forwards;
}

event-detail:nth-child(1) { animation-delay: 0.1s; }
event-detail:nth-child(2) { animation-delay: 0.2s; }
event-detail:nth-child(3) { animation-delay: 0.3s; }
event-detail:nth-child(4) { animation-delay: 0.4s; }
event-detail:nth-child(5) { animation-delay: 0.5s; }
.btn-secondary { animation-delay: 0.6s; }

.places-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.places-search {
    margin-bottom: 20px;
}

.places-search input {
    padding: 8px;
    width: 300px;
    margin-right: 10px;
}

.places-filter {
    margin-bottom: 20px;
}

.place-type-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.place-type-list li {
    padding: 5px 10px;
    background: #f0f0f0;
    border-radius: 4px;
}

.place-type-list li.active {
    color: white;
}

.places-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    row-gap: 58px;
    column-gap: 10px;
}

.place-type {
    display: inline-block;
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-bottom: 10px;
}

.place-address {
    color: #06060B99;
    font-size: 14px;
    line-height: 18px;
}

.place-description {
    margin-top: 10px;
    color: #333;
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.places-add-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-bottom: 20px;
}

.place-photo {
    height: 180px;
    overflow: hidden;
    margin-bottom: 10px;
    border-radius: 4px;
}

.place-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.place-thumbnail:hover {
    transform: scale(1.03);
}

.place-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.photo-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.add-photos-form {
    margin: 30px 0;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
}

.photo-forms {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.photo-form {
    padding: 15px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-tiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Центрируем плитки */
    gap: 10px;              /* Отступы между плитками */
    margin-bottom: 20px;     /* Отступ снизу от блока */
}

.category-tile {
    display: block;          /* Делаем ссылку блочным элементом */
    padding: 10px 20px;       /* Отступы внутри плитки */
    background-color: #f0f0f0; /* Цвет фона плитки */
    border-radius: 5px;       /* Скругление углов */
    text-decoration: none;    /* Убираем подчеркивание */
    color: #333;              /* Цвет текста */
    transition: background-color 0.3s ease; /* Плавное изменение фона */
}

.category-tile:hover {
    background-color: #ddd; /* Цвет фона при наведении */
}

.category-tile span {
    display: block;          /* Чтобы текст занимал всю ширину плитки */
    text-align: center;      /* Выравниваем текст по центру */
}

.average-rating {
    font-size: 1.5em; /* Размер звезд */
    color: #ffc107; /* Цвет звезд (золотой) */
    margin-bottom: 10px;
}

.average-rating i {
    margin: 0 2px; /* Расстояние между звездами */
}

/* Specific styles for Font Awesome icons */
.average-rating .fas.fa-star { /* Full star */
    color: #ffc107; /* Gold color */
}

.average-rating .far.fa-star { /* Empty star */
    color: #ccc; /* Light gray color */
}

.average-rating .fas.fa-star-half-alt { /* Half star */
    color: #ffc107; /* Gold color */
}

/* Existing styles */

/* Styles for the rating form */
.add-review-form {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.add-review-form h3 {
    margin-bottom: 15px;
}

.add-review-form .form-group {
    margin-bottom: 15px;
}

.add-review-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.add-review-form .btn-success {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.add-review-form .btn-success:hover {
    background-color: #218838;
}

/* Rating stars styling */
div.rating {
    display: inline-block;
}

div.rating input {
    position: absolute;
    left: -9999px;
}

div.rating label {
    float: right;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    color: #ccc;
    display: inline-block;
}

div.rating label:before {
    margin: 5px;
    font-size: 1.5em;
    font-family: FontAwesome;
    display: inline-block;
    content: "\f005";
}

div.rating input:checked ~ label {
    color: #ffc107;
}

div.rating:not(:checked) > label:hover,
div.rating:not(:checked) > label:hover ~ label {
    color: #deb217;
}

div.rating > input:checked + label:hover,
div.rating > input:checked ~ label:hover,
div.rating > label:hover ~ input:checked ~ label,
div.rating > input:checked ~ label:hover ~ label {
    color: #c59b08;
}

/* Existing styles */

/* Review rating stars */
.review-rating {
    color: #ffc107; /* Gold color */
    font-size: 1em; /* Adjust size as needed */
}

.review-rating i {
    margin: 0 2px;
}

/* Стили для блока с формой подписки на рассылку */
.subscribe-section{
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #8080D8;
    background-image: url('/static/img/Group-25.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 500px;
    height: auto;
    border-radius: 32px;
    margin-bottom: 80px;
}
.subscribe-inner{
    width: 100%;
    display: flex;
    margin: 106px auto;
    padding: 0;
    max-width: 484px;
}
.subscription-widget{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
}
.subscription-widget>h3{
    font-family: Inter;
    font-weight: 600;
    font-size: 37px;
    line-height: 37px;
    letter-spacing: -4%;
    text-align: center;
    color: white;
    width: 100%;
    margin-bottom: 20px;
}
.subscription-widget>p{
    font-family: Inter;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -4%;
    text-align: center;
    color: #EDE800;
    width: 100%;
    margin-bottom: 29px;
}
.subscribe-form{
    max-width: 484px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    width: 100%;
}
.form-col{
    margin:0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 237px;
}
.subscribe-city, .subscribe-email{
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border-radius: 12px;
    border: none;
    font-family: Inter;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}
.subscribe-city-label, .subscribe-email-label{
    margin: 0;
    color: #fff;
    font-family: Inter;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    padding: 2px 4px;
}
.subscription-btn{
    width: 100%;
    margin-top: 14px;
    height: 48px;
    border: none;
    border-radius: 12px;
    background-color: black;
    color: white;
    text-align: center center;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.15s ease;
}
.subscribe-city, .form-control{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("/static/img/arrow.png");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 11px 5px;
}
.subscribe-city{
    background-color: #FFFFFFE5;
}
.subscribe-email{
    background-color: #FFFF;
}
.subscribe-email::placeholder{
    color: #B4B4B6;
}
.form-control:focus{
    color: #06060B99 !important;
    background-color: #8080D81A !important;
}


/* Кастомная форма с выпадающим списком (js) */
.new-custom-select-container {
    position: relative;
    width: 100%;
}
.new-custom-select {
    position: relative;
    cursor: pointer;
}
.new-custom-select select {
    display: none;
}
.select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    background: #FFFFFFE5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #1A1A2B;
    transition: all 0.2s ease;
    height: 48px;
}
.select-trigger:hover {
}
.select-trigger.active {
    outline: none;
    background-color: #FFFFFFE5;
    color: #06060B99;
}
.select-arrow {
    width: 12px;
    height: 7px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K') no-repeat center;
    background-size: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.select-arrow.rotated {
    transform: rotate(180deg);
}
.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0px 1px 10px 0px #0000000A;
    z-index: 1000;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-height: 300px; /* Ограничиваем высоту */
    overflow-y: auto;  /* Добавляем вертикальную прокрутку */
    scrollbar-width: thin;
}
.select-options::-webkit-scrollbar {
    width: 6px;
}
.select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.select-options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}
.select-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.select-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.select-option {
    display: block;
    width: 100%;
    height: auto;
    min-height: 32px;
    padding: 8px 12px;
    border: none;
    background: white;
    color: #333;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -4%;
    margin-top: 2px;
}
.select-option:hover {
    background-color: #8080D8;
    color: white;
}
.select-option.selected {
    background-color: #8080D8;
    color: white;
}
.select-option.selected:hover{
    color: #1A1A2B;
}
.subscription-btn:hover{
    background-color: #1A1A2B;
    transition: background-color 0.15s ease;
}
.special-select-container .select-trigger{
    background-color: #8080D80D;
    color: #06060B80;
}
.special-select-container .select-trigger.active{
    background-color: #8080D81A;
    color: #06060B99;
}

/* Скрываем стандартный input до загрузки JS */
input[type="date"].original-date-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.date-value {
    color: #06060B80;
}
.date-icon {
    font-size: 18px;
}
.original-date-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Стили для кастомного поля даты */
.custom-date-container {
    position: relative;
    width: 100%;
    display: inline-block;
}

.custom-date-trigger {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    background-color: #8080D80D;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-date-trigger:hover {
}

.custom-date-trigger.active {
    background-color: #8080D81A;
    color: #06060B80;
    transition: all 0.3s ease;
}

.date-value {
    color: #999;
}

.custom-date-trigger.has-value .date-value {
    color: #06060B80;
}

.date-arrow {
    width: 11px;
    height: 5px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K') no-repeat center;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.date-arrow.rotated {
    transform: rotate(180deg);
}



/* Стили для календаря */
.custom-datepicker {
    position: absolute;
    top: 100%;
    left: 0;
    width: 290px;
    height: 294px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    margin-top: 5px;
    padding: 10px;
    display: none;
    box-shadow: 0px 1px 10px 0px #0000000A;
}

/* Стили для диапазона дат */
.date-range-container .custom-date-trigger {
    min-width: 200px;
}

.date-range-value {
    color: #06060B80;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-datepicker.visible {
    display: block;
    min-width: 290px;
    min-height: 294px;
}

.datepicker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px;
}

.current-month {
    color: #06060B;
    font-weight: 400;
    font-size: 14px;
    font-family: Inter;
}

.current-month:first-letter{
    text-transform: uppercase;
}

.nav-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0 10px;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 400;
    margin-bottom: 5px;
}

.weekday {
    color: #8080D880;
    padding: 5px;
    font-size: 12px;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 8px;
}

.day {
    display: flex;
    color: #1A1A2B;
    height: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter';
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.day:hover {
    background-color: #8080D8;
    color: white;
}

.day.empty {
    visibility: hidden;
}

/* Фон диапазона через псевдоэлемент */
.day.in-range::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: #8080D833;
    z-index: -1;
}

/* Стартовая дата - фон идет только вправо от центра */
.day.start-date.in-range::before {
    left: 50%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

/* Финишная дата - фон идет только влево от центра */
.day.end-date.in-range::before {
    right: 50%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Если стартовая дата последняя в строке - скругляем правый край */
.day.start-date.in-range:nth-child(7n+7)::before {
    right: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Если финишная дата первая в строке - скругляем левый край */
.day.end-date.in-range:nth-child(7n+1)::before {
    left: 0;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

/* Сами выбранные даты */
.day.selected {
    background-color: #8080D8;
    color: white;
    border-radius: 8px;
    z-index: 2;
}

/* Мобильные стили */
@media (max-width: 768px) {
    .custom-datepicker {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100vw - 40px);
        max-width: 320px;
        height: auto;
        margin-top: 0;
    }

    .custom-datepicker.visible {
        min-width: unset;
        min-height: unset;
    }

    .date-range-container .custom-date-trigger {
        min-width: unset;
        width: 100%;
    }

    .datepicker-header {
        margin-bottom: 15px;
        padding: 10px 5px;
    }

    .current-month {
        font-size: 16px;
    }

    .nav-btn {
        font-size: 20px;
        padding: 0 15px;
        -webkit-tap-highlight-color: transparent;
    }

    .weekday {
        font-size: 11px;
        padding: 8px 2px;
    }

    .days {
        row-gap: 10px;
    }

    .day {
        height: 36px;
        font-size: 15px;
        -webkit-tap-highlight-color: transparent;
    }

    .day:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .custom-datepicker {
        width: calc(100vw - 20px);
        max-width: 300px;
        padding: 8px;
    }

    .current-month {
        font-size: 15px;
    }

    .weekday {
        font-size: 10px;
        padding: 6px 1px;
    }

    .day {
        height: 32px;
        font-size: 14px;
    }
}


/* Страница профиля */
.profile-container {
    max-width: 960px;
    width: 100%;
    margin: 40px auto 80px auto;
}

.profile-card {
    display: flex;
    background: white;
    padding: 32px;
    border-radius: 16px;
    width: 100%;
    height: auto;
    min-height: 363px;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 40px;
}

.profile-header {
    gap: 0;
    display:  flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 112px;
    height: 112px;
    border-radius: 16px;
    overflow: hidden;
    background: #06060B0D;
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.user-name {
    font-size: 32px;
    font-family: 'Inter';
    font-weight: 600;
    line-height: 40px;
    color: #1A1A2B;
    margin: 0;
}

.user-city {
    font-size: 16px;
    color: #8080D8CC;
    font-weight: 400;
    margin: 0;
}

.user-stats {
  display: flex;
  gap: 16px;
  text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #06060B0D;
    padding: 16px;
    border-radius: 16px;
    width: 152px;
    height: 112px;
    justify-content: space-between;
}

.stat-label {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #000;
    font-family: 'Inter';
}

.stat-value {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
    color: #1A1A2B;
    font-family: 'Inter';
}

.profile-description {
    margin: 0;
    padding: 0;
    max-width: 443px;
}

.profile-description p {
    font-size: 18px;
    color: #06060B80;
    line-height: 24px;
    font-weight: 400;
}

.edit-btn {
    margin: 0;
    width: 100%;
    height: 48px;
    background: #8080D8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    background: #7171BF;
    color: white;
}

.edit-btn:active {
  transform: translateY(0);
}

.tab-nav {
    display: flex;
    background: none;
    margin-bottom: 24px;
    border: 1px solid var(--black-100, #06060B1A);
    border-radius: 999px;
    max-width: 397px;
    height: 52px;
    padding: 8px;
    gap: 4px;
    align-items: center;
}

.tab-btn {
    border-radius: 999px;
    flex: 1;
    background: white;
    border: none;
    padding: 9px 14px;
    font-size: 18px;
    line-height: 18px;
    height: 36px;
    color: #1A1A2B;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
  color: #374151;
  background: #f1f5f9;
}

.tab-btn.active {
  color: #8080D8;
  background: #8080D81A;
}

.tab-content {
    background: white;
    display: flex;
    padding: 32px;
    border-radius: 16px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: flex;
}

.content-section h3 {
    font-family: 'Inter';
    line-height: 24px;
    font-size: 24px;
    font-weight: 500;
    color: #1A1A2B;
    margin-bottom: 24px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-icon {
    color: #8080D8;
    flex-shrink: 0;
}

.user-info-icon{
    width: 32px;
    height: 32px;
    background: #8080D81A;
    border-radius: 8px;
    padding: 5px;
}

.info-item span {
    font-size: 18px;
    line-height: 18px;
    color: #000000;
}

/* Стили для отзывов */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reviews-list .review-item:not(:last-child) {
    border-bottom: 1px solid #8080D81A;
}

.review-item.with-event {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  padding-bottom: 24px;
}

.profile-event-card{
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.profile-event-info {
    flex-grow: 1;
}

.profile-event-location{
    font-size: 14px;
    line-height: 18px;
    color: #06060B99;
}

.profile-event-date {
    color: #BBBBBB;
    font-weight: 400;
    font-family: 'Inter';
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.profile-event-category{
    font-size: 16px;
    color: #8080D8;
    margin-bottom: 8px;
    font-family: 'Inter';
}

.profile-event-title a{
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: #1A1A2B;
    margin-bottom: 8px;
    font-family: 'Inter';
    text-decoration: none;
}

.profile-event-title a:hover{
    text-decoration: none;
    color: #1A1A2B;
}

.profile-event-date svg {
    width: 18px;
    height: 18px;
}

.profile-event-image{
    position: relative;
    width: 160px;
}

.profile-event-image img{
    width: 160px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
}

.review-content {
  margin-top: 16px;
}

.review-author-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-review-add-to-favourite{
    top: 3px;
    right: 8px;
    width: 24px;
}

.profile-favourite-add-to-favourite{
    top: 14px;
    right: 16px;
}

.review-text h5{
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 4px;
    font-weight: 500;
    color: black;
}

.review-text p{
    font-size: 15px;
    color: #1A1A2B;
    line-height: 22px;
    flex: 1;
    font-weight: 400;
    margin: 0;
}

/* Стили для избранного */
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 40px;
  margin-bottom: 40px;
}

.favorite-card {
    width: 212px;
    height: 334px;
}

.fav-card-img{
    width: 212px;
    height: 212px;
}

.fav-card-image {
    position: relative;
    width: 212px;
    height: 212px;
    overflow: hidden;
    margin-bottom: 16px;
}

.fav-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card-badges {
    position: absolute;
    top: 17px;
    left: 16px;
    display: flex;
    flex-direction: row;
    gap: 2px;
}

.age-badge, .price-badge {
    background: #06060BE5;
    color: #EDE800;
    font-size: 12px;
    font-weight: 700;
    padding: 0 8px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-content-row{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.card-logo{
    max-width: 24px;
}

.card-logo img{
    width: 24px;
    height: 24px;
}

.card-content {
    padding: 0;
}

.card-category {
    line-height: 14px;
    font-size: 12px;
    color: #8080D8;
    font-weight: 400;
    margin-bottom: 8px;
}

.card-title a {
    font-size: 18px;
    font-weight: 400;
    color: #1A1A2B;
    margin-bottom: 8px;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a:hover{
    text-decoration: none;
    color: #1A1A2B;
}

.card-location {
    font-size: 12px;
    color: #06060B99;
    line-height: 12px;
}

/* Кнопка "Показать еще" */
.show-more-btn {
    width: 100%;
    height: 48px;
    background: #8080D81A;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #7171BF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-more-btn:hover {
    background: #8080D833;
    border-color: #7171BF;
}

.show-more-btn2 {
    width: 100%;
    height: 48px;
    background: #8080D81A;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #7171BF;
    cursor: pointer;
    transition: all 0.2s ease;
}

.show-more-btn2:hover {
    background: #8080D833;
    border-color: #7171BF;
}

/* Стили для отдельной страницы Избранное */
.favorites-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
}
.favorites-container h1{
    color: #1A1A2B;
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 80px;
}
.favorites-block{
    background: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 32px;
}
.favorites-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1282px;
    margin: 0 auto 80px;
    padding: 60px 0;
}
.favorites-col-events, .favorites-col-places{
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
}
.list-row{
    display: flex;
    flex-direction: row;
    row-gap: 40px;
    column-gap: 10px;
    flex-wrap: wrap;
}

#events-list{
    margin-bottom: 48px;
}

.event-card-fav-page, .place-card-fav-page{
    display: flex;
    width: 313px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
}
.favorites-header h2, .favorites-col-places h2{
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    color: #8080D8;
    margin-bottom: 40px;
}
.favorites-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.btn-clear-favorites{
    display: flex;
    width: 175px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background-color: #FEEAEA;
    color: #F3292C;
    justify-content: center;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    transition: all 0.2s ease;
}
.btn-clear-favorites:hover {
    background-color: #F3292C;
    color: #fff;
    transition: all 0.2s ease;
}
.event-card-fav-page-image{
    width: 313px;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
}
.event-card-top-fav-page{
    position: absolute;
    justify-content: flex-start;
    width: 100%;
    max-width: 281px;
    top: 16px;
    left: 16px;
}
.special-default-fav-button-wrapper {
    position: absolute;
    top: 0;
    right: 0;
}
.event-card-fav-page>p{
    color: #8080D8;
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 8px;
}
.a-fav-page-title{
    text-decoration: none;
    color: #1A1A2B;
    font-size: 22px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 8px;

    /* Многострочное обрезание */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    /* Фиксируем высоту под 3 строки */
    max-height: calc(3 * 24px); /* 3 строки × line-height */

    /* Дополнительные свойства для надёжности */
    word-break: break-word;
    hyphens: auto;
    flex-shrink: 0; /* Запрещаем уменьшение высоты */
}
.a-fav-page-title:hover{
    text-decoration: none;
    color: #1A1A2B;
}
.event-card-fav-page>h3{
    color: #06060B99;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    margin-bottom: 4px;
}
.event-date-fav-page{
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
    height: 18px;
}
.event-date-fav-page>p{
    margin: 0;
    color: #1A1A2B;
    font-size: 14px;
}
/* Анимация появления карточек */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Класс для анимированных карточек */
.show-more-card {
    animation: cardFadeIn 0.4s ease-out forwards;
}

/* Плавное изменение для кнопки */
.show-more-btn {
    transition: all 0.3s ease;
}

/* Страница Контакты + модальное окно "Задать вопрос" */
.contacts-section {
    width: 100%;
    min-height: 706px;
    padding: 80px 0;
}

.contacts-container{
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}
.contacts-right{

}

.contacts-content {
  display: grid;
  gap: 60px;
}

.contacts-header {
    text-align: left;
    max-width: 600px;
}

.contacts-title {
    font-size: 40px;
    font-weight: 600;
    color: #1A1A2B;
    margin-bottom: 24px;
    line-height: 40px;
}

.contacts-subtitle {
    font-size: 18px;
    color: #06060B80;
    margin-bottom: 7px;
    line-height: 22px;
    height: 65px;
    font-weight: 400;
}

.ask-question-btn {
    background: #8080D8;
    color: white;
    border: none;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    height: 48px;
}

.ask-question-btn:hover {
    background: #7171BF;
}

.contacts-info {
    width: 100%;
    max-width: 640px;
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
    flex-direction: row;
    flex-wrap: wrap;
}

.contact-block {
    max-width: 315px;
    width: 100%;
    background: white;
    padding: 16px;
    border-radius: 16px;
}

.contact-block:last-child{
    background: transparent;
}

.contact-title {
    font-size: 18px;
    font-weight: 500;
    color: #1A1A2B;
    margin-bottom: 24px;
}

.contacts-right {
    max-width: 640px;
}

.zaglushka{
    object-fit: cover;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 22px;
    color: #8080D8;
}

.contact-details p:last-child{
    margin-bottom: 0;
}

.map-container {
    border-radius: 32px;
    overflow: hidden;
    width: 100%;
    height: 260px;
}

.yandex-map {
  width: 100%;
  height: 100%;
}


.form-textarea {
  min-height: 120px;
  resize: vertical;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: none !important; /* Убираем возможные мешающие transition */
}

/* Отключаем ненужные эффекты при фокусе */
.form-textarea:focus {
  outline: 2px solid #4285f4;
  outline-offset: -2px;
  box-shadow: none !important;
}

.feedback-modal-content{
    display: flex;
    margin: 25vh auto;
    width: 390px;
    height: auto;
    gap: 0;
    border-radius: 16px;
    background-color: white;
    padding: 20px;
    flex-direction: column;
}

.feedback-modal-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 48px;
    height: 32px;
}

.feedback-modal-title{
    margin: 0;
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: #1A1A2B;
}

.feedback-form-input, .feedback-form-textarea{
    width: 100%;
    border: 1px solid var(--black-200, #06060B33);
    background: #8080D80D;
    padding: 16px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.feedback-form-input::placeholder, .feedback-form-textarea::placeholder{
    color: #06060B80;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.feedback-submit-btn{
    width: 100%;
    border-radius: 12px;
    background-color: #8080D8;
    color: white;
    border: none;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 24px;
}

.feedback-submit-btn:hover{
    background-color: #7171BF;
}

.feedback-form-agreement{
    width: 100%;
    max-width: 314px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    color: #06060B80;
    font-weight: 400;
}

.feedback-agreement-link{
    color: #8080D8;
}

.feedback-agreement-link:hover{
    color: #8080D8;
    text-decoration: none;
}

::selection {
  background-color: #8080D8;
  color: white;
}

/* Страница с детальной информацией о месте */
.establishment-page {
    width: 100%;
}

.establishment-container {
    max-width: 1280px;
    margin: 48px auto 80px;
}

/* Top Section */
.establishment-top-section {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

/* Establishment Info Block */
.establishment-info-block {
    display: flex;
    width: 474px;
    height: 460px;
    border-radius: 32px;
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #8080D8 0%, #44A3F0 100%);
    flex-direction: column;
    justify-content: space-between;
}

.establishment-info-block-top{
    display: flex;
    flex-direction: row;
}

.establishment-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.establishment-rating-score, .establishment-age-rating {
    background: #06060BE5;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
}

.establishment-age-rating{
    color: #EDE800;
}

.establishment-rating-score{
    color: white;
    gap: 0.5px;
    display: flex;
}

.rating-star-place-card{
    width: 13px;
    height: 13px;
    object-fit: contain;
}

.establishment-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 50%;
}

.place-logo-detail-page{
    width: 60px;
    height: 60px;
}

.establishment-info-block-bottom{
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
}

.establishment-info-block-bottom-buttons{
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    justify-content: space-between;
}

.establishment-category {
    font-size: 16px;
    color: white;
    margin-bottom: 16px;
}

.establishment-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 40px;
}

.establishment-schedule {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 24px;
    padding: 8px 12px;
    background-color: #8080D866;
    border-radius: 999px;
}

.establishment-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.establishment-book-btn {
    background: white;
    color: #1A1A2B;
    border: none;
    padding: 0;
    height: 48px;
    font-size: 16px;
    width: 100%;
    max-width: 370px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.establishment-book-btn:hover {
    background: #8080D8;
    color: white;
}

.establishment-like-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.establishment-like-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Slider Block */
.establishment-slider-block {
    flex: 1;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #f8f9fa;
}

.establishment-slider {
    position: relative;
    height: 460px;
    overflow: hidden;
}

.establishment-slide {
    display: none;
    height: 100%;
}

.establishment-slide.establishment-slide-active {
    display: block;
}

.establishment-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.establishment-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 16px;
}

.establishment-slider-prev svg,
.establishment-slider-next svg{
    border: none;
    fill: #8080D8;
    width: 15.67px;
    height: 11.62px;
    transition: all 0.3s ease;
}

.establishment-slider-prev:hover svg,
.establishment-slider-next:hover svg {
    fill: white;
}

.establishment-slider-prev,
.establishment-slider-next{
    cursor: pointer;
    background: white;
    border-radius: 50%;
    border: none;
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.establishment-slider-prev:hover,
.establishment-slider-next:hover {
    background: #8080D8;
    transition: all 0.3s ease;
}

.establishment-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px;
    background: #06060B66;
    border-radius: 99px;
}

.establishment-dot {
    width: 8px;
    height: 16px;
    border-radius: 99px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.establishment-dot:hover{
    background: #E6E6F7;
}

.establishment-dot.establishment-dot-active {
    background: #8080D8;
}

/* Map Section */
.establishment-map-section {
    padding: 40px 30px;
    border-bottom: 1px solid #eee;
}

.establishment-map-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.establishment-map-container {
    display: flex;
    gap: 24px;
    padding: 24px;
    flex-direction: column;
    background-color: white;
    border-radius: 32px;
    margin-bottom: 10px;
}

.establishment-map-container-top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.establishment-map-container-top > h3{
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: #1A1A2B;
}

.establishment-map-container-top > p{
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    color: #8080D8;
    max-width: 360px;
    margin-bottom: 0;
}


#yandex-map{
    width: 100%;
    height: 360px;
    border-radius: 32px;
    overflow: hidden;
}

.establishment-map-placeholder {
    flex: 1;
    height: 300px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #dee2e6;
    color: #6c757d;
}

.establishment-map-marker {
    font-size: 48px;
    margin-bottom: 10px;
}

.establishment-map-address {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
}

.establishment-map-address p {
    margin-bottom: 5px;
    color: #6c757d;
}

/* Info Section */
.establishment-info-section {
    display: flex;
    gap: 10px;
    margin-bottom: 48px;
}

.establishment-contacts-block {
    width: 474px;
    background: white;
    border-radius: 32px;
    padding: 24px;
}

.establishment-contacts-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1A1A2B;
}

.establishment-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.establishment-contact-icon{
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #8080D81A;
    justify-content: center;
    align-items: center;
}

.place-contacts-icons{
    width: 18px;
    height: 18px;
}

.establishment-contact-label {
    line-height: 18px;
    font-size: 18px;
    font-weight: 500;
    color: #1A1A2B;
}

.establishment-contact-value {
    line-height: 22px;
    font-size: 18px;
    font-weight: 400;
    color: #8080D8;
    cursor: pointer;
}

.establishment-description-block {
    background: white;
    border-radius: 32px;
    padding: 24px;
    width: 100%;
}

.establishment-description-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
    color: #1A1A2B;
}

.establishment-description-text {
    font-size: 18px;
    line-height: 22px;
    color: #06060B80;
    margin-bottom: 0;
}

.establishment-reviews-title, .establishment-reviews-count{
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 24px;
    color: #1A1A2B;
    font-weight: 500;
}

.review-container {
    width: 100%;
    margin-bottom: 32px;
}

.review-container-top{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    margin-bottom: 16px;
}

.rating-stars{
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.review-title {
    font-size: 24px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.label-left {
    color: #8080D8;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

.label-right {
    color: #9ca3af;
    font-size: 14px;
}

.textarea-container {
    position: relative;
}

.review-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
    resize: vertical;
    transition: all 0.3s ease;
    background: #8080D80D;
    border: 1px solid var(--black-200, #06060B33);
    resize: none;
}

.review-textarea:focus {
    outline: none;
    border-color: #8080D8;
    background: white;
}

.review-textarea::placeholder {
    color: #06060B80;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
}

.hint-container {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 24px;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 32px;
}

.hint-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: inline-flex;
    overflow: visible;
}

.hint-icon svg {
    width: 100%; /* растягивает SVG на весь размер контейнера */
    height: 100%;
    display: block; /* убирает лишние отступы */
}
.hint-text {
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    color: #1A1A2B;
}

.hint-text.warning {
    color: #1A1A2B;
}

.hint-text.success {
    color: #1A1A2B;
}

.hint-text.final {
    color: #1A1A2B;
}

.form-group.place-page-rating-review{
    margin: 0;
}

.place-page-rating-review{
    width: 100%;
    margin: 0;
}

.hint-wrapper{
    display: flex;
    gap: 4px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.rating-stars-wrapper{
    border-radius: 16px;
    width: 100%;
    min-height: 120px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.star-rating {
    min-width: 474px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.star-rating.inactive {
    pointer-events: none;
}

.star-rating.active {
}

.star-rating.active .star {
    stroke: #FFB81C;
    stroke-opacity: 1;
}

.star {
    width: 33px;
    height: 33px;
    cursor: pointer;
    transition: all 0.2s ease;
    fill: none;
    stroke: #8080D8;
    stroke-opacity: 0.3;
    stroke-width: 3;
    margin: 3.5px;
}

.star:hover {
}

.star.active {
    fill: #FFB81C;
    stroke: #FFB81C;
    stroke-opacity: 1;
}

.star.hover {
    fill: #FFB81C;
    stroke: #FFB81C;
    stroke-opacity: 1;
}


.rating-text {
    text-align: center;
    font-size: 14px;
    line-height: 14px;
    color: #06060B80;
    margin-top: 16px;
}

.button-container {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-cancel {
    color: #8080D8 !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    line-height: 16px !important;
    font-weight: 500 !important;
    padding: 0 24px !important;
    height: 48px;
}

.btn-cancel:hover {
    background: #8080D81A;
}

.btn-cancel:focus{
    box-shadow: none !important;
}

.btn-publish {
    height: 48px;
    padding: 0 24px !important;
    color: white !important;
    background: #8080D8 !important;
    border-radius: 12px !important;
}

.btn-publish:hover:not(:disabled) {
    background: #7171BF !important;
}

.btn-publish:disabled {
    background: #06060B0D !important;
    color: #8080D84D !important;
    cursor: not-allowed;
}

.character-count {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 12px;
    color: #9ca3af;
}


/* Reviews List */
.establishment-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.establishment-review-item {
    border-radius: 16px;
    padding: 24px;
    background: white;
    gap: 16px;
    display: flex;
    flex-direction: row;
    margin-bottom: 16px;
}

.establishment-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.establishment-review-avatar {
    min-width: 32px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
}

.btn-delete-review{
    position: absolute;
    bottom: 0;
    right: 0;
    border: none;
    color: #F3292C;
    background: #FEEAEA;
    height: 36px;
    padding: 0 14px;
    border-radius: 10px;
}

.btn-delete-review:hover{
    background: #F3292C;
    color: white;
}

.establishment-review-body{
    display: flex;
    flex-direction: column;
    position: relative;
}

.establishment-review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.establishment-review-info {
    flex: 1;
}

.establishment-review-name {
    font-weight: 600;
    color: #000000;
    font-size: 16px;
    line-height: 16px;
}

.establishment-review-date {
    font-size: 14px;
    color: #BBBBBB;
    margin-right: 8px;
}

.establishment-review-rating {
    display: flex;
    gap: 2px;
}

.establishment-review-rating .establishment-star {
    font-size: 16px;
    color: #ddd;
}

.establishment-review-rating .establishment-star-filled {
    color: #ffc107;
}

.establishment-review-block{
    width: 100%;
}

.establishment-review-text {
    font-size: 16px;
    line-height: 22px;
    color: #1A1A2B;
    margin-bottom: 52px;
    font-weight: 400;
}

.custom-star-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.establishment-review-header-right{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
}

.custom-star {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
}

.custom-star svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* CSS переменные для кнопки избранного */
:root {
  --favorite-btn-size: 32px;
  --favorite-btn-radius: 8px;
  --favorite-btn-bg: #8080D866;
  --favorite-btn-icon-size: 20px;
}

/* Основные стили кнопки избранного */
.favorite-btn {
  /* Используем CSS переменные */
  width: var(--favorite-btn-size);
  height: var(--favorite-btn-size);
  border-radius: var(--favorite-btn-radius);
  background: var(--favorite-btn-bg);

  /* Стандартные стили */
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.2s ease;

  /* Убираем focus outline и добавляем свой */
  outline: none;
  position: relative;
}

/* Иконка внутри кнопки */
.favorite-btn__icon {
  width: var(--favorite-btn-icon-size);
  height: var(--favorite-btn-icon-size);
  transition: fill 0.2s ease;
  pointer-events: none; /* Предотвращаем перехват событий */
}

/* Состояние active */
.favorite-btn:active {
  transform: scale(0.95);
}

/* Focus состояние для доступности */
.favorite-btn:focus-visible {
  box-shadow: 0 0 0 2px rgba(128, 128, 216, 0.5);
}

/* Размер SMALL */
.favorite-btn--small {
  --favorite-btn-size: 24px;
  --favorite-btn-icon-size: 15px;
}

/* Размер COMMON */
.favorite-btn--common {
  --favorite-btn-size: 32px;
  --favorite-btn-icon-size: 20px;
}

/* Размер MEDIUM */
.favorite-btn--medium {
  --favorite-btn-size: 32px;
  --favorite-btn-icon-size: 20px;
}

/* Размер LARGE */
.favorite-btn--large {
  --favorite-btn-size: 48px;
  --favorite-btn-icon-size: 20px;
}

@media (max-width: 480px) {
    .favorite-btn--medium {
        --favorite-btn-size: 23px;
        --favorite-btn-icon-size: 15px;
    }

    .favorite-btn--common {
        --favorite-btn-size: 26px;
        --favorite-btn-icon-size: 15px;
    }

    .favorite-btn--large {
        --favorite-btn-size: 40px;
        --favorite-btn-icon-size: 20px;
    }
}

@media (max-width: 1024px) {
    .establishment-top-section {
        flex-wrap: wrap;
    }

    .establishment-info-section {
        flex-wrap: wrap;
    }
}

/* Состояние загрузки (опционально) */
.favorite-btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

/* Для отключенного состояния */
.favorite-btn:disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* Состояние для неавторизованных пользователей */
.favorite-btn:not(.js-favorite) {
  cursor: pointer;
}

.favorite-btn:not(.js-favorite):hover {
  background: #8080D8AA;
}

.default-fav-button-wrapper{
    position: absolute;
    top: 16px;
    right: 16px;
}

.small-fav-button-wrapper{
    position: absolute;
    top: 8px;
    right: 8px;
}

.tab-content>.active {
    width: 100%;
}

.frequently-searched.searched-as-well{
    margin-bottom: 80px;
    margin-top: 80px;
    max-width: 1280px;
}

.event-card-top.similar-place-card-top{
    position: absolute;
    top: 16px;
    left: 16px;
}

.place-rating-bottom-block{
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 0 8px;
    background: #06060BE5;
    border-radius: 999px;
    align-items: center;
}

.place-rating-bottom-block img{
    width: 13px;
    height: 13px;
    padding: 1px;
    margin-bottom: 0;
}

.rating-score{
    font-size: 14px;
    line-height: 14px;
    color: white;
    font-weight: 700;
}

.place-title-link{
    text-decoration: none;
    color: #1A1A2B;
    font-size: 18px;
    line-height: 22px;
}

.place-title-link:hover{
    text-decoration: none;
    color: #1A1A2B;
}

.place-info-bottom{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.place-info-bottom h3 {
    line-height: 22px;
}

.place-info-bottom p {
    line-height: 16px;
}

.places-container-bottom {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    max-width: 1280px;
    width: 100%;
    align-items: flex-start;
}

.places-container-bottom > h2{
    font-family: 'Inter';
    font-size: 32px;
    color: #1A1A2B;
    margin-bottom: 40px;
    font-weight: 500;
}

.recommended-places-bottom{
    background: white;
    border-radius: 32px;
    padding: 60px 0 0 0;
}

.event-cover-image{
    width: 796px;
    height: 460px;
    border-radius: 32px;
    object-fit: cover;
    overflow: hidden;
}

.establishment-info-block.event-page-info-block{
    background: linear-gradient(180deg, #8080D8 0%, #4CD585 100%);
}

/* Profile Dropdown Styles */
.profile-dropdown-container-unique-xyz {
  position: relative;
  display: inline-block;
}

.profile-dropdown-menu-unique-xyz {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease-in-out;
}

.profile-dropdown-container-unique-xyz:hover .profile-dropdown-menu-unique-xyz {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-dropdown-content-unique-xyz {
  width: 250px;
  height: 221px;
  background: white;
  border-radius: 16px;
  box-shadow: 1px 1px 10px 0px #8080D81A;
  border: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 16px;
}

/* Arrow pointer */
.profile-dropdown-content-unique-xyz::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: white;
  border: 1px solid #e5e7eb;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}

.dropdown-user-name p{
    color: #1A1A2B;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
}

.profile-user-info-unique-xyz{
    margin-bottom: 16px;
}

.profile-user-flex-unique-xyz {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 5.5px 0;
}

.profile-user-avatar-unique-xyz {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.profile-user-name-unique-xyz,
.profile-user-surname-unique-xyz {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin: 0;
}

.profile-menu-items-unique-xyz {
  flex: 1;
}

.profile-menu-item-unique-xyz {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 8px;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A2B;
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
  border-radius: 8px;
  gap: 8px;
}

.profile-menu-item-unique-xyz:active svg{
    stroke: white;
}

.profile-menu-item-unique-xyz:hover {
  background-color: #F2F2FB;
  color: #1A1A2B;
  text-decoration: none;
}

.profile-menu-item-unique-xyz:active {
  background-color: #8080D8;
  color: white
}

.profile-menu-item-danger-unique-xyz {
  color: #F3292C;
}

.profile-menu-item-danger-unique-xyz:hover {
  background-color: #F2F2FB;
  color: #F3292C;
  text-decoration: none;
}

.profile-link-header:hover{
    text-decoration: none;
}

.profile-menu-item-danger-unique-xyz:active {
  background-color: #8080D8;
  color: white;
}

.profile-menu-icon-unique-xyz {
  width: 16px;
  height: 16px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Ensure dropdown stays visible when hovering over it */
.profile-dropdown-menu-unique-xyz:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hidden {
    display: none;
}

.places-list-title{
    color: #1A1A2B;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 32px;
}

.search-form.place-list-filter{
    background: #E9E9F2;
}

.navbar-expand-lg{
    z-index: 9999;
}

.places-list.placelist-page{
    flex-wrap: wrap;
}


/* Базовые стили для фильтров мест */
.place-filters-block {
    min-height: 316px;
    display: flex;
}

.place-filters-section {
    max-width: 1282px;
    margin: 0 auto;
}
.place-filters-form{
    width: 960px;
    min-height: 84px;
    border-radius: 15px;
    background: #E9E9F2;
    padding: 8px;
}

.place-filters-title {
    max-width: 750px;
    font-size: 40px;
    letter-spacing: -.04em;
    font-weight: 600;
    color: #1A1A2B;
    margin: 80px auto 32px;
    text-align: center;
}

.place-filters-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.place-filter-field {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.place-filter-label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #0D0D16;
    padding: 2px 4px;
    font-weight: 500;
}

.place-native-select {
    display: none;
}

/* Кастомные селекты */
.place-select-container {
    position: relative;
    width: 100%;
}

.place-custom-select {
    position: relative;
    cursor: pointer;
}

.place-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    background-color: #FFFFFFE5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #06060B80;
    transition: all 0.2s ease;
    height: 48px;
}

.place-select-trigger.selected {
    color: #1A1A2B;
}

.place-select-arrow {
    width: 12px;
    height: 7px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K') no-repeat center;
    background-size: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.place-select-arrow.place-arrow-rotated {
    transform: rotate(180deg);
}

.place-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0px 1px 10px 0px #0000000A;
    z-index: 1000;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-height: 300px;
    overflow-y: auto;
}

.place-select-options.place-options-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.place-select-option {
    display: block;
    width: 100%;
    height: auto;
    min-height: 32px;
    padding: 8px 12px;
    border: none;
    background: white;
    color: #333;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-top: 2px;
}

.place-select-option:hover {
    background-color: #8080D8;
    color: white;
}

.place-select-option.place-option-selected {
    background-color: #8080D8;
    color: white;
}


/* Кнопка Применить */
.place-filter-button {
    padding: 0 24px;
    background: #8080D8;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    height: 48px;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.place-filter-button:hover {
    background-color: #6d6dc7;
}

.place-list-container {
    display: flex;
    margin: 0;
    padding: 40px 0;
    justify-content: center;
    background-color: white;
    border-radius: 32px;
}

.bowling-filter-block{
    display: flex;
    width: 100%;
    padding: 80px 0;
}

.bowling-filter-container{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    border-radius: 32px;
    background-image: url(/static/img/bowling-bg-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1280px;
    min-height: 320px;
    margin: 0 auto;
}

.bowling-filter-container > h3 {
    color: white;
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    max-width: 50%;
    margin-bottom: 0;
}

.placelist-page-card-age-rating {
    color: #EDE800;
}
.placelist-page-card-rating-score, .placelist-page-card-age-rating {
    background: #06060BE5;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;

}

.place-card.placelist-page-card{
    position: relative;
}

.placelist-page-card-rating{
    display: flex;
    position: absolute;
    z-index: 2;
    top: 16px;
    gap: 2px;
    left: 16px;
    flex-direction: row;
    flex-wrap: wrap;
}

.placelist-page-card-rating-score{
    display: flex;
    color: white;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    gap: 0.5px;
}

.eventlist-select-trigger{
    background-color: white;
}

.eventlist-select-trigger.active{
    background-color: white;
}

.buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-direction: row;
    margin-bottom: 40px;
}

.events-sp-form{
    margin-bottom: 16px;
}

.sort-dropdown {
    position: relative;
    display: inline-block;
}

.sort-button {
    width: 40px;
    height: 30px;
    border: none;
    border-radius: 999px;
    background: white;
    box-shadow: 1px 1px 10px 0px #8080D81A;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sort-button:hover {
    box-shadow: 1px 1px 10px 0px #8080D81A;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

#sortButton:hover svg path{
    stroke: #8080D8;
    transition: all 0.2s ease;
}

.sort-button.active {
    background: #8080D8;
}

.sort-button.active svg path {
    stroke: #ffffff;
}

.sort-button svg path {
    stroke: #1A1A2B
}

.sort-button svg {
    transition: all 0.2s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    width: 181px;
    padding: 4px;
    margin: 4px 0 0;
    font-size: 16px;
    line-height: 16px;
    color: #1A1A2B;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 12px;
    box-shadow: 0px 1px 10px 0px #0000000A;
    cursor: pointer;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 16px;
    line-height: 16px;
    clear: both;
    color: #1A1A2B;
    white-space: nowrap;
    background-color: transparent;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.dropdown-item:not(:last-child){
    margin-bottom: 4px;
}

.dropdown-item:hover {
    background: #F2F2FB;
}

.dropdown-item.selected {
    background: #8080D8;
    color: white;
}

.simple-button, .nearest-events-button {
    padding: 0 12px;
    height: 30px;
    background: white;
    color: #1A1A2B;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    line-height: 14px;
    transition: all 0.2s ease;
    box-shadow: 1px 1px 10px 0px #8080D81A;
}

.simple-button.active, .nearest-events-button.active{
    background: #8080D8;
    color: white;
}

.nearest-events-button:hover{
    color: #8080D8;
}

.nearest-events-button.active:hover{
    color: white;
}

.sort-button.active:hover svg path{
    stroke: white !important;
}

/* Общие стили для кастомных селектов (с префиксом index-) */
.index-custom-select-container {
    position: relative;
    width: 100%;
}

.index-custom-select {
    position: relative;
    cursor: pointer;
}

.index-custom-select select {
    display: none;
}

.index-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    background: #FFFFFFE5;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #1A1A2B;
    transition: all 0.2s ease;
    height: 48px;
}

.index-select-trigger:hover {}

.index-select-trigger.index-trigger-active {
    outline: none;
    background-color: #FFFFFFE5;
    color: #06060B99;
}

.index-select-arrow {
    width: 12px;
    height: 7px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iIzk5OTk5OSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K') no-repeat center;
    background-size: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.index-select-arrow.index-arrow-rotated {
    transform: rotate(180deg);
}

.index-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0px 1px 10px 0px #0000000A;
    z-index: 1000;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.index-select-options::-webkit-scrollbar {
    width: 6px;
}

.index-select-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.index-select-options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.index-select-options::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.index-select-options.index-options-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.index-select-option {
    display: block;
    width: 100%;
    min-height: 32px;
    height: auto;
    padding: 8px 12px;
    border: none;
    background: white;
    color: #333;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.15s ease;
    display: flex;
    align-items: center;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -4%;
    margin-top: 2px;
}

.index-select-option:hover {
    background-color: #8080D8;
    color: white;
}

.index-select-option.index-option-selected {
    background-color: #8080D8;
    color: white;
}

.index-select-option.index-option-selected:hover {
    color: #1A1A2B;
}

.subscription-btn:hover {
    background-color: #1A1A2B;
    transition: background-color 0.15s ease;
}

/*Специфические стили для селектов на главной странице*/
.main-index .search-form .index-select-trigger{
    background-color: #8080D80D;
    color: #06060B80;
}
.main-index .search-form .index-select-trigger.index-trigger-active{
    background-color: #8080D81A;
    color: #06060B99;
}

.custom-date-container-style-1 .custom-date-trigger {
    background-color: #8080D80D;
}

.custom-date-trigger.date-selected span {
    color: #1A1A2B !important;
}

.no-events{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.no-events p{
    color: #8080D8;
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
}

.category-list-event-card{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.category-list-event-card p{
    margin-bottom: 8px;
    color: #8080D8;
    font-size: 16px;
    line-height: 16px;
}

.concerts-filter-block{
    display: flex;
    width: 100%;
    padding: 80px 0;
}

.concerts-filter-container{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px;
    border-radius: 32px;
    background-image: url(/static/img/concerts-bg-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    max-width: 1280px;
    min-height: 320px;
    margin: 0 auto;
}

.concerts-filter-container > h3 {
    color: #1A1A2B;
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    max-width: 50%;
    margin-bottom: 0;
}

.place-select-text{
    line-height: 16px;
}

.logo{
    padding: 0 !important;
}


/* Редактирование профиля пользователя */
#app {
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Основной контейнер */
.profile-editor {
    margin: 40px auto 80px;
    display: flex;
    max-width: 960px;
    width: 100%;
    min-height: 900px;
}

/* Боковая панель с вкладками */
.profile-editor__sidebar {
    margin-right: 24px;
    width: 316px;
    height: 96px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 1px 10px 0px #0000000A;
}

.profile-editor__tabs {
    display: flex;
    flex-direction: column;
}

.profile-editor__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 8px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #1A1A2B;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
}

.profile-editor__tab:hover {
  background: #F2F2FB;
  color: #1A1A2B;
}

.profile-editor__tab--active {
  background: #8080D8;
  color: #ffffff;
}

.profile-editor__tab--active:hover {
  background: #8080D8;
  color: white;
}

.profile-editor__tab-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Контентная область */
.profile-editor__content {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.profile-editor__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.profile-editor__content-top-block{
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 16px
}

.profile-editor__content-bottom-block{
    background: white;
    padding: 32px;
    border-radius: 16px;
}

.profile-editor__panel--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}

.profile-editor__title {
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: #1A1A2B;
    margin-bottom: 56px;
    letter-spacing: -.04em;
}

.profile-edit-row-container{
    display: flex;
    flex-direction: row;
    gap: 8px;
    height: 68px;
    width: 534px;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 16px;
}

/* Форма */
.profile-editor__form {
    max-width: 534px;
}

/* Секция аватара */
.profile-editor__avatar-section {
    width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: flex-start;
}

.profile-editor__avatar {
    width: 112px;
    height: 112px;
    border-radius: 16px;
    overflow: hidden;
}

.profile-editor__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-editor__change-avatar {
    display: flex;
    width: 112px;
    align-items: center;
    gap: 4px;
    border: none;
    height: 36px;
    background: #8080D81A;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    letter-spacing: -.04em;
    color: #7171BF;
    transition: all 0.2s ease;
    justify-content: center;
}

.profile-editor__change-avatar:hover {
  background: #8080D833;
}

/* Поля формы */
.profile-editor__field {
}

.profile-editor__label {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #8080D8;
    line-height: 16px;
    padding: 0 4px;
    letter-spacing: -.04em;
}

.profile-edit-row-current-pass{
    height: 68px;
}

.profile-editor__input,
.profile-editor__select,
.profile-editor__textarea {
    width: 340px;
    height: 48px;
    padding: 0 12px;
    border: 1px solid var(--black-200, #06060B33);
    border-radius: 12px;
    font-size: 16px;
    line-height: 16px;
    font-family: inherit;
    background: #8080D80D;
    transition: all 0.2s ease;
    color: #06060B80;
    letter-spacing: -.04em;
}

.profile-editor__input:focus,
.profile-editor__select:focus,
.profile-editor__textarea:focus {
    border-color: #8080D8;
    background: white;
}

.profile-editor__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.profile-editor__textarea {
  resize: vertical;
  min-height: 100px;
}

/* Поля с кнопками */
.profile-editor__password-field,
.profile-editor__email-field {
  position: relative;
  display: flex;
  align-items: center;
}

.profile-editor__password-field .profile-editor__input,
.profile-editor__email-field .profile-editor__input {
  padding-right: 48px;
  margin-bottom: 0;
}

.profile-editor__toggle-password {
  position: absolute;
  right: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #1A1A2B
  transition: color 0.2s ease;
  padding: 4px;
}

.profile-editor__toggle-password:hover {
  color: #374151;
}

.profile-editor__change-password,
.profile-editor__change-email {
  font-size: 14px;
  color: #6366f1;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  transition: color 0.2s ease;
}

.profile-editor__change-password:hover,
.profile-editor__change-email:hover {
  color: #4f46e5;
  text-decoration: underline;
}

/* Кнопка отправки */
.profile-editor__submit {
    width: 186px;
    height: 48px;
    padding: 0 28px;
    background: #8080D81A;
    color: #7171BF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -.04em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.profile-editor__submit:hover {
  background: #8080D833;
  transform: none;
}

/* Удалить профиль */
.btn-delete-account{
    display: flex;
    width: 158px;
    font-size: 16px;
    letter-spacing: -.04em;
    line-height: 16px;
    border: none;
    color: #F3292C;
    background: #FEEAEA;
    border-radius: 10px;
    height: 48px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-delete-account:hover{
    background: #F3292C;
    color: white;
}

.profile-editor__danger-zone {
}

.profile-editor__danger-title {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -.04em;
    font-weight: 500;
    color: #1A1A2B;
    margin-bottom: 16px;
}

.profile-editor__danger-text {
    font-size: 16px;
    color: #06060B80;
    line-height: 18px;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.profile-editor__delete-account {
  padding: 12px 24px;
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.profile-editor__delete-account:hover {
  background: #fee2e2;
  border-color: #fca5a5;
}

.profile-editor__extended-container{
    background: white;
    border-radius: 16px;
    padding: 32px;
}

/* Кастомные селекты со страницы редактирования профиля */
/* Кастомные селекты с новым классом (чтобы не ломать другие) */
.custom-enhanced-select-container {
    position: relative;
    width: 100%;
}
.custom-enhanced-select {
    position: relative;
    cursor: pointer;
}
.custom-enhanced-select select {
    display: none;
}
.custom-enhanced-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 12px;
    background: #8080D80D;
    border: 1px solid var(--black-200, #06060B33);
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #06060B80;
    transition: all 0.2s ease;
    height: 48px;
    width: 448px;
}
.custom-enhanced-select-trigger:hover {
    border-color: #8080D8;
}
.custom-enhanced-select-trigger.active {
    border-color: #8080D8;
    background: white;
    outline: none;
}
.custom-enhanced-select-arrow {
    width: 12px;
    height: 7px;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNiA2TDExIDEiIHN0cm9rZT0iIzY2NjY2NiIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K') no-repeat center;
    background-size: contain;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.custom-enhanced-select-arrow.rotated {
    transform: rotate(180deg);
}
.custom-enhanced-select-options {
    width: 448px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    max-height: 300px;
    overflow-y: auto;
}
.custom-enhanced-select-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-enhanced-select-option {
    padding: 8px 16px;
    color: #1A1A2B;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 8px;
}
.custom-enhanced-select-option:hover {
    background: #8080D80D;
}
.custom-enhanced-select-option.selected {
    background: #8080D8;
    color: white;
}

.extended-editor-field.profile-editor__field{
    margin-bottom: 16px;
}

.extended-editor-input.profile-editor__input,
.extended-editor-input.profile-editor__textarea {
    width: 448px;
    height: 48px;
    padding: 0 12px;
    border: 1px solid var(--black-200, #06060B33);
    border-radius: 12px;
    font-size: 16px;
    line-height: 16px;
    font-family: inherit;
    background: #8080D80D;
    transition: all 0.2s ease;
    color: #06060B80;
    letter-spacing: -.04em;
}

.extended-editor-input.profile-editor__textarea {
    padding: 12px;
    height: 100px;
    resize: none;
}

.extended-editor-button.profile-editor__submit{
    width: 448px;
    background: #8080D8;
    color: white;
}
.extended-editor-button.profile-editor__submit:hover{
    background: #7171BF;
}

.profile-user-avatar-unique-xyz.default-avatar {
    color: #8080D8;
    font-size: 32px;
}

.empty-favorites {
    text-align: center;
    margin-top: -48px;
}

.empty-favorites p {
    margin-bottom: 42px;
    color: #1A1A2B;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -.04em;
}

.empty-favorites-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 472px;
}

.empty-favorites-buttons a {
    display: flex;
    padding: 0 24px;
    height: 48px;
    width: 228px;
    background-color: #8080D81A;
    color: #7171BF;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.04em;
    align-items: center;
    justify-content: center;
}

.empty-favorites-buttons a:hover {
    background: #8080D833;
    transition: all 0.2s ease;
}

/* Модалка удаления пользователя */
/* Модальное окно удаления профиля */
.profile-delete-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.profile-delete-modal__content {
    position: relative;
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 16px;
    width: 390px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes profile-delete-modal-fadeIn {
  from {opacity: 0; transform: translateY(-20px);}
  to {opacity: 1; transform: translateY(0);}
}

.profile-delete-modal__close {
    position: absolute;
    height: 20px;
    right: 16px;
    top: 10px;
    cursor: pointer;
    transition: color 0.2s;
}


.profile-delete-modal__body {
  text-align: center;
}

.profile-delete-modal__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
}

.profile-delete-modal__text {
    color: #1A1A2B;
    font-size: 18px;
    line-height: 18px;
    letter-spacing: -.04em;
    margin: 0 0 32px;
}

.profile-delete-modal__actions {
    display: flex;
    gap: 16px;
    width: 350px;
    justify-content: flex-start;
    align-items: flex-start;
}

.profile-delete-modal__cancel-btn, .profile-delete-modal__confirm-btn{
    width: 167px;
}

/* Страница "Предложить мероприятие" */
.suggest-event-container {
    margin: 80px auto 241px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 992px;
    gap: 146px;
}

.suggest-event-form-block{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.suggest-event-header {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
}

.suggest-event-back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 48px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.04em;
    background: #8080D81A;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.suggest-event-back-button svg{
    margin-right: 8px;
}

.suggest-event-back-button:hover {
    background: #8080D833;
}

.suggest-event-back-button p {
    color: #7171BF;
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.suggest-event-form-block h1{
    font-size: 56px;
    margin-bottom: 0;
    line-height: 56px;
    color: #1A1A2B;
    letter-spacing: -.04em;
    font-weight: 700;
    max-width: 343px;
}

.suggest-event-back-button:hover p {
    color: #7171BF;
}

.suggest-event-header h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.suggest-event-form-container {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    width: 720px;
    margin: 0 auto;
}

.suggest-event-form-section {
    padding: 32px;
}

.suggest-event-form-section:last-child {
    border-bottom: none;
}

.suggest-event-form-section h2 {
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    color: #1A1A2B;
    margin-bottom: 32px;
    letter-spacing: -.04em;
}

.suggest-event-form-group {
    margin-bottom: 24px;
}

.suggest-event-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.suggest-event-form-group label {
    display: block;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    color: #8080D8;
    margin-bottom: 6px;
    letter-spacing: -.04em;
}

.suggest-event-form-group input,
.suggest-event-form-group textarea {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    border: 1px solid #06060B33;
    border-radius: 12px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -.04em;
    background: #8080D80D;
    transition: all 0.2s ease;
    color: #1A1A2B;
}

.suggest-event-form-group input:focus,
.suggest-event-form-group textarea:focus {
    outline: none;
    border-color: #8080D8;
    background: #fff;
}

.suggest-event-form-group textarea {
    resize: vertical;
    min-height: 120px;
    padding: 12px;
}

.suggest-event-form-hint {
    font-size: 14px;
    line-height: 14px;
    color: #06060B80;
    margin-top: 4px;
    letter-spacing: -.04em;
}

.suggest-event-custom-select {
    position: relative;
}

.suggest-event-custom-select select {
    width: 100%;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 16px;
    background: #f9fafb;
    appearance: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggest-event-custom-select.selected{
    color: #1A1A2B;
}

.suggest-event-custom-select select:focus {
    outline: none;
    border-color: #8080D8;
    background: #fff;
}

.suggest-event-select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.2s ease;
}

.suggest-event-custom-select select:focus + .suggest-event-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.suggest-event-input-with-icon {
    position: relative;
}

.suggest-event-input-with-icon svg {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.suggest-event-input-with-icon input {
    padding-right: 48px;
}

.suggest-event-file-upload-area {
    position: relative;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9fafb;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.suggest-event-upload-content {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.suggest-event-file-upload-area:hover {
    border-color: #8080D8;
    background: #fff;
}

.suggest-event-file-upload-area.dragover {
    border-color: #8080D8;
    background: #f0f4ff;
}

.suggest-event-upload-content p {
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
    margin-bottom: 16px;
}

.suggest-event-upload-button {
    background: #8080D8;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggest-event-upload-button:hover {
    background: #6d6db8;
    transform: translateY(-1px);
}

.suggest-event-upload-preview {
    position: relative;
}

.suggest-event-upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    object-fit: cover;
}

.suggest-event-remove-image {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.suggest-event-form-footer {
    padding: 32px;
}

.suggest-event-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.suggest-event-checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #8080D8;
    cursor: pointer;
}

.suggest-event-checkbox-group label {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
    margin: 0;
}

.suggest-event-checkbox-group label a {
    color: #8080D8;
    text-decoration: none;
}

.suggest-event-checkbox-group label a:hover {
    text-decoration: underline;
}

.suggest-event-submit-button {
    width: 100%;
    padding: 16px 24px;
    background: #8080D8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggest-event-submit-button:hover {
    background: #6d6db8;
    transform: translateY(-1px);
}

.suggest-event-submit-button:active {
    transform: translateY(0);
}

.suggest-event-submit-button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}


/* Стили для валидации */
.suggest-event-form-group.suggest-event-error input,
.suggest-event-form-group.suggest-event-error textarea,
.suggest-event-form-group.suggest-event-error select {
    border-color: #F3292C;
    background: white;
}

.suggest-event-error-message {
    color: #F3292C;
    font-size: 12px;
    margin-top: 4px;
}

.suggest-event-form-group.suggest-event-success input,
.suggest-event-form-group.suggest-event-success textarea,
.suggest-event-form-group.suggest-event-success select {

}


.suggest-event-file-upload-area input[type="file"] {
    display: none;
}



.subscribe-section.news-subscribe{
    background: transparent;
    border-radius: 0;
}

.subscribe-inner.news-subscribe{
    display: flex;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 0;
    background-image: url(/static/img/subs-yellow-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    min-height: 404px;
    height: auto;
    border-radius: 32px;
    margin-bottom: 80px;
}

.news-subscription-title{
    color: #1A1A2B !important;
    max-width: 696px;
    letter-spacing: -.04em;
}

.subscribe-form.news-subscribe-form{
    width: 321px;
}

.form-col.news-form-col{
    width: 100%;
    max-width: 321px;
}

.subscription-btn.js-news-subscribe-btn{
    margin-top: 0;
    background: #8080D8;
}

.subscription-btn.js-news-subscribe-btn:hover{
    background: #7171BF;
    transition: all 0.2s ease;
}

.latest-news-container-news-detail{
    display: flex;
    width: 100%;
    background: white;
    border-radius: 32px;
    padding: 40px 0;
    margin-bottom: 80px;
}

.latest-news-block-news-detail{
    max-width: 1282px;
    margin: 0 auto;
}

.block-news-detail-header{
    color: #1A1A2B;
    text-decoration: none;
    font-size: 32px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing: -.04em;
}

.block-news-detail-header:hover{
    color: #8080D8;
    transition: all 0.2s ease;
}

.latest-news-block-news-detail h2{
    margin-bottom: 38px;
}

.subscribe-email-label.news-subs{
    color: #1A1A2B;
}

.container-category-page{
    display: flex;
    flex-direction: column;
    background: white;
    width: 100%;
    padding: 80px 0;
    align-items: center;
}

.container-category-page h1{
    color: #1A1A2B;
    font-size: 40px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: -.04em;
    margin-bottom: 80px;
}

.category-tiles-categories-page-wrapper{
    display: flex;
    width: 100%;
    border-radius: 32px;
    background: #F5F5F5;
    flex-direction: column;
    gap: 24px;
}

.category-tiles-categories-page{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.category-tiles-categories-page-wrapper-inner{
    max-width: 1282px;
    display: flex;
    margin: 0 auto;
    width: 100%;
    flex-direction: column;
    padding: 40px 0;
}

.index-custom-select-container.category-page{
    width: 220px;
}

.button-404{
    display: flex;
    height: 48px;
    justify-content: center;
    align-items: center;
    width: 142px;
}

.button-404:hover{
    color: #7171BF;
}

.container-404-page{
    display: flex;
    padding: 80px 0 0;
    gap: 32px;
    flex-direction: column;
    align-items: center;
    min-height: 800px;
}

.container-404-page h1{
    font-size: 56px;
    margin-bottom: 0;
    line-height: 56px;
    letter-spacing: -.04em;
    color: #8080D8;
    font-weight: 700;
}

.container-404-page p{
    font-size: 18px;
    margin-bottom: 0;
    line-height: 22px;
    letter-spacing: -.04em;
    color: #1A1A2B;
    font-weight: 400;
    text-align: center;
}

@media (max-width: 820px) {
    .review-container-top {
        flex-wrap: wrap;
    }

    .events-section::before, .events-section::after {
        display: none;
    }

    .recommended-top {
        margin-bottom: 16px;
    }

    .recommended-places {
        padding: 32px;
    }

    .footer-bottom-content {
        display: flex;
    }

    .copyright {
        margin: 0;
    }

    .place-list-container {
        padding: 40px 24px;
    }

    .event-card-fav-page, .place-card-fav-page {
        width: 49%;
    }

    .event-card-fav-page-image {
        width: 100%;
        height: 260px;
    }

    .place-filters-form {
        width: 100%;
    }

    .place-filter-field {
        flex: none;
        width: 49%;
    }

    .place-filter-button {
        margin-top: 10px;
        width: 100%;
    }

    .bowling-filter-container > h3, .concerts-filter-container > h3 {
        max-width: 100%;
    }

    .establishment-top-section {
        padding: 24px;
    }

    .establishment-info-block {
        width: 100%;
    }

    .establishment-contacts-block {
        width: 100%;
    }

    .establishment-map-container, .establishment-contacts-block, .establishment-description-block {
        margin: 24px;
        margin-bottom: 0;
    }

    .establishment-reviews-section {
        padding: 24px;
    }

    .recommended-places-bottom {
        padding: 24px;
    }

    .event-cover-image {
        width: 100%;
    }

    .container-category-page {
        padding: 40px 0;
    }

    .container-category-page h1 {
        margin-bottom: 40px;
    }

    .category-tiles-categories-page-wrapper-inner {
        padding: 24px;
    }

    .category-card {
        max-width: 49%;
        height: 100px;
    }

    .news-list-sorter-container {
        padding: 40px 24px;
    }

    .favorites-container h1 {
        margin-bottom: 40px;
    }

    .favorites-container {
        padding: 40px 0;
    }

    .favorites-content {
        padding: 40px 24px;
    }

    .favorites-content {
        margin: 0;
    }

    .favorites-grid {
        width: 100%;
        display: flex;
        gap: 16px;
        margin-bottom: 40px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .favorite-card {
        width: calc(50% - 8px);
        height: 334px;
    }

    .fav-card-image {
        width: 100%;
    }

    .profile-editor {
        flex-wrap: wrap;
        padding: 0 24px;
        flex-direction: column;
        gap: 16px;
        min-height: 1200px;
    }

    .profile-editor__sidebar {
        margin-right: 0;
        width: 100%;
        height: auto;
        flex-direction: row;
    }

    .profile-editor__tabs {
        flex-direction: row;
        width: 100%;
    }

    .profile-editor__form {
        max-width: 100%;
    }

    .extended-editor-input.profile-editor__input, .extended-editor-input.profile-editor__textarea, .custom-enhanced-select-trigger {
        width: 100%;
    }

    .extended-editor-button.profile-editor__submit {
        width: 100%;
    }

    .news-detail {
        padding: 40px 24px;
    }

    .news-detail img {
        height: 313px;
        object-fit: cover;
    }

    .latest-news-container-news-detail {
        padding: 40px 24px;
    }

    .subscribe-section {
        margin-bottom: 0;
    }

    .event-card-top-fav-page {
        width: 100%;
        max-width: calc(100% - 32px);
    }

    .contacts-section {
        padding: 0;
    }

    .contacts-container {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__container {
        min-height: 423px;
        padding: 0 24px;
    }

    .hero {
        background-position: bottom;
    }

    .about {
        padding: 40px 24px 0;
    }

    .about__label {
        flex-wrap: wrap;
        gap: 24px;
    }

    .benefits__grid {
        flex-wrap: wrap;
        margin: 0 auto 40px;
    }

    .benefit-card {
        width: 100%;
        height: auto;
    }

    .organizers {
        padding: 40px 24px;
    }

    .organizers__grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .organizer-feature {
        max-width: 100%;
    }

    .cta {
        padding: 0 0 80px;
    }

    .place-main-photo {
        width: 100%;
    }
}


@media (max-width: 480px) {
    .container-category-page {
        padding: 56px 0;
    }

    .container-category-page h1 {
        font-size: 28px;
        line-height: 28px;
        font-weight: 600;
        margin-bottom: 56px;
    }

    .category-tiles-categories-page-wrapper-inner {
        padding: 40px 12px;
    }

    .index-select-trigger {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
        height: 40px;
    }

    .mb-4, .my-4 {
        margin-bottom: 18px !important;
    }

    .category-tiles-categories-page {
        gap: 16px;
    }

    .news-list-sorter-container {
        padding: 56px 0 56px 12px;
    }

    .news-category-tag.filter-top-row {
        height: 24px;
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -.04em;
        padding: 0 10px;
    }

    .news-list-sorter-category-filter-row {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .news-list-sorter-category-filter-row::-webkit-scrollbar {
        display: none;
    }

    .blog-page-list {
        padding-top: 24px !important;
    }

    .subscribe-inner.news-subscribe{
        padding: 23px 19px 153px;
        margin-bottom: 0;
    }

    .news-detail {
        padding: 59px 12px 56px;
    }

    .news-detail .publication-date {
        font-size: 14px;
        line-height: 14px;
    }

    .news-category-tag {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -.04em;
    }

    .news-detail h1 {
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 24px;
    }

    .news-detail img {
        object-fit: cover;
        height: 177px;
        margin-bottom: 24px;
    }

    .news-detail p {
        line-height: 18px;
        font-size: 14px;
        margin: 0;
    }

    .latest-news-container-news-detail {
        padding: 40px 0 40px 12px;
        margin-bottom: 56px;
    }

    .latest-news-block-news-detail {
        margin: 0;
    }

    .latest-news-row {
        max-width: 296px;
    }

    .establishment-container {
        margin: 24px 0 40px;
    }

    .establishment-top-section {
        flex-direction: column;
        padding: 0 12px;
        gap: 8px;
        margin-bottom: 0;
    }

    .establishment-info-block {
        width: 100%;
        height: auto;
        min-height: 288px;
    }

    .establishment-rating-score, .establishment-age-rating {
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
        gap: 4px;
        letter-spacing: -.04em;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .establishment-title {
        font-size: 22px;
        line-height: 24px;
        letter-spacing: -.04em;
    }

    .establishment-category {
        line-height: 16px;
        letter-spacing: -.04em;
        margin-bottom: 8px;
    }

    .establishment-schedule {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
        padding: 6px 8px;
        margin-bottom: 24px;
    }

    .establishment-book-btn {
        height: 40px;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
        max-width: 272px;
        border-radius: 10px;
    }

    .event-cover-image {
        width: 100%;
        height: 212px;
    }

    .event-cover-block {
        margin-bottom: 40px;
    }

    .establishment-map-container {
        margin: 0 12px 16px 12px;
    }

    .establishment-map-container-top {
        flex-wrap: wrap;
    }

    .establishment-map-container-top > h3 {
        margin-bottom: 8px;
        font-size: 22px;
        line-height: 24px;
    }

    .establishment-map-container-top > p {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -.04em;
    }

    #yandex-map {
        height: 240px;
    }

    .establishment-contacts-title {
        font-size: 22px;
        letter-spacing: -.04em;
    }

    .establishment-contact-label {
        line-height: 14px;
        font-size: 14px;
        letter-spacing: -.04em;
    }

    .establishment-contact-value {
        line-height: 14px;
        font-size: 14px;
    }

    .establishment-info-section {
        margin: 0 12px 40px 12px;
    }

    .establishment-description-title {
        line-height: 24px;
        font-size: 22px;
        margin-bottom: 16px;
        letter-spacing: -.04em;
    }

    .establishment-description-text {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -.04em;
    }

    .placelist-page-card-age-rating {
        font-weight: 500;
        font-size: 12px;
        letter-spacing: -.04em;
        line-height: 12px;
    }

    .establishment-logo {
        width: 32px;
        height: 32px;
    }

    .place-logo-detail-page {
        width: 32px;
        height: 32px;
    }

    .establishment-slider {
        height: 212px;
    }

    .establishment-slider-block {
        margin-bottom: 40px;
    }

    .establishment-slider-dots {
        padding: 4px 8px;
    }

    .establishment-reviews-section {
        padding: 0 12px 40px 12px;
    }

    .establishment-reviews-title, .establishment-reviews-count {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 18px;
    }

    .label-left {
        padding-left: 4px;
    }

    .star-rating {
        width: 100%;
        min-width: 0;
    }

    .hint-container {
        flex-wrap: wrap;
    }

    .hint-wrapper {
        margin-bottom: 24px;
    }

    .establishment-review-item {
        flex-wrap: wrap;
    }

    .establishment-review-header {
        flex-wrap: wrap;
    }

    .btn-delete-review {
        right: auto;
    }

    .recommended-places-bottom {
        padding: 40px 12px;
    }

    .establishment-container.review-special {
        margin-bottom: 0;
    }

    .favorites-container {
        padding: 56px 0;
    }

    .favorites-container h1 {
        font-size: 28px;
        line-height: 28px;
        letter-spacing: -.04em;
        margin-bottom: 56px;
    }

    .favorites-content {
        padding: 40px 12px;
        margin-bottom: 0;
    }

    .favorites-header h2{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 0;
    }

    .favorites-header {
        align-items: center;
        margin-bottom: 24px;
    }

    .event-card-fav-page, .place-card-fav-page {
        width: 100%;
    }

    .favorites-col-places h2 {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 24px;
    }

    .place-main-photo {
        width: 100%;
    }

    .empty-favorites-buttons {
        width: 100%;
        flex-wrap: wrap;
    }

    .profile-container {
        margin: 24px auto 56px auto;
        padding: 0 12px;
    }

    .profile-card {
        padding: 24px;
    }

    .profile-header {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 24px;
    }

    .profile-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        flex-direction: column;
    }

    .user-details {
        align-items: center;
    }

    .user-name {
        text-align: center;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: -.04em;
    }

    .avatar {
        width: 104px;
        height: 104px;
    }

    .user-city {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -.04em;
        margin: 0 0 24px 0;
    }

    .user-stats {
        justify-content: space-between;
        width: 100%;
    }

    .stat-item {
        width: 100%;
        height: 96px;
    }

    .stat-label {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .stat-value {
        font-size: 24px;
        line-height: 24px;
    }

    .profile-description p {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -.04em;
        margin-bottom: 24px;
    }

    .edit-btn {
        height: 40px;
        border-radius: 12px;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .edit-btn svg {
        width: 16px;
    }

    .profile-editor {
        margin: 24px auto 56px;
        width: 100%;
        min-height: 0px;
        flex-wrap: wrap;
        padding: 0 12px;
        flex-direction: column;
        gap: 16px;
    }

    .profile-editor__sidebar {
        margin-right: 0;
        width: 100%;
        flex-direction: row;
        height: 38px;
        padding: 4px;
        border-radius: 8px;
    }

    .profile-editor__content {
        width: 100%;
        min-height: 800px;
        position: relative;
        overflow: hidden;
    }

    .profile-editor__tabs {
        display: flex;
        flex-direction: row;
        width: 100%;
    }

    .profile-editor__tab {
        gap: 6px;
        height: 30px;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
        white-space: nowrap;
        padding: 0 15px;
    }

    .profile-editor__tab-icon {
        width: 18px;
        height: 18px;
    }

    .profile-editor__title {
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 24px;
    }

    .profile-editor__extended-container {
        padding: 24px;
    }

    .extended-editor-input.profile-editor__input {
        width: 100%;
        height: 40px;
        font-size: 14px;
        line-height: 16px;
    }

    .custom-enhanced-select-trigger {
        width: 100%;
        height: 40px;
    }

    .extended-editor-input.profile-editor__textarea {
        width: 100%;
        font-size: 14px;
        line-height: 16px;
    }

    .extended-editor-button.profile-editor__submit {
        width: 100%;
        font-size: 14px;
    }

    .custom-enhanced-select-trigger {
        font-size: 14px;
        line-height: 16px;
        letter-spacing: -.04em;
    }

    .profile-editor__input {
        width: 100%;
        height: 40px;
        font-size: 14px;
        line-height: 14px;
    }

    .profile-editor__content-top-block {
        padding: 24px;
    }

    .profile-editor__password-field .profile-editor__input {
        padding-right: 0;
    }

    .profile-edit-row-container {
        height: auto;
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .profile-editor__field {
        width: 100%;
    }

    .profile-editor__submit {
        width: 100%;
        height: 40px;
        font-size: 14px;
        line-height: 14px;
    }

    .profile-edit-row-current-pass {
        height: 40px;
        width: 100%;
    }

    .profile-editor__content-bottom-block {
        border-radius: 16px;
    }

    .profile-editor__danger-title {
        font-size: 22px;
        line-height: 22px;
    }

    .profile-editor__danger-text {
        font-size: 14px;
    }

    .btn-delete-account {
        width: 144px;
        font-size: 14px;
        line-height: 14px;
        height: 40px;
    }

    .footer-brand {
        margin-bottom: 32px;
    }

    .tagline {
        font-size: 16px;
        line-height: 18px;
    }

    .footer-column h3 {
        font-size: 16px;
        line-height: 16px;
        letter-spacing: -.04em;
        margin-bottom: 12px;
    }

    .footer-links li {
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 12px;
    }

    .tab-content {
        padding: 25px;
    }

    .profile-event-card {
        flex-wrap: wrap;
    }

    .profile-event-date-wrapper {
        order: -1;
        width: 100%;
    }

    .content-section {
        width: 100%;
    }

    .custom-star-rating.review-tab-profile {
        margin-left: auto;
    }

    .profile-event-category {
        letter-spacing: -.04em;
        line-height: 12px;
        font-size: 12px;
    }

    .profile-event-title a {
        letter-spacing: -.04em;
        font-size: 14px;
        line-height: 18px;
    }

    .profile-event-location {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .review-text h5 {
        letter-spacing: -.04em;
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 8px;
    }

    .review-text p {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: -.04em;
    }

    .tab-btn {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .favorites-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .favorite-card {
        width: 100%;
        height: auto;
        max-height: 334px;
        margin-bottom: 24px;
    }

    .fav-card-image {
        width: 100%;
        height: 212px;
    }

    .info-item span {
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .info-list {
        gap: 8px;
    }

    .no-favorites p {
        font-size: 14px;
        line-height: 24px;
        margin: 0;
    }

    .copyright {
        margin: 0;
    }

    .footer-bottom-content {
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .footer-bottom-column {
        margin-bottom: 0;
    }

    .footer-bottom-column:last-child {
        margin-bottom: 40px;
        margin-top: 16px;
    }

    .contacts-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contacts-section {
        min-height: 0;
        padding: 56px 12px;
    }

    #app {
        padding: 0;
    }

    .contacts-header {
        text-align: center;
        margin-bottom: 56px;
    }

    .contacts-title {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 32px;
        letter-spacing: -.04em;
    }

    .contacts-subtitle {
        letter-spacing: -.04em;
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 18px;
        height: 36px;
    }

    .contacts-info {
        gap: 8px;
        margin-bottom: 16px;
        flex-wrap: wrap;
    }

    .contact-block {
        max-width: 100%;
    }

    .contacts-right {
        max-width: 100%;
    }

    .contact-title {
        letter-spacing: -.04em;
        line-height: 1;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .contact-details p {
        letter-spacing: -.04em;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 18px;
    }

    .zaglushka {
        width: 100%;
        height: 100%;
    }

    .container-404-page {
        padding: 56px 0;
        gap: 24px;
        min-height: 308px;
    }

    .container-404-page p {
        font-size: 14px;
        line-height: 18px;
    }

    .button-404 {
        max-width: 111px;
        padding: 0 18px;
        font-size: 14px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .suggest-event-container {
        margin: 0;
        padding: 24px 12px 56px 12px;
        width: 100%;
        gap: 24px;
        flex-wrap: wrap;
    }

    .suggest-event-header {
        margin-bottom: 0;
    }

    .suggest-event-back-button {
        width: 97px;
        height: 40px;
        font-size: 14px;
        line-height: 14px;
    }

    .suggest-event-form-block h1 {
        font-size: 28px;
        line-height: 32px;
        max-width: 172px;
    }

    .suggest-event-form-footer {
        padding: 24px;
    }

    .suggest-event-form-container {
        width: 100%;
    }

    .suggest-event-form-row {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .suggest-event-form-section h2 {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 24px;
    }

    .suggest-event-form-section {
        padding: 24px 24px 0 24px;
    }

    .suggest-event-form-group input, .suggest-event-form-group textarea {
        height: 40px;
        font-size: 14px;
        line-height: 14px;
    }

    .suggest-event-form-group {
        margin-bottom: 16px;
    }

    .suggest-event-custom-select select {
        padding: 0 12px;
        height: 40px;
        font-size: 14px;
        line-height: 1;
    }

    .suggest-event-file-upload-area {
        padding: 24px;
        min-height: 152px;
    }

    .suggest-event-upload-content {
        top: 24px;
    }

    .suggest-event-checkbox-group {
        gap: 8px;
        margin-bottom: 16px;
    }

    .suggest-event-checkbox-group label {
        font-weight: 400;
        font-size: 12px;
        letter-spacing: -.04em;
        line-height: 14px;
        color: #000;
    }

    .suggest-event-submit-button {
        padding: 13px 0;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
    }

    .subscribe-email {
        height: 40px;
        font-size: 14px;
        line-height: 14px;
    }

    .place-filters-form, .events-sp-form {
        padding: 16px;
        background: #E9E9F2;
        border-radius: 24px;
        width: 100%;
    }

    .place-filters-block {
        padding: 0 12px;
    }

    .place-filters-row {
        gap: 8px;
    }

    .buttons-wrapper {
        margin-bottom: 24px;
    }

    .place-filters-section {
        width: 100%;
    }

    .place-filters-title {
        max-width: 319px;
        font-size: 28px;
        margin: 56px auto 24px;
        line-height: 28px;
        letter-spacing: -.04em;
    }

    .place-filter-field {
        width: 100%;
        margin-bottom: 0;
    }

    .place-filter-label {
        display: block;
        font-size: 11px;
        font-weight: 500;
        margin-bottom: 6px;
        color: #0D0D16;
    }

    .place-select-trigger {
        border-radius: 12px;
        font-size: 14px;
        height: 40px;
    }

    .place-native-select {
        width: 100%;
        height: 44px;
        padding: 0 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
        font-size: 16px; /* Увеличиваем для удобства на мобильных */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
    }

    .nearest-events-button {
        height: 24px;
        font-size: 12px;
        letter-spacing: -.04em;
        line-height: 12px;
    }

    .sort-button {
        width: 31px;
        height: 24px;
    }

    .sort-button svg {
        width: 16px;
    }

    .place-filter-button {
        width: 100%;
        height: 40px;
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .place-list-container {
        padding: 40px 12px;
    }

    .list-row {
        width: 100%;
        flex-direction: column;
        gap: 24px;
    }

    .event-card-fav-page.place-card {
        width: 100%;
    }

    .event-card-fav-page-image {
        width: 100%;
        height: 236px;
    }

    .event-card-top-fav-page {
        width: 100%;
        max-width: calc(100% - 32px);
    }

    .category-list-event-card p {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -.04em;
    }

    .a-fav-page-title {
        font-size: 16px;
        line-height: 18px;
        letter-spacing: -.04em;
    }

    .event-date-fav-page>p {
        font-size: 12px;
        line-height: 12px;
        letter-spacing: -.04em;
    }

    .event-date-fav-page svg {
        height: 16px;
        width: 16px;
    }

    .event-date-fav-page {
        gap: 4px;
    }

    .show-more-btn {
        height: 40px;
        border-radius: 10px;
        letter-spacing: -.04em;
        font-size: 14px;
    }

    .concerts-filter-block, .bowling-filter-block {
        padding: 56px 12px;
    }

    .concerts-filter-container {
        background-color: #4CD585;
        background-image: url(/static/img/concerts-bg-mobile.png);
    }

    .bowling-filter-container {
        background-color: #7CAEFF;
        background-image: url(/static/img/bowling-bg-mobile.png);
    }

    .concerts-filter-container, .bowling-filter-container {
        gap: 16px;
        padding: 40px 46px 23px 24px;
        border-radius: 32px;
        background-position: bottom;
        background-size: 90%;
        width: 100%;
        max-width: 100%;
        min-height: 360px;
    }

    .concerts-filter-container > h3 {
        font-size: 22px;
        line-height: 24px;
        max-width: 100%;
        letter-spacing: -.04em;
    }

    .bowling-filter-container > h3 {
        font-size: 22px;
        line-height: 24px;
        max-width: 100%;
        letter-spacing: -.04em;
    }

    .subscribe-section {
        padding: 0 12px;
    }

    .subscribe-inner {
        margin: 40px auto 56px;
    }

    .places-page-cont {
        margin-top: 24px;
    }

    .place-info h3 a {
        font-weight: 400;
        letter-spacing: -.04em;
    }

    .place-address {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: -.04em;
    }

    .place-logo {
        width: 32px;
        height: 32px;
    }

    .place-type-recommended {
        line-height: 12px;
    }

    .places-list {
        gap: 24px;
    }
}
