* {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

ul,
li {
    list-style-type: none;
}

a {
    color: black;
    text-decoration: none;
}

:root {
    --main-color: #EB662B;
    --second-color: #05073C;
}

html,
body {
    height: 100%;
}

body:not(.admin-page) {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}


.header-bottom {
    max-width: 100%;
    background-image: url(/images/Header\ img.png);
    height: 860px;
    background-position: center;
    object-fit: cover;
    background-repeat: no-repeat;
    background-color: rgba(235, 102, 43, 0.05);
    z-index: 999;
    padding-top: 40px;
}

.wrapper {
    max-width: 1290px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 108px;
}

.header_left-side {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: 100px;
    margin-right: 143px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nav-item {
    font-size: 16px;
    transition: 0.3s;
}

.nav-item:hover {
    scale: 1.1;
    transition: 0.3s;
}

.nav-item-active a {
    color: var(--main-color);
}

.header_right-side {
    display: flex;
    gap: 30px;
    align-items: center;
}

.auto-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

.login-btn {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 200px;
    padding: 12px 18px;
    font-weight: bold;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn a {
    color: var(--main-color);
}

.header-title {
    text-align: center;
    font-size: 60px;
    font-weight: 600;
    background-image: linear-gradient(to right, #EB662B, #4C43C4);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    margin-bottom: 28px;
}

.search-form {
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 65%;
    height: 5rem;
    background-color: white;
    border-radius: 200px;
    margin: 0 auto;
    justify-content: center;
}

.searchForm_form {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.searchFormItem {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.searchFormItem_text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-left: 10px;
}

.searchFormItem_title {
    font-weight: normal;
    font-size: 15px;
    margin-bottom: 2px;
}

.searchFormItem_p {
    color: #717171;
}

.searchFormItem_input {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid black;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
    accent-color: var(--main-color);
    font-size: 10px;
    margin-left: 40px;
}

.searchFormItem_input:checked {
    appearance: auto;
    clip-path: circle(49% at 50% 50%);
    background-color: #EB662B;
}

label {
    font-size: 14px;
}

.popular {
    margin: 120px 0;
}

.popularGallery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    margin-bottom: 120px;
}

.popularGalleryItem {
    position: relative;
    display: inline-block;
}

.popular_text-overlay {
    position: absolute;
    bottom: 25px;
    left: 30px;
    color: white;
    font-size: 20px;
    transition: 0.2s;
    cursor: pointer;
}

.popular_text-overlay:hover {
    color: var(--main-color);
}

.popularGalleryItem_img {
    border-radius: 15px;
    border: none;
    cursor: pointer;
    display: block;
}

.popularGalleryColumn-1 {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    column-gap: 30px;
}

.popularGalleryColumn-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 30px;
}

.popular-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.popular-header h1 {
    font-size: 30px;
}

.popular-header p {
    cursor: pointer;
}

.tourz {
    margin-bottom: 54px;
}

.tourz-title {
    font-size: 30px;
    margin-bottom: 50px;
}

.tourzCollectionItems {
    display: grid;
    grid-template-columns: repeat(auto-fill, 255px);
    column-gap: 75px;
    justify-content: space-between;
}

.tourzItem {
    max-width: 255px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.tourzItem img {
    max-width: 60px;
    width: 100%;
    height: 60px;
    margin-bottom: 30px;
    border: none;
}

.tourzItem h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.featuredTrips {
    width: 100%;
    background-color: rgba(235, 102, 43, 0.05);
    padding: 120px 0;
}

.featured-header {
    color: black;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.featured-header h1 {
    font-size: 30px;
}

.featured-header p {
    font-size: 16px;
}

.TripCollectionItems {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    row-gap: 30px;
    column-gap: 30px;
    justify-content: space-between;
    align-items: start;
}

.TripItem {
    background-color: white;
    border-radius: 15px;
    width: auto;
    height: auto;
    border: 1px solid #E7E6E6;
    overflow: hidden;
}

.TripItem_top {
    display: block;
    cursor: pointer;
}

.TripItem_top a {
    display: block;
}

.TripItem_top img {
    display: block;
    width: 100%;
    max-height: 220px;
    min-height: 220px;
    object-fit: cover;
    border: none;
}

.TripItem_bottom {
    padding: 15px 22px;
}

.country-text {
    color: #717171;
    font-size: 14px;
    margin-bottom: 10px;
}

.tour-name {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
}

.tour-name:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.TripItem_otzivi {
    display: flex;
    align-items: center;
    gap: 12px;
}

.TripItem_otzivi p {
    font-size: 14px;
}

.star.filled {
    color: #FFD700;
    font-size: 18px;
}

.star.empty {
    color: #ccc;
    font-size: 18px;
}

.review-count {
    color: #888;
    font-size: 14px;
    margin-left: 5px;
}

.stars-container {
    display: flex;
    align-items: center;
    margin: 5px 0;
}

.TripItem_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding-top: 18px;
    border-top: 1px solid #E7E6E6;
}

.price span {
    font-weight: 500;
}

.trendingDestinations {
    width: 100%;
    background-color: var(--second-color);
    color: white;
    padding: 120px 0;
}

.trending_header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
    align-items: center;
}

.trending_header h1 {
    font-size: 30px;
}

.destinationsCollection {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: space-between;
}

.destinationsItem {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.destinationsItem img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
}

.destinationsItem::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 7, 60, 0.6), rgba(5, 7, 60, 0) 60%);
}

.destinations_text-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    font-weight: 500;
    transition: 0.3s;
    font-size: 20px;
}

.destinations_text-overlay a {
    color: white;
    transition: 0.3s;
}

.destinations_text-overlay a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.directions-page {
    margin-bottom: 73px;
}

.directionsCollection {
    display: grid;
    grid-template-columns: repeat(auto-fill, 300px);
    justify-content: space-between;
    row-gap: 30px;
}

.directionsItem {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

#directions-title {
    margin-bottom: 35px;
    font-size: 40px;
    font-weight: bold;
}

.directionsItem img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 15px;
}

.directionsItem::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 7, 60, 0.6), rgba(5, 7, 60, 0) 60%);
    border-radius: 12px;
}

.directionsItem_title {
    font-size: 19px;
    font-weight: 500;
    transition: 0.3s;
    color: white;
}

.directions_text-overlay {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    font-weight: 500;
    transition: 0.3s;
    font-size: 20px;
}

