/* ===== ГЛОБАЛЬНЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #F7F2EB;
    color: #2E2A29;
    padding-top: 70px;
}

h1,
h2,
h3 {
    font-family: 'PT Serif', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    background: #C8795A;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #b0684a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 121, 90, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #C8795A;
    color: #C8795A;
}

.btn-outline:hover {
    background: #C8795A;
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(123, 158, 135, 0.15);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #2E2A29;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: #6B6360;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 48px;
}

.badge-text {
    display: inline-block;
    background: rgba(123, 158, 135, 0.15);
    color: #7B9E87;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.hidden {
    display: none !important;
}

/* ===== МЕНЮ ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(247, 242, 235, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(123, 158, 135, 0.15);
    transition: box-shadow 0.3s;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: 'PT Serif', serif;
    font-size: 22px;
    font-weight: 700;
    color: #2E2A29;
    text-decoration: none;
}

.logo span {
    color: #7B9E87;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: #2E2A29;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #7B9E87;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B9E87;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 10px;
}

.auth-buttons .btn {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-login {
    background: transparent;
    color: #2E2A29;
    border: 1px solid #D4CFC8;
}

.btn-login:hover {
    background: #2E2A29;
    color: #fff;
    border-color: #2E2A29;
    transform: none;
    box-shadow: none;
}

.btn-register {
    background: #7B9E87;
    border: 1px solid #7B9E87;
}

.btn-register:hover {
    background: #6a8a75;
    border-color: #6a8a75;
    transform: none;
    box-shadow: none;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.burger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: #2E2A29;
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== ГЛАВНЫЙ ЭКРАН ===== */
.hero {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #F5F0E8 0%, #E8EDE5 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.tree-photo-block {
    position: relative;
    width: 500px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tree-photo-block .tree-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.85;
    position: absolute;
    top: 0;
    left: 0;
}

.tree-photo-block .photo-overlay {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(44, 62, 52, 0.15);
    margin-top: 30px;
}

.tree-photo-block .photo-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tree-photo-block .name-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 12px 32px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

.tree-photo-block .name-overlay h1 {
    font-size: 24px;
    font-weight: 700;
    color: #2E2A29;
}

.tree-photo-block .name-overlay .speciality {
    font-size: 13px;
    color: #6B6360;
    font-weight: 400;
}

.hero-text {
    max-width: 480px;
    flex-shrink: 0;
}

.hero-text h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2E2A29;
}

.hero-text h2 span {
    color: #7B9E87;
}

.hero-text p {
    font-size: 18px;
    color: #5A5552;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-text .hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== ОБО МНЕ ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 17px;
    color: #3D3A37;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-text .highlight {
    color: #7B9E87;
    font-weight: 600;
}

.about-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.spec-card {
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #7B9E87;
}

.spec-card .spec-icon {
    font-size: 24px;
    margin-bottom: 6px;
    color: #7B9E87;
}

.spec-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.spec-card p {
    font-size: 14px;
    color: #6B6360;
}

/* ===== УСЛУГИ ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: #fff;
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(123, 158, 135, 0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.service-card .icon-text {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
    color: #7B9E87;
}

.service-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-card p {
    font-size: 14px;
    color: #6B6360;
    line-height: 1.6;
}

/* ===== ОТЗЫВЫ ===== */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.review-card {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(123, 158, 135, 0.08);
}

.review-card .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-card .review-name {
    font-weight: 600;
    font-size: 16px;
}

.review-card .review-date {
    font-size: 13px;
    color: #A8A29E;
}

.review-card .review-text {
    color: #3D3A37;
    font-size: 15px;
    line-height: 1.7;
}

.review-card .review-rating {
    color: #D4A84B;
    letter-spacing: 2px;
    font-size: 18px;
    margin-bottom: 4px;
}

.review-form {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    max-width: 640px;
    margin: 0 auto;
}

.review-form .form-group {
    margin-bottom: 18px;
}

.review-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #3D3A37;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D4CFC8;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    background: #FBF9F6;
    transition: border 0.3s;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #7B9E87;
    box-shadow: 0 0 0 3px rgba(123, 158, 135, 0.1);
}

.review-form textarea {
    min-height: 100px;
    resize: vertical;
}

.review-form .rating-select {
    display: flex;
    gap: 8px;
    font-size: 28px;
    cursor: pointer;
}