.directions-overlay a {
    color: white;
    transition: 0.3s;
}

.directions_text-overlay a:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.reviews {
    width: 100%;
    background-color: #FBFBFB;
    padding: 120px 0;
}

.reviews-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
}

.reviews-title {
    font-size: 30px;
    color: var(--second-color);
    margin-bottom: 60px;
}

.reviews-text img {
    width: 70px;
    margin: 0 auto;
    margin-bottom: 66px;
    object-fit: cover;
    border: none;
}

.reviews-description {
    max-width: 780px;
    font-weight: 500;
    font-size: 18px;
    margin: 0 auto;
    margin-bottom: 65px;
}

.aliTufan {
    font-size: 16px;
    font-weight: 500;
}

.spez {
    font-size: 14px;
}

.humans {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
}

.travelArticles {
    padding: 120px 0;
}

.travelHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.travelHeader h1 {
    font-size: 30px;
}

.travelCollection {
    display: grid;
    grid-template-columns: repeat(auto-fill, 410px);
    column-gap: 30px;
    row-gap: 30px;
    justify-content: space-between;
}

.travelItem {
    position: relative;
    display: inline-block;
}

.travelItem img {
    margin-bottom: 34px;
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.travel_text-overlay {
    position: absolute;
    font-size: 16px;
    color: var(--second-color);
    background-color: white;
    border: none;
    border-radius: 200px;
    padding: 9px 15px;
    top: 5%;
    left: 5%;
    cursor: pointer;
}

.travelText_info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    color: var(--second-color);
    column-gap: 10px;
    font-size: 14px;
    margin-bottom: 15px;
}

.travelData {
    padding-right: 10px;
    border-right: 1px solid #E7E6E6;
}

.travelNamed {
    font-size: 17px;
    font-weight: 500;
    width: 90%;
    cursor: pointer;
}

footer {
    background-color: var(--second-color);
    padding: 60px 0;
    color: white;
    border: none;
    margin-top: auto;
}

footer a {
    color: white;
}

.columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contacts h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.column-list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.right-columns {
    display: flex;
    flex-direction: row;
    column-gap: 100px;
    row-gap: 28px;
    flex-wrap: wrap;
}

.footerColumn-1 h4 {
    margin-bottom: 30px;
}

.breadcrumb {
    margin-top: 40px;
    margin-bottom: 34px;
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    content: "—";
    padding: 0.5rem;
}

.catalogTours {
    margin-bottom: 50px;
}

.catalogTours_columns {
    display: flex;
    align-items: flex-start;
    column-gap: 30px;
}

.filter-hidden {
    display: none;
}

.filter-hidden button {
    border: 1px solid var(--main-color);
    background: rgba(235, 102, 43, 0.08);
    color: var(--main-color);
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.filter-hidden button:hover {
    background: rgba(235, 102, 43, 0.14);
}

.filter-hidden a {
    color: var(--main-color);
    font-weight: 500;
}

.dateOfTraveling__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.filter-close-btn {
    display: none;
    border: 0;
    background: transparent;
    color: var(--second-color);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.catalog-filter-backdrop {
    display: none;
}

body.catalog-filters-open {
    overflow: hidden;
}

.catalogTours h1 {
    font-size: 40px;
    margin-bottom: 31px;
}

.catalog_filter {
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    display: inline-block;
    overflow: hidden;
    max-width: 300px;
    width: 100%;
}

.dateOfTraveling {
    background-color: var(--main-color);
    vertical-align: middle;
    padding: 30px;
}

.dateQuestion {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.dateDays {
    color: black;
    padding: 15px 36px;
    background-color: white;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    text-align: center;
}

.filters {
    padding: 20px 30px;
}

.chapterOfFilter {
    padding-top: 15px;
}

.chapterOfFilter h2 {
    font-size: 17px;
    font-weight: 500;
    padding-bottom: 20px;
}

.chapterOfFilter::after {
    content: '';
    border-bottom: 1px solid #E7E6E6;
    display: block;
}

.chapterOfFilter:first-child::after {
    padding-bottom: 20px;
}

.chapterOfFilter:last-child::after {
    border-bottom: 0;
}

.tourTypes_input {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tourTypes_input:last-child {
    margin-bottom: 0;
}

.tourTypes_input input {
    width: 17px;
    height: 17px;
    accent-color: var(--main-color);
    margin-right: 10px;
}

.filterFields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 20px;
}

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

.filterField span {
    font-size: 14px;
    color: var(--second-color);
}

.filterField input {
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--second-color);
}

.ratingFilterList {
    padding-bottom: 20px;
}

.filter-reset-btn {
    border: 1px solid var(--main-color);
    background: transparent;
    color: var(--main-color);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
}

.filter-reset-btn:hover {
    background: rgba(235, 102, 43, 0.08);
}

.tourTypes_link {
    color: #4A43C4;
    font-weight: 500;
}

.numberOfResult {
    font-size: 14px;
    margin-bottom: 33px;
    color: var(--second-color);
}

.catalogCollection {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 30px;
    margin-bottom: 60px;
}

.catalogItem {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    background-color: transparent;
    padding: 21px;
}

.cardTour_left-side {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 75%;
}

.img {
    display: inline-block;
    position: relative;
}

.img-tag {
    position: absolute;
    top: 8%;
    left: 8%;
    color: white;
    padding: 8px 15px;
    background-color: var(--main-color);
    border-radius: 12px;
    border: none;
    font-size: 13px;
}

.cardTours_description {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 10px 30px;
}

.cardTour_description {
    font-size: 15px;
    margin: 16px 0 34px 0;
}

.cardTour_links {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 20px;
    row-gap: 20px;
    font-size: 11px;
}

.cardTour_links p {
    color: var(--main-color);
}

.cardTour_right-side {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #E7E6E6;
    padding: 14px 0 14px 31px;
    align-items: center;
    justify-content: space-between;
    width: 25%;
}

.cardTour_days {
    font-size: 14px;
    color: var(--second-color);
}

.cardTour_price {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 24.5px;
}

.old_price {
    color: #C6C6D2;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new_price {
    font-size: 15px;
    color: var(--second-color);
}

.new_price span {
    font-weight: 500;
}

.cardTour_details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cardTour_details a {
    color: var(--main-color);
    background-color: white;
    border: 1px solid var(--main-color);
    border-radius: 12px;
    padding: 16px 50px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    text-align: center;
}

.cardTour_details a:hover {
    color: white;
    background-color: var(--main-color);
    transition: 0.3s;
}

.nav-page {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.page-list {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: center;
    column-gap: 45px;
    align-items: center;
    margin-bottom: 20px;
}

.page-list li {
    font-size: 15px;
    color: var(--second-color);
}

.page-active {
    color: white !important;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: var(--main-color);
    text-align: center;
}

.show_result {
    font-size: 13px;
}

.genres p {
    font-size: 14px;
    color: black;
    background-color: #F5F5F5;
    border-radius: 200px;
    padding: 11px 16px;
    display: inline-block;
    column-gap: 10px;
    flex-wrap: nowrap;
    cursor: pointer;
}

.genres .popular-tag {
    color: var(--main-color);
    background-color: rgba(235, 102, 43, 0.05);
    margin-bottom: 22px;
}

.tour {
    width: 100%;
    margin-bottom: 50px;
}

.tourName {
    font-size: 40px;
    margin-bottom: 26px;
}

.tour-elements {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tour-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 50px;
}

.tour_userAction {
    display: flex;
    column-gap: 40px;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

.tour_userAction p {
    transition: 0.3s;
}

.tour_userAction p:hover {
    color: var(--main-color);
    transition: 0.3s;
}

.policy-page {
    padding: 44px 0 72px;
}

.policy-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(5, 7, 60, 0.08);
    color: #333;
}

.policy-card h1 {
    margin-bottom: 18px;
    color: var(--second-color);
    font-size: 34px;
}

.policy-card p {
    margin-bottom: 14px;
    line-height: 1.75;
    font-size: 16px;
}

.tourGallery {
    display: block;
    border-radius: 12px;
    border: none;
    overflow: hidden;
    margin-bottom: 60px;
    height: auto;
}

.gallery-empty {
    margin: 0;
    padding: 22px;
    border-radius: 16px;
    background: rgba(27, 27, 27, 0.04);
    color: #707070;
    text-align: center;
}

.tour-gallery-layout {
    display: grid;
    gap: 8px;
    width: 100%;
}

.tour-gallery-layout--single {
    grid-template-columns: 1fr;
}

.tour-gallery-layout--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-gallery-layout--mosaic {
    grid-template-columns: minmax(0, 1.58fr) minmax(0, 1fr);
    align-items: stretch;
    height: clamp(240px, 26vw, 360px);
}

.tour-gallery-layout__hero,
.tour-gallery-layout__side,
.tour-gallery-layout__top,
.tour-gallery-layout__bottom {
    min-height: 0;
}

.tour-gallery-layout--single {
    height: clamp(220px, 24vw, 320px);
}

.tour-gallery-layout--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: clamp(220px, 24vw, 320px);
}

.tour-gallery-layout__side {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
}

.tour-gallery-layout__side--single {
    grid-template-rows: 1fr;
}

.tour-gallery-layout__bottom {
    display: grid;
    gap: 8px;
}

.tour-gallery-layout__bottom--double {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-gallery-layout__bottom--single {
    grid-template-columns: 1fr;
}

.gallery-thumb {
    display: block;
    padding: 0;
    border: none;
    background: transparent;
    cursor: zoom-in;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.gallery-thumb:focus-visible {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb--single,
.gallery-thumb--double,
.gallery-thumb--hero,
.gallery-thumb--top-right,
.gallery-thumb--bottom {
    min-height: 0;
}

.tour-gallery-layout--single .gallery-thumb--single {
    min-height: 100%;
}

.tour-gallery-layout--mosaic .tour-gallery-layout__hero,
.tour-gallery-layout--mosaic .tour-gallery-layout__side,
.tour-gallery-layout--double .gallery-thumb--double {
    min-height: 100%;
}

.tour-gallery-layout--two .tour-gallery-layout__hero,
.tour-gallery-layout--two .tour-gallery-layout__side {
    min-height: 100%;
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox[hidden] {
    display: none !important;
}

.image-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(13, 18, 25, 0.82);
    cursor: default;
}

.image-lightbox__dialog {
    position: relative;
    z-index: 1;
    max-width: min(92vw, 1100px);
    max-height: 88vh;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
}

.image-lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border-radius: 14px;
    object-fit: contain;
    background: #111;
}

.image-lightbox__close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--second-color);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.admin-image-preview {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 8px;
    border: 1px solid #E7E6E6;
}

.admin-gallery-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 118px));
    justify-content: flex-start;
    gap: 12px;
}

.admin-gallery-slot {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 118px;
    min-height: 62px;
    padding: 0;
    border: 1px dashed #D8D8E3;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    color: var(--second-color);
}

.admin-gallery-slot--image {
    border-style: solid;
    border-color: #E7E6E6;
    cursor: default;
}

.admin-gallery-slot--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-gallery-slot--add {
    flex-direction: column;
    gap: 0;
    background: #ececf3;
    transition: 0.25s ease;
    width: 118px;
}

.admin-gallery-slot--add:hover {
    border-color: var(--main-color);
    background: #e5e5ef;
}

.admin-form button.admin-gallery-slot--add {
    padding: 0;
    border: 1px dashed #D8D8E3;
    border-radius: 16px;
    background: #ececf3;
    color: var(--main-color);
    box-shadow: none;
    font: inherit;
}

.admin-form button.admin-gallery-slot--add:hover {
    background: #e5e5ef;
}

.admin-gallery-plus {
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    color: var(--main-color);
}

.admin-gallery-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(5, 7, 60, 0.82);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.admin-gallery-remove:hover {
    background: var(--main-color);
}

.faq-editor {
    display: grid;
    gap: 12px;
    margin-top: 10px;
}

.faq-editor-item {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid #E7E6E6;
    border-radius: 16px;
    background: #fbfbfd;
}

.faq-editor-item label {
    display: grid;
    gap: 6px;
    color: #717171;
    font-size: 14px;
    font-weight: 600;
}

.faq-editor-item input,
.faq-editor-item textarea {
    width: 100%;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 12px 13px;
    background: #fff;
    color: var(--second-color);
    outline-color: var(--main-color);
}

.faq-editor-item textarea {
    resize: vertical;
    min-height: 90px;
}

.faq-editor-add {
    width: fit-content;
    margin-top: 12px;
}

.faq-editor-remove {
    width: fit-content;
    padding: 10px 16px;
    align-self: flex-start;
}

.admin-table-thumb {
    width: 88px;
    height: 62px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #E7E6E6;
}