.review-form .rating-select span {
    cursor: pointer;
    transition: 0.2s;
    color: #D4CFC8;
}

.review-form .rating-select span.active {
    color: #D4A84B;
}

.review-form .rating-select span:hover {
    transform: scale(1.15);
}

/* ===== ЗАПИСЬ ===== */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 960px;
    margin: 0 auto;
}

.booking-calendar {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.booking-calendar .calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.booking-calendar .calendar-nav button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #2E2A29;
    padding: 4px 12px;
    border-radius: 8px;
    transition: 0.2s;
}

.booking-calendar .calendar-nav button:hover {
    background: #F0EDE8;
}

.booking-calendar .calendar-nav .month-year {
    font-weight: 600;
    font-size: 18px;
}

.booking-calendar .weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: #6B6360;
    margin-bottom: 8px;
}

.booking-calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-calendar .days .day {
    padding: 10px 0;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    background: #FBF9F6;
    position: relative;
    transition: 0.2s;
}

.booking-calendar .days .day:hover:not(.empty):not(.disabled) {
    background: #E8EDE5;
}

.booking-calendar .days .day.selected {
    background: #7B9E87;
    color: #fff;
    font-weight: 600;
}

.booking-calendar .days .day.disabled {
    color: #D4CFC8;
    cursor: not-allowed;
}

.booking-calendar .days .day.empty {
    background: transparent;
    cursor: default;
}

.booking-calendar .days .day.has-slot::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #7B9E87;
}

.booking-calendar .days .day.selected.has-slot::after {
    background: #fff;
}

.time-slots {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EDEAE5;
}

.time-slots h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: #3D3A37;
}

.time-slots .slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slots .slot {
    padding: 8px 20px;
    border: 2px solid #D4CFC8;
    border-radius: 30px;
    font-size: 14px;
    cursor: pointer;
    background: #FBF9F6;
    font-weight: 500;
    transition: 0.2s;
}

.time-slots .slot:hover:not(.booked) {
    border-color: #7B9E87;
    background: #E8EDE5;
}

.time-slots .slot.selected-slot {
    border-color: #7B9E87;
    background: #7B9E87;
    color: #fff;
}

.booking-form {
    background: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.booking-form h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.booking-form .price-tag {
    color: #7B9E87;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    display: block;
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #3D3A37;
}

.booking-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D4CFC8;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    background: #FBF9F6;
    transition: border 0.3s;
}

.booking-form input:focus {
    outline: none;
    border-color: #7B9E87;
    box-shadow: 0 0 0 3px rgba(123, 158, 135, 0.1);
}

.booking-form .selected-info {
    background: #F5F0E8;
    padding: 14px 18px;
    border-radius: 12px;
    margin: 16px 0;
    font-size: 15px;
    color: #3D3A37;
}

.booking-form .selected-info strong {
    color: #2E2A29;
}

/* ===== ЛИЧНЫЙ КАБИНЕТ ===== */
.profile-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.profile-container .form-group {
    margin-bottom: 18px;
}

.profile-container label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: #3D3A37;
}

.profile-container input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D4CFC8;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    background: #FBF9F6;
    transition: border 0.3s;
}

.profile-container input:focus {
    outline: none;
    border-color: #7B9E87;
    box-shadow: 0 0 0 3px rgba(123, 158, 135, 0.1);
}

.profile-container .btn {
    width: 100%;
}

.profile-container .profile-divider {
    border: none;
    border-top: 1px solid #EDEAE5;
    margin: 24px 0;
}

.profile-container .profile-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #2E2A29;
}

.profile-container .profile-subtitle {
    font-size: 14px;
    color: #6B6360;
    margin-bottom: 20px;
}

/* ===== КОНТАКТЫ ===== */
.contacts-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}

.contacts-grid .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contacts-grid .contact-item .icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: #7B9E87;
}

.contacts-grid .contact-item .label {
    font-size: 14px;
    color: #6B6360;
    margin-bottom: 2px;
}

.contacts-grid .contact-item .value {
    font-size: 18px;
    font-weight: 600;
    color: #2E2A29;
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 42, 41, 0.5);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    padding: 40px;
    border-radius: 28px;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal .close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6B6360;
}

.modal h2 {
    font-size: 26px;
    margin-bottom: 4px;
}

.modal .modal-sub {
    color: #6B6360;
    margin-bottom: 24px;
}