.admin-form input[type="file"] {
    padding: 10px 12px;
}

.admin-form input[type="hidden"] {
    display: none;
}

.tour-desc {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    column-gap: 65px;
}



.tour_hightlights {
    margin-left: 20px;
}

.tour_descripting {
    margin-bottom: 54px;
    line-height: 1.28;
}

.tour_descripting::after {
    content: '';
    padding-top: 26px;
    border-bottom: 1px solid #E7E6E6;
    display: block;
}

.tour_descripting p {
    margin-bottom: 24px;
}

.cardTour_left-side .img {
    max-width: 280px;
    max-height: 305px;
    width: 100%;
    height: 100%;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.tour_descripting h2 {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 20px;
}

.tour_hightlights li {
    font-size: 14px;
    list-style-type: disc;
    margin-bottom: 5px;
}

.includes {
    margin-bottom: 54px;
}

.includes::after {
    content: '';
    padding-top: 52px;
    border-bottom: 1px solid #E7E6E6;
    display: block;
}

.includes h2 {
    margin-bottom: 20px;
}

.includes-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 100px;
}

ul.includes_first-column {
    list-style: none;
    padding-left: 0;
}

ul.includes_first-column li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 23px;
}

ul.includes_first-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/icons/i.icon-check.png);
    background-size: contain;
    background-repeat: no-repeat;
}

ul.includes_second-column {
    list-style: none;
    padding-left: 0;
}

ul.includes_second-column li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 23px;
}

ul.includes_second-column li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-image: url(/icons/i.icon-cross.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.tour-map {
    margin-bottom: 60px;
}

.tour-map::after {
    content: '';
    padding-top: 52px;
    border-bottom: 1px solid #E7E6E6;
    display: block;
}

.tour-map h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.faq-container {
    width: 100%;
    font-family: Arial, sans-serif;
    margin-bottom: 50px;
}

.faq-container::after {
    content: '';
    padding-top: 52px;
    border-bottom: 1px solid #E7E6E6;
    display: block;
    width: 100%;
}

.faq-container h2 {
    font-size: 30px;
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    background-color: white;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: white;
}

.faq-item.active .faq-answer {
    padding: 0 20px 15px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background-color: white;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(235, 102, 43, 0.05);
    transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.faq-item.active .faq-toggle {
    background-color: rgba(235, 102, 43, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-bottom: 0;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.review-card {
    margin-bottom: 35px;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 15px;
}

.review-stars {
    gap: 4px;
    margin: 10px 0 12px;
}

.review-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-author {
    font-weight: 700;
    color: var(--second-color);
    font-size: 16px;
}

.review-date {
    color: #717171;
    font-size: 14px;
}

.review-title {
    color: var(--second-color);
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
}

.review-text {
    font-size: 14px;
    color: var(--second-color);
    font-weight: normal;
}

#review-login-msg {
    margin-bottom: 5em;
}

.review-login-link a {
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
}

.stars {
    width: 100px;
    height: 100%;
}

.add-review-form h3 {
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--second-color);
}

.rating-select {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.rating-select span {
    font-size: 16px;
    color: var(--second-color);
    font-weight: 500;
}

.rating-stars-input {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-star-button {
    border: none;
    background: transparent;
    color: #ccc;
    font-size: 34px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.rating-star-button:hover,
.rating-star-button.is-active {
    color: #FFD700;
}

.rating-star-button:hover {
    transform: translateY(-1px);
}

#tour-map-container iframe {
    width: 100%;
    height: 550px;
}

#review-title {
    width: 100%;
    border: 1px solid #E7E6E6;
    padding: 15px;
    color: var(--second-color);
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 30px;
    outline: none;
}

#review-text {
    width: 100%;
    border: 1px solid #E7E6E6;
    padding: 20px 15px;
    resize: none;
    min-height: 8.5em;
    font-size: 16px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: var(--second-color);
    outline: none;
}

#submit-review {
    font-size: 16px;
    color: white;
    background-color: var(--main-color);
    border-radius: 12px;
    width: 100%;
    padding: 15px 0;
    border: none;
    margin-bottom: 82px;
}

.author-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
}

.author-box img {
    object-fit: cover;
    margin-right: 20px;
}

.author-box p {
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
}

.otzivi-content h2 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 14px;
}

.otzivi-description {
    font-size: 14px;
    margin-bottom: 24px;
}

.otzivi-images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 20px;
}

.helpful-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    color: var(--second-color);
    gap: 55px;
    cursor: pointer;
}

.tour-otzivi button {
    color: var(--main-color);
    border: 1px solid var(--main-color);
    border-radius: 12px;
    width: 100%;
    padding: 20px 30px;
    display: inline;
    background-color: transparent;
    transition: 0.3s;
    cursor: pointer;
}

.tour-otzivi button a {
    color: var(--main-color);
    font-weight: 500;
    display: inline-block;
}

.reply-container h1 {
    font-size: 30px;
    margin-bottom: 33px;
}

.notPublishedEmail {
    font-size: 14px;
    margin-bottom: 30px;
}

.components-column {
    display: inline-block;
    row-gap: 30px;
    column-gap: 140px;
    color: var(--second-color);
    font-size: 14px;
    cursor: pointer;
    column-count: 3;
}

.components-column li {
    margin-bottom: 30px;
}

.active-text {
    color: #EB662B !important;
}

.reply-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 30px;
    margin-bottom: 130px;
}

.reply-form input:focus {
    outline: none;
}

.userData {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.userData input {
    width: 49%;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 20px 15px;
    column-gap: 30px;
}

.userData Input::placeholder {
    color: black;
    font-size: 16px;
}

.title-input {
    width: 100%;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 20px 15px;
}

.title-input::placeholder {
    color: black;
    font-size: 16px;
}

.input-com {
    width: 100%;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 20px 15px;
    color: black;
    font-size: 16px;
    resize: none;
}

.input-com::placeholder {
    color: black;
    font-size: 16px;
}

.input-com:focus {
    outline: none;
}

.reply-form button {
    border: none;
    border-radius: 12px;
    background-color: var(--main-color);
    color: white;
    font-size: 14px;
    padding: 20px 33px;
    width: 100%;
    height: 62px;
    cursor: pointer;
}

.tour_right-side {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    padding: 36px 31px;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    min-width: 360px;
    max-width: 360px;
}

.tour-price {
    display: inline;
    font-size: 15px;
    margin-bottom: 25px;
}

.tour-price span {
    font-size: 19px;
    font-weight: 500;
}

.tour-direction {
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    margin-bottom: 20px;
}

.tour-from {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 1px solid #E7E6E6;
    border-radius: 0;
    padding: 10px;
}

.tour-from img {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 10px;
}

.tour-from_text {
    margin-left: 10px;
}

.tour-from_text h2 {
    font-size: 15px;
    font-weight: 500;
}

.tour-from_text p {
    font-size: 13px;
    color: #717171;
}

.amount-tickets {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-time {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    padding: 10px;
}

.tour-time img {
    background-color: #F5F5F5;
    border-radius: 12px;
    padding: 10px;
}

.tour-time_text {
    margin-left: 10px;
}

.tour-time_text h2 {
    font-size: 15px;
    font-weight: 500;
}

.tour-time_text p {
    font-size: 13px;
    color: #717171;
}

.amount-tickets h2 {
    font-size: 16px;
    font-weight: 500;
}

.ticket-controls {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.ticket-controls button {
    background-color: transparent;
    border: 1px solid #E7E6E6;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
}

.quantity {
    margin: 0 5px;
    min-width: 20px;
    text-align: center;
}

.divider {
    border-top: 1px solid #eee;
    margin: 20px 0;
}

.tour-price-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    margin-bottom: 10px;
}

.tour-base-price {
    color: rgba(0, 0, 0, 0.55);
    font-size: 14px;
    margin: 0;
}

.dynamic-price-status {
    display: none;
}

.dynamic-price-meta {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    line-height: 1.45;
}

.dynamic-price-factors {
    display: grid;
    gap: 6px;
    padding-left: 18px;
    color: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    line-height: 1.45;
}

.dynamic-price-factors li::marker {
    color: #ff7a59;
}

.total_price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.contactsPage {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contacts-side-blog {
    width: 43%;
}

.contacts-map {
    width: 459px;
    max-width: 100%;
    height: 443px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.oren-img {
    width: 550px;
    height: 370px;
    margin-bottom: 30px;
}

.contacts-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
}

.row {
    margin-bottom: 20px;
}

.info-title {
    color: rgba(0, 0, 0, 0.4);
    font-weight: normal;
    font-size: 12px;
    margin-bottom: 3px;
}

.info-desc {
    color: #313339;
    opacity: 0.9;
    font-size: 14px;
}

#bookNow {
    background-color: var(--main-color);
    color: white;
    padding: 21px 0;
    width: 100%;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.ticket-type_desc {
    font-size: 14px;
}

.ticket-type_desc span {
    font-weight: 500;
}

.popup-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.815);
    display: none;
    z-index: 999;
}

.popup {
    position: absolute;
    background: #ffffff;
    width: 450px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    z-index: 999;
    border-radius: 12px;
}

.popup-title {
    text-align: center;
    margin-bottom: 25px;
}

.popup .popup-form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.booking-modal-bg {
    position: fixed;
    inset: 0;
    background: rgba(18, 18, 18, 0.815);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}

.booking-modal {
    position: relative;
    width: min(100%, 520px);
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(5, 7, 60, 0.18);
}

.booking-modal h2 {
    margin-bottom: 14px;
    color: var(--second-color);
    font-size: 28px;
}

.booking-modal__text {
    color: #4f4f4f;
    line-height: 1.5;
    margin-bottom: 18px;
}

.booking-modal__details {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.booking-modal__details div {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 14px;
    background: #f8f8f8;
}

.booking-modal__details span {
    font-size: 13px;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.booking-modal__details strong {
    color: var(--second-color);
    font-size: 18px;
    line-height: 1.35;
}

.booking-modal__button {
    width: 100%;
    border: 0;
    border-radius: 200px;
    padding: 14px 20px;
    background: var(--main-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.booking-modal__button:hover {
    opacity: 0.92;
}

.booking-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #717171;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

#catalog-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 30px;
    display: inline-block;
}

#tour-list-container {
    display: flex;
    gap: 30px;
    margin-bottom: 54px;
}

.tour-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tour-card_img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.tour-card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-card:hover .tour-card_img img {
    transform: scale(1.05);
}

.tour-card_content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.card-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.card-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.card-rating img {
    width: 80px;
    height: auto;
    margin-right: 5px;
}

.card-rating span {
    font-size: 14px;
    color: #333;
}

.card-price {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.card-price p {
    font-size: 14px;
    color: #999;
}

.card-price span {
    font-size: 22px;
    font-weight: 700;
    color: #EB662B;
}

.popup .popup-form input[type="text"],
.popup .popup-form input[type="tel"] {
    margin-bottom: 30px;
    height: 50px;
    font-size: 16px;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 20px;
}

.popup .popup-form input:last-child {
    margin-bottom: 0;
}

.popup .popup-form input[type="submit"] {
    border: none;
    background: var(--main-color);
    color: #ffffff;
    font-size: 20px;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.no-scroll {
    overflow-y: hidden;
}

.checkbox-agree {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.checkbox-agree input[type="checkbox"] {
    accent-color: var(--main-color);
    width: 15px;
    height: 15px;
}

.contactsTitle {
    margin-bottom: 47px;
}

.popup-bg {
    align-items: center;
    justify-content: center;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.close-popup:hover {
    color: #000;
}

.popup-form input[type="email"],
.popup-form input[type="password"],
.popup-form input[type="text"],
.popup-form input[type="tel"] {
    margin-bottom: 20px;
    height: 50px;
    font-size: 16px;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 0 20px;
    width: 100%;
}

.popup-form button[type="submit"] {
    border: none;
    background: var(--main-color);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.popup-form button[type="submit"]:hover {
    background: #d4551f;
}

.switch-auth-text {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.switch-auth-text a {
    color: var(--main-color);
    text-decoration: underline;
    cursor: pointer;
}

.switch-auth-text a:hover {
    color: #d4551f;
}

.auth-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.auth-message.error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.auth-message.success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

.profile-section {
    padding: 40px 0;
}

.profile-section h1 {
    font-size: 36px;
    color: var(--second-color);
    margin-bottom: 30px;
}

.profile-info {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.profile-info h2 {
    font-size: 24px;
    color: var(--second-color);
    margin-bottom: 25px;
}

.profile-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

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

.profile-field label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.profile-field input {
    padding: 12px 15px;
    border: 1px solid #E7E6E6;
    border-radius: 8px;
    font-size: 16px;
    background: #f9f9f9;
}

.profile-field input:read-only {
    cursor: not-allowed;
}

.booking-history {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.booking-history h2 {
    font-size: 24px;
    color: var(--second-color);
    margin-bottom: 25px;
}

.booking-history-address {
    margin: -12px 0 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.upcoming-trip-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(235, 102, 43, 0.14), rgba(251, 242, 236, 1));
    box-shadow: 0 10px 30px rgba(235, 102, 43, 0.12);
}

.upcoming-trip-content {
    flex: 1;
}

.upcoming-trip-kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--main-color);
}

.upcoming-trip-card h2 {
    margin: 0 0 12px;
    font-size: 28px;
    color: var(--second-color);
}

.upcoming-trip-meta {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.upcoming-trip-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.upcoming-trip-link:hover {
    background: #d4551f;
}

.upcoming-trip-image-wrap {
    width: 240px;
    flex-shrink: 0;
}

.upcoming-trip-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

.empty-message {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 40px 0;
}

.booking-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--main-color);
}

.booking-card:last-child {
    margin-bottom: 0;
}

.booking-card h3 {
    font-size: 20px;
    color: var(--second-color);
    margin-bottom: 10px;
}

.booking-card p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.booking-card .booking-total {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    margin-top: 10px;
}

@media (max-width: 560px) {
    .booking-history-address {
        margin-top: -8px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .wrapper {
        width: min(100% - 40px, 944px);
    }

    .header-bottom {
        height: auto;
        min-height: 680px;
        padding-bottom: 70px;
    }

    .header-top {
        padding: 0 32px;
        gap: 24px;
    }

    .logo {
        margin-right: 52px;
    }

    .nav-list {
        gap: 28px;
    }

    .search-form {
        width: min(92%, 760px);
    }

    .searchForm_form {
        gap: 28px;
        justify-content: center;
    }

    .popular,
    .featuredTrips,
    .trendingDestinations,
    .reviews,
    .travelArticles {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .popularGallery {
        flex-direction: column;
    }

    .popularGalleryColumn-1,
    .popularGalleryColumn-2 {
        width: 100%;
    }

    .popularGalleryColumn-2,
    .tourzCollectionItems,
    .TripCollectionItems,
    .destinationsCollection,
    .directionsCollection,
    .travelCollection {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
        justify-content: stretch;
    }

    .popularGalleryItem,
    .tourzItem,
    .TripItem,
    .destinationsItem,
    .directionsItem,
    .travelItem {
        width: 100%;
        max-width: none;
    }

    .popularGalleryItem_img,
    .popularGalleryItem img,
    .destinationsItem img,
    .directionsItem img,
    .travelItem img {
        width: 100%;
        object-fit: cover;
    }

    .catalogTours_columns,
    .contactsPage,
    .tour-desc,
    .columns,
    .right-columns {
        flex-direction: column;
        gap: 28px;
    }

    .catalog_filter,
    .catalog_right-column,
    .contacts-side-blog,
    .tour_left-side,
    .tour_right-side {
        width: 100%;
        max-width: none;
        min-width: 0;
    }

    .catalogItem {
        gap: 18px;
    }

    .cardTour_left-side {
        width: 68%;
    }

    .cardTour_right-side {
        width: 32%;
    }

    .tourGallery {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 10px;
    }

    .contacts-map,
    .oren-img,
    #tour-map-container iframe {
        width: 100%;
    }

    .profile-fields,
    .stats-grid,
    .panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .wrapper {
        width: min(100% - 28px, 720px);
    }

    .header-bottom {
        min-height: 0;
        padding-top: 24px;
        padding-bottom: 56px;
        background-position: center top;
    }

    .header-top,
    .header_left-side,
    .header_right-side,
    .auto-buttons,
    .popular-header,
    .featured-header,
    .trending_header,
    .travelHeader {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .header-top {
        padding: 0 18px;
    }

    .logo {
        width: 86px;
        height: 86px;
        margin: 0 0 18px;
    }

    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 22px;
    }

    .header_right-side,
    .auto-buttons {
        gap: 14px;
    }

    .header-title {
        margin-top: 36px;
        font-size: 40px;
        line-height: 1.12;
    }

    .search-form {
        width: 100%;
        height: auto;
        border-radius: 24px;
        padding: 22px;
    }

    .searchForm_form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        padding: 0;
    }

    .searchFormItem {
        justify-content: center;
    }

    .searchFormItem_input {
        display: none;
    }

    .popular,
    .featuredTrips,
    .trendingDestinations,
    .reviews,
    .travelArticles {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .popular-header h1,
    .tourz-title,
    .featured-header h1,
    .trending_header h1,
    .reviews-title,
    .travelHeader h1,
    .contactsTitle,
    .profile-section h1,
    .tourName,
    #catalog-title {
        font-size: 32px;
        line-height: 1.18;
    }

    .popularGalleryColumn-2,
    .tourzCollectionItems,
    .TripCollectionItems,
    .destinationsCollection,
    .directionsCollection,
    .travelCollection {
        grid-template-columns: 1fr;
    }

    .tourzItem {
        align-items: center;
        text-align: center;
    }

    .catalog_filter {
        display: block;
        position: fixed;
        top: 16px;
        left: 16px;
        bottom: 16px;
        width: min(92vw, 360px);
        max-width: 360px;
        max-height: calc(100dvh - 32px);
        margin: 0;
        overflow-y: auto;
        z-index: 1102;
        background: #fff;
        box-shadow: 0 22px 60px rgba(5, 7, 60, 0.22);
        border-radius: 18px;
        transform: translateX(calc(-100% - 24px));
        transition: transform 0.28s ease, opacity 0.28s ease;
        opacity: 0;
        pointer-events: none;
    }

    .catalog_filter.is-open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .dateOfTraveling {
        padding: 18px 18px;
    }

    .dateOfTraveling__header {
        align-items: flex-start;
    }

    .catalog_filter::-webkit-scrollbar {
        display: none;
    }

    .filter-close-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(235, 102, 43, 0.08);
        color: var(--main-color);
        flex: 0 0 auto;
    }

    .filters {
        padding: 12px 18px 20px;
    }

    .filter-hidden {
        display: block;
        margin-bottom: 18px;
    }

    .catalog-filter-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(13, 18, 25, 0.42);
        z-index: 1101;
        display: none;
    }

    .catalog-filter-backdrop.is-visible {
        display: block;
    }

    .catalogItem,
    .cardTour_left-side,
    .cardTour_right-side {
        width: 100%;
    }

    .catalogItem,
    .cardTour_left-side {
        flex-direction: column;
    }

    .cardTour_left-side .img {
        max-width: none;
        width: 100%;
    }

    .img img {
        width: 100%;
        max-height: 260px;
        object-fit: cover;
    }

    .cardTours_description {
        max-width: none;
        padding: 12px 0;
    }

    .cardTour_right-side {
        border-left: 0;
        border-top: 1px solid #E7E6E6;
        padding: 18px 0 0;
        gap: 16px;
    }

    .cardTour_details a {
        padding: 14px 20px;
    }

    .tour-elements,
    .tour-info,
    .tour_userAction,
    .amount-tickets,
    .tour-time {
        flex-wrap: wrap;
        gap: 14px;
    }

    .tour-info {
        column-gap: 20px;
    }

    .tourGallery {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .second_columnImg {
        display: none;
    }

    .gallery-item,
    .gallery-item img {
        width: 100%;
        max-height: 340px;
        object-fit: cover;
    }

    .components-column {
        column-count: 2;
        column-gap: 32px;
    }

    .userData {
        flex-direction: column;
        gap: 14px;
    }

    .userData input {
        width: 100%;
    }

    .contacts-columns,
    .includes-columns,
    .profile-fields,
    .stats-grid,
    .panel-grid,
    .admin-form,
    .admin-form--wide {
        grid-template-columns: 1fr;
    }

    .contacts-map,
    #tour-map-container iframe {
        height: 360px;
    }

    .oren-img {
        height: auto;
    }

    .columns,
    .right-columns {
        align-items: flex-start;
    }

    .upcoming-trip-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .upcoming-trip-image-wrap {
        width: 100%;
    }

    .upcoming-trip-image {
        height: 220px;
    }

    .popup {
        width: calc(100% - 32px);
        max-width: 420px;
        padding: 24px;
    }

}

@media (max-width: 560px) {
    .wrapper {
        width: min(100% - 20px, 100%);
    }

    .header-title {
        font-size: 32px;
    }

    .popular-header h1,
    .tourz-title,
    .featured-header h1,
    .trending_header h1,
    .reviews-title,
    .travelHeader h1,
    .contactsTitle,
    .profile-section h1,
    .tourName,
    #catalog-title {
        font-size: 28px;
    }

    .TripItem_top img,
    .popularGalleryItem_img,
    .popularGalleryItem img,
    .destinationsItem img,
    .directionsItem img,
    .travelItem img,
    .upcoming-trip-image {
        height: 220px;
        min-height: 0;
        max-height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }

    .catalogItem,
    .profile-info,
    .booking-history,
    .upcoming-trip-card,
    .tour_right-side {
        padding: 18px;
    }

    .TripItem_bottom,
    .tour-card_content {
        padding: 16px;
    }

    .cardTour_links,
    .page-list,
    .breadcrumb ul {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .components-column {
        column-count: 1;
    }

    .total_price {
        font-size: 18px;
    }

    .contacts-map,
    #tour-map-container iframe {
        height: 300px;
    }

    .popup {
        width: calc(100% - 20px);
        padding: 20px;
    }
}

@media (max-width: 375px) {
    .wrapper {
        width: min(100% - 16px, 100%);
    }

    .header-top {
        padding: 0 8px;
    }

    .logo {
        width: 74px;
        height: 74px;
    }

    .nav-list {
        gap: 10px 14px;
    }

    .nav-item,
    .login-btn,
    label,
    .searchFormItem_p,
    .country-text,
    .cardTour_description,
    .booking-card p {
        font-size: 13px;
    }

    .login-btn {
        padding: 10px 14px;
    }

    .header-title {
        font-size: 28px;
        margin-top: 28px;
    }

    .search-form {
        padding: 18px 14px;
        border-radius: 18px;
    }

    .popular,
    .featuredTrips,
    .trendingDestinations,
    .reviews,
    .travelArticles,
    .profile-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .popular-header h1,
    .tourz-title,
    .featured-header h1,
    .trending_header h1,
    .reviews-title,
    .travelHeader h1,
    .contactsTitle,
    .profile-section h1,
    .tourName,
    #catalog-title {
        font-size: 24px;
    }

    .reviews-description,
    .sentEmail_text,
    .upcoming-trip-meta {
        font-size: 15px;
    }

    .TripItem_top img,
    .popularGalleryItem_img,
    .popularGalleryItem img,
    .destinationsItem img,
    .directionsItem img,
    .travelItem img,
    .upcoming-trip-image,
    .gallery-item,
    .gallery-item img {
        height: 190px;
        max-height: 190px;
    }

    .catalogItem,
    .profile-info,
    .booking-history,
    .upcoming-trip-card,
    .tour_right-side,
    .admin-card,
    .admin-form,
    .stat-card {
        padding: 14px;
    }

    .cardTour_details,
    .ticket-controls,
    .total_price {
        width: 100%;
    }

    .ticket-controls {
        justify-content: space-between;
    }

    .tour-from,
    .tour-time,
    .amount-tickets {
        align-items: flex-start;
    }

    .contacts-map,
    #tour-map-container iframe {
        height: 260px;
    }

    .popup-form input[type="email"],
    .popup-form input[type="password"],
    .popup-form input[type="text"],
    .popup-form input[type="tel"] {
        font-size: 14px;
    }

    .popup {
        width: calc(100% - 16px);
        padding: 18px 14px;
    }
}

.admin-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(235, 102, 43, 0.12), transparent 38rem),
        linear-gradient(180deg, rgba(235, 102, 43, 0.05) 0%, #fff 42%);
    background-repeat: no-repeat, no-repeat;
    background-size: 100% 100%, 100% 100%;
    background-position: top right, top left;
    background-color: #fff;
    color: var(--second-color);
}

.admin-page a {
    color: inherit;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    padding: 28px 22px;
    background: var(--second-color);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.admin-logo {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
}

.admin-nav {
    display: grid;
    gap: 10px;
}

.admin-nav__item,
.admin-logout {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 200px;
    padding: 13px 18px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
}

.admin-nav__item:hover,
.admin-nav__item.is-active,
.admin-logout:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.admin-logout {
    margin-top: auto;
}

.admin-main {
    margin-left: 280px;
    padding: 34px;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
}

.admin-eyebrow {
    margin-bottom: 8px;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.admin-header h1 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
    color: var(--second-color);
}

.site-link,
.admin-form button:not(.admin-gallery-slot--add),
.ghost-btn {
    border: 0;
    border-radius: 200px;
    padding: 13px 22px;
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.site-link:hover,
.admin-form button:not(.admin-gallery-slot--add):hover {
    background: #d4551f;
}

.ghost-btn {
    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.ghost-btn:hover {
    background: rgba(235, 102, 43, 0.08);
}

.admin-alert {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(235, 102, 43, 0.1);
    color: var(--second-color);
    border: 1px solid rgba(235, 102, 43, 0.22);
}

.admin-alert.is-error {
    background: rgba(210, 65, 48, 0.1);
    color: #a4342f;
    border-color: rgba(210, 65, 48, 0.22);
}

.admin-section {
    display: none;
}

.admin-section.is-active {
    display: block;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 20px;
}

.section-heading h2 {
    margin-bottom: 8px;
    font-size: 32px;
    color: var(--second-color);
}

.section-heading p {
    color: #717171;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card,
.admin-card,
.admin-form,
.table-wrap {
    border: 1px solid #E7E6E6;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(5, 7, 60, 0.08);
}

.stat-card {
    padding: 22px;
}

.stat-card span {
    display: block;
    color: #717171;
    font-size: 14px;
}

.stat-card strong {
    display: block;
    margin-top: 8px;
    color: var(--main-color);
    font-size: 32px;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-card {
    padding: 22px;
}

.admin-card h3 {
    color: var(--second-color);
    margin-bottom: 16px;
}

.admin-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    align-content: start;
    gap: 16px;
    margin-bottom: 22px;
    padding: 22px;
    align-items: flex-end;
}

.admin-form--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-form label {
    display: grid;
    align-self: start;
    gap: 7px;
    color: #717171;
    font-size: 14px;
    font-weight: 600;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    border: 1px solid #E7E6E6;
    border-radius: 12px;
    padding: 12px 13px;
    background: #fff;
    color: var(--second-color);
    outline-color: var(--main-color);
}

.admin-form textarea {
    resize: vertical;
}

.form-full {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    align-items: end;
    gap: 10px;
}

.table-wrap {
    overflow-x: auto;
}

.admin-page table {
    width: 100%;
    border-collapse: collapse;
}

.admin-page th,
.admin-page td {
    padding: 14px 16px;
    border-bottom: 1px solid #E7E6E6;
    text-align: left;
    vertical-align: top;
}

.admin-page th {
    color: #717171;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-page td {
    color: var(--second-color);
    font-size: 15px;
}

.table-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.table-actions button,
.inline-select {
    border: 1px solid #E7E6E6;
    border-radius: 200px;
    padding: 8px 12px;
    background: #fff;
    color: var(--second-color);
    cursor: pointer;
}

.table-actions button:hover,
.inline-select:hover {
    border-color: var(--main-color);
}

.table-actions .danger {
    color: #a4342f;
}

.small-muted {
    color: #717171;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .admin-sidebar {
        position: static;
        width: auto;
    }

    .admin-main {
        margin-left: 0;
        padding: 22px;
    }

    .stats-grid,
    .panel-grid,
    .admin-form,
    .admin-form--wide {
        grid-template-columns: 1fr;
    }

    .admin-gallery-picker {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .admin-sidebar {
        padding: 22px 18px;
        gap: 20px;
    }

    .admin-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-nav__item,
    .admin-logout {
        text-align: center;
        padding: 12px 14px;
    }

    .admin-main {
        padding: 20px 14px;
    }

    .admin-header h1 {
        font-size: 34px;
    }

    .stats-grid,
    .panel-grid,
    .admin-form,
    .admin-form--wide {
        grid-template-columns: 1fr;
    }

    .form-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-form button,
    .ghost-btn,
    .site-link {
        width: 100%;
        text-align: center;
    }

    .table-wrap {
        border-radius: 14px;
    }

    .analytics-table-card {
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .analytics-table-card h3 {
        margin-bottom: 12px;
        padding: 0 2px;
    }

    .analytics-table-card .table-wrap {
        width: 100%;
        border-radius: 14px;
    }

    .analytics-table-card table {
        min-width: 100%;
        width: 100%;
        table-layout: fixed;
    }

    .analytics-table-card th,
    .analytics-table-card td {
        word-break: break-word;
    }

    .admin-page th,
    .admin-page td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .admin-logo {
        font-size: 24px;
        text-align: center;
    }

    .admin-nav {
        grid-template-columns: 1fr;
    }

    .admin-header h1,
    .section-heading h2 {
        font-size: 28px;
    }

    .admin-card,
    .admin-form,
    .stat-card {
        padding: 18px;
    }

    .admin-gallery-slot {
        width: 110px;
        min-height: 60px;
    }

    .analytics-table-card {
        padding: 0;
    }

    .stat-card strong {
        font-size: 28px;
    }

    .tour-gallery-layout--mosaic,
    .tour-gallery-layout--two {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tour-gallery-layout__side {
        grid-template-rows: auto;
    }

    .tour-gallery-layout__bottom {
        grid-template-columns: 1fr;
    }

    .tour-gallery-layout--single .gallery-thumb--single,
    .tour-gallery-layout--two .gallery-thumb--top-right,
    .tour-gallery-layout--mosaic .tour-gallery-layout__hero {
        min-height: 260px;
    }
}

@media (max-width: 375px) {
    .admin-sidebar {
        padding: 18px 12px;
    }

    .admin-main {
        padding: 16px 8px;
    }

    .admin-header h1,
    .section-heading h2 {
        font-size: 24px;
    }

    .admin-card,
    .admin-form,
    .stat-card {
        padding: 14px;
    }

    .analytics-table-card h3 {
        font-size: 18px;
    }

    .admin-form input,
    .admin-form select,
    .admin-form textarea {
        padding: 11px;
        font-size: 14px;
    }

    .admin-gallery-picker {
        grid-template-columns: 1fr;
    }

    .admin-gallery-slot {
        width: 100px;
        min-height: 56px;
    }

    .admin-gallery-plus {
        font-size: 30px;
    }

    .tour-gallery-layout--single .gallery-thumb--single,
    .tour-gallery-layout--two .gallery-thumb--top-right,
    .tour-gallery-layout--mosaic .tour-gallery-layout__hero {
        min-height: 220px;
    }
}