.modal .form-group {
    margin-bottom: 16px;
}

.modal label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #3D3A37;
}

.modal input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D4CFC8;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    background: #FBF9F6;
    transition: border 0.3s;
}

.modal input:focus {
    outline: none;
    border-color: #7B9E87;
    box-shadow: 0 0 0 3px rgba(123, 158, 135, 0.1);
}

.modal .btn {
    width: 100%;
    margin-top: 8px;
}

.modal .switch-auth {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #6B6360;
}

.modal .switch-auth a {
    color: #7B9E87;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
}

/* ===== TOAST (УВЕДОМЛЕНИЯ) ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #2E2A29;
    color: #fff;
    padding: 16px 28px;
    border-radius: 16px;
    font-size: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    background: #7B9E87;
}

.toast.error {
    background: #D48A7A;
}

/* ===== ФУТЕР ===== */
footer {
    background: #2E2A29;
    color: #D4CFC8;
    padding: 32px 0;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #7B9E87;
    text-decoration: none;
}

/* ===== АДМИН-ПАНЕЛЬ ===== */
.admin-panel {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    margin-top: 30px;
}

.admin-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid #EDEAE5;
    padding-bottom: 16px;
    flex-wrap: wrap;
}

.admin-tabs button {
    padding: 10px 24px;
    border: none;
    background: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: #6B6360;
    border-radius: 30px;
    transition: 0.3s;
}

.admin-tabs button.active {
    background: #7B9E87;
    color: #fff;
}

.admin-tabs button:hover:not(.active) {
    background: #F0EDE8;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-review-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #F0EDE8;
    gap: 16px;
    flex-wrap: wrap;
}

.admin-review-item .review-info {
    flex: 1;
    min-width: 200px;
}

.admin-review-item .review-info .r-name {
    font-weight: 600;
}

.admin-review-item .review-info .r-text {
    color: #5A5552;
    font-size: 14px;
}

.admin-review-item .review-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-review-item .review-actions button {
    padding: 6px 16px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.btn-approve {
    background: #7B9E87;
    color: #fff;
}

.btn-approve:hover {
    background: #6a8a75;
}

.btn-hide {
    background: #E8D5D0;
    color: #8A5A4A;
}

.btn-hide:hover {
    background: #DCC4BE;
}

.schedule-management {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.schedule-management .date-list {
    max-height: 300px;
    overflow-y: auto;
}

.schedule-management .date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #FBF9F6;
    border-radius: 12px;
    margin-bottom: 8px;
}

.schedule-management .date-item .times {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.schedule-management .date-item .times .time-tag {
    background: #E8EDE5;
    padding: 2px 12px;
    border-radius: 12px;
    font-size: 13px;
}

.schedule-management .date-item .remove-date {
    background: none;
    border: none;
    color: #b05a5a;
    cursor: pointer;
    font-size: 18px;
}

.schedule-management .add-date-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-management .add-date-form input {
    padding: 10px 16px;
    border: 1px solid #D4CFC8;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
}

.schedule-management .add-date-form .time-inputs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.schedule-management .add-date-form .time-inputs input {
    flex: 1;
    min-width: 80px;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .tree-photo-block {
        width: 400px;
        height: 480px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text .hero-buttons {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .schedule-management {
        grid-template-columns: 1fr;
    }

    .admin-panel {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background: rgba(247, 242, 235, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(123, 158, 135, 0.15);
        backdrop-filter: blur(12px);
    }

    .nav-menu.open {
        display: flex;
    }

    .burger {
        display: flex;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
    }

    .auth-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .tree-photo-block {
        width: 320px;
        height: 400px;
    }

    .tree-photo-block .photo-overlay {
        width: 160px;
        height: 160px;
    }

    .tree-photo-block .name-overlay {
        padding: 8px 20px;
        white-space: normal;
    }

    .tree-photo-block .name-overlay h1 {
        font-size: 18px;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .review-form {
        padding: 24px;
    }

    .about-specs {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        gap: 30px;
    }

    .modal {
        padding: 28px 20px;
    }

    .admin-panel {
        padding: 24px;
    }

    .admin-tabs {
        gap: 8px;
    }

    .admin-tabs button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .schedule-management {
        grid-template-columns: 1fr;
    }

    .profile-container {
        padding: 24px;
    }
}