/* Improved CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #f9f6f2;
    /* Light warm beige */
    --accent-color: #dcb37b;
    --bg-btn-color: #F7E6B3;
    /* Beige accents */
    --text-color: #4a3b32;
    /* Brown fonts */
    --border-color: #baa48b;
    --box-bg: #ffffff;
    /* White for cards to stand out on beige */
    --font-heading: 'Playfair Display', serif;
    /* Knight / classic look */
    --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 92px 0 0 0;
    /* Flush with 90px header + 2px border */
    line-height: 1.6;
    overflow-x: hidden;
}

/* WordPress Admin Bar compensation — keeps slider flush under the menu */
.admin-bar .site-header {
    top: 32px;
}

.admin-bar body {
    padding-top: calc(92px + 32px);
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar body {
        padding-top: calc(80px + 46px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto 15px auto;
    padding: 0 15px !important;
    /* Force padding to prevent sticking */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-weight: 700;
}

.wp-block-heading {
    font-size: 2.2em;
    text-align: center;
    margin-top: 2em;
}

/* Typography styles */
p {
    margin-bottom: 20px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s ease;
}

.site-main ul li,
.site-main ol li,
.text-box ul li,
.room-prices-content ul li,
main ul li {
    margin-left: 20px;
}

.site-main ul li,
.text-box ul li,
.room-prices-content ul li,
main ul li {
    list-style-type: square;
}

.site-main ul li::marker,
.text-box ul li::marker,
.site-main ol li::marker,
.room-prices-content ul li::marker,
main ul li::marker {
    color: var(--accent-color);
}

a:hover {
    color: var(--text-color);
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(74, 59, 50, 0.1);
    transition: transform 0.3s ease;
    border-bottom: 2px solid var(--accent-color);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px !important;
    /* Force padding to prevent sticking */
    height: 90px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    /* Crucial fix for layout overflow */
}

.site-logo-container {
    flex-shrink: 0;
}

.site-logo {
    display: block;
    height: 80px;
    width: auto;
    transition: height 0.3s;
}

/* Desktop Navigation */
.main-navigation.desktop-only {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none !important;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    list-style: none !important;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    font-family: var(--font-heading);
    transition: color 0.3s;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

/* Desktop Contact */
.header-contact.desktop-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.header-tel a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    font-family: var(--font-body);
}

.header-tel a:hover {
    color: var(--accent-color);
}

/* Mobile Triggers */
.header-mobile-phone-trigger,
.header-mobile-hamburger {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 42px;
    border-radius: 0;
    /* Use SVG background for perfect shield shape with border */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 615 672'%3E%3Cpath d='M297.9,651.89s92.87-42.42,224.4-142.79c49.7-37.93,72.98-51.65,72.96-179.88-.01-94.24.02-329.23.02-329.23H0l1.22,329.23s-9.54,128.83,71.57,186.68c104.89,74.81,225.11,135.99,225.11,135.99Z' fill='%23dcb37b' stroke='%234a3b32' stroke-width='16' /%3E%3C/svg%3E") no-repeat center / contain;
    border: none !important;
    color: var(--text-color);
    padding: 0;
    transition: all 0.3s ease;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}

.header-mobile-phone-trigger {
    margin: 0;
}

.header-mobile-phone-trigger svg {
    margin-top: -8px;
}

.header-mobile-hamburger {
    margin: 0;
    flex-direction: column;
    gap: 3px;
}

.header-mobile-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s;
    position: relative;
    top: -4px;
    /* Shift lines up into the shield */
}

.header-mobile-phone-trigger:hover,
.header-mobile-hamburger:hover {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-10 -10 615 672'%3E%3Cpath d='M297.9,651.89s92.87-42.42,224.4-142.79c49.7-37.93,72.98-51.65,72.96-179.88-.01-94.24.02-329.23.02-329.23H0l1.22,329.23s-9.54,128.83,71.57,186.68c104.89,74.81,225.11,135.99,225.11,135.99Z' fill='%23F8E7B0' stroke='%234a3b32' stroke-width='16' /%3E%3C/svg%3E") no-repeat center / contain;
}

/* Mobile Panels */
.mobile-navigation-panel,
.mobile-contact-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
}

.mobile-navigation-panel.active,
.mobile-contact-panel.active {
    display: block;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
}

.mobile-navigation li {
    margin-bottom: 15px;
    text-align: center;
}

.mobile-navigation a {
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
}

.mobile-contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.mobile-contact-address {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 18px;
    text-align: center;
    margin-top: 5px;
}

.mobile-contact-address svg,
.mobile-address-pin {
    color: var(--accent-color);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.mobile-address-pin:hover {
    color: var(--text-color);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }

    .header-mobile-phone-trigger,
    .header-mobile-hamburger {
        display: flex;
        width: 38px;
        height: 42px;
    }

    .site-logo-container {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .header-container {
        height: 80px;
        padding: 0 10px;
    }

    .site-logo {
        height: 60px;
    }
}

/* Footer 3-column grid: contacts | logo (1/4) | social */
.footer-contacts-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-col-contacts {
    text-align: center;
    flex: 1;
    order: 1;
    /* desktop: left */
}

.footer-contacts-inner {
    display: inline-block;
    text-align: center;
}

.footer-address,
.footer-email,
.footer-phone-block p {
    margin-bottom: 12px;
}

.footer-phone-block .header-messengers {
    justify-content: center;
    margin-top: 5px;
}

.footer-col-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 25%;
    order: 2;
    /* desktop: center */
}

.footer-logo-center {
    width: 100%;
    max-width: 180px;
    height: auto;
    opacity: 0.92;
}

.footer-col-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex: 1;
    order: 3;
    /* desktop: right */
}

.our-social-networks {
    display: block;
    text-align: center;
}

.footer-bottom-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 179, 123, 0.25);
    margin-top: 10px;
    align-items: end;
    /* Align columns content to the bottom */
}

.footer-bottom-col {
    min-width: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    opacity: 0.7;
}

.footer-bottom-col ul li {
    list-style: none;
}

.footer-bottom-left {
    text-align: left;
}

.footer-bottom-center {
    text-align: center;
}

.footer-bottom-right {
    text-align: right !important;
}

.footer-sc {
    margin: 10px 0 4px 0;
}

.footer-copy-text {
    margin: 20px 0 10px 0 !important;
    display: block !important;
    text-align: center !important;
    width: 100% !important;
}

.footer-sc a {
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-sc a:hover {
    color: #f9e8ad;
}

.footer-copy-text {
    text-align: center;
    margin-top: 15px;
    font-size: 0.72rem;
    opacity: 0.6;
}

.footer-policy-link,
.footer-dev-link,
.footer-sc a {
    text-decoration: underline;
    opacity: 0.8;
    transition: all 0.2s;
}

.footer-policy-link:hover,
.footer-dev-link:hover,
.footer-sc a:hover,
.footer-email a:hover,
.footer-phone-block a:not(.messenger-icon):hover,
.site-footer a:not(.messenger-icon):hover {
    color: #f9e8ad;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .footer-contacts-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col-logo {
        order: 1;
        width: 100%;
        flex: none;
    }

    .footer-col-contacts {
        order: 2;
        text-align: center;
        width: 100%;
    }

    .footer-col-social {
        order: 3;
        justify-content: center;
        width: 100%;
    }

    .footer-bottom-bar {
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: center;
    }

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        text-align: center !important;
        width: 100%;
    }

    .header-messengers {
        justify-content: center !important;
    }

    .footer-copy-text {
        text-align: center;
    }
}

.header-messengers {
    display: flex;
    gap: 12px;
}

.messenger-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 42px;
    background-color: var(--accent-color);
    color: #4A3B33;
    transition: all 0.3s ease;
    clip-path: url(#shield-clip);
    -webkit-clip-path: url(#shield-clip);
}

.messenger-icon svg {
    width: 18px;
    height: 18px;
    margin-top: -8px;
    fill: currentColor;
}

.messenger-icon:hover {
    background-color: #F8E7B0;
    color: #4A3B33;
    transform: translateY(-3px);
}

/* Common Section */
section {
    padding: 20px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
    margin-top: 10px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

/* Slideshow */
.alpark-slideshow {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    overflow: hidden;
    background-color: var(--text-color);
}

.alpark-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alpark-slide.active {
    opacity: 1;
}

.alpark-slide-content {
    background: rgba(253, 251, 247, 0.9);
    padding: 30px 50px;
    border: 3px double var(--accent-color);
    /* Knight theme double border */
    text-align: center;
    max-width: 600px;
}

.alpark-slide-content h2 {
    margin: 0;
    font-size: 36px;
    color: var(--text-color);
    text-transform: uppercase;
}

/* Text Boxes (Brown Blocks/Plaques for Knight Theme) */
.text-box,
.widget {
    background-color: transparent;
    border: none;
    padding: 0px;
    border-radius: 0;
    box-shadow: none;
}

.entry-content,
.contacts-grid {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.knight-pattern {
    /* Subtle background image or color indicating a premium elegant layout */
    background-color: var(--bg-color);
}

/* Rooms Widget Area */
.rooms-section {
    background-color: var(--box-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.rooms-widget-container .widget {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Location Map */
.location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 0;
}

.btn-link,
.slider-more-wrapper a.slider-more-btn {
    display: flex !important;
    width: max-content !important;
    margin: 30px auto 0 !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background-color: var(--accent-color) !important;
    color: var(--text-color) !important;
    border: 1px solid var(--text-color) !important;
    padding: 12px 30px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.btn-link:hover,
.slider-more-wrapper a.slider-more-btn:hover {
    background-color: var(--bg-btn-color) !important;
    color: var(--text-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.review-card {
    border-radius: 0 !important;
}

.btn-map-link {
    display: flex;
    width: max-content;
    margin: 20px auto 0;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-color);
    color: var(--text-color) !important;
    border: 1px solid var(--text-color);
    padding: 12px 25px;
    text-decoration: none !important;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-link:hover,
.btn-map-link:hover {
    background-color: var(--bg-btn-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-map-link svg {
    flex-shrink: 0;
}

.page-template-template-contacts h3 {
    font-size: 2em;
    margin-bottom: 1em;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: var(--text-color);
    /* Brown footer */
    color: var(--accent-color);
    /* Beige text */
    text-align: center;
    padding: 40px 0;
    border-top: 5px solid var(--accent-color);
}

.site-footer p {
    margin: 0;
}

.header-mobile-hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.header-mobile-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.header-mobile-hamburger.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Responsive */
@media screen and (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .alpark-slide-content h2 {
        font-size: 24px;
    }
}

/* Rooms Custom Page */
.rooms-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.room-filter-btn {
    background-color: #fff;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 10px 20px;
    font: 1.2rem var(--font-heading);
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}

.room-filter-btn:hover {
    background-color: var(--bg-btn-color);
    color: var(--text-color);
    border-color: var(--text-color);
}

.room-filter-btn.active {
    background-color: var(--accent-color);
    color: var(--text-color);
    border-color: var(--text-color);
}

/* Grid: equal height columns */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    align-items: start;
    margin-bottom: 40px;
}

/* Card */
.room-item {
    background-color: #fff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(74, 59, 50, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(74, 59, 50, 0.18);
}

/* Thumbnail: relative for overlays */
.room-thumbnail {
    display: block;
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
    border: 1px solid var(--accent-color);
}

/* Top-left badge: room name/number */
.room-badge-title {
    position: absolute;
    top: 15px;
    left: -5px;
    /* Slightly protrudes */
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    padding: 0px 30px 3px 25px;
    max-width: 65%;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* room-badge-title */
    filter: drop-shadow(2px 3px 4px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.room-item a {
    border: 1px solid var(--text-color);
    border-radius: 0;
}

.title-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.badge-text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Top-right: price ribbon */
.room-price-ribbon {
    position: absolute;
    top: 15px;
    right: -15px;
    /* Slightly protrudes */
    width: 155px;
    height: 52px;
    filter: drop-shadow(-2px 3px 4px rgba(0, 0, 0, 0.3));
}

.ribbon-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;

}

.ribbon-text {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    color: var(--accent-color);
    z-index: 2;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.1;
    white-space: nowrap;
    letter-spacing: 0.3px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}


.ribbon-text strong {
    font-size: 1.5em;
}

/* Bottom-right badge: category */
.room-badge-category {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(220, 179, 123, 0.9);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 0;
    letter-spacing: 0.3px;
    border: 1px solid rgba(74, 59, 50, 1);
}

/* Info area */
.room-info {
    padding: 15px;
    background-color: #514239;
}

.room-info .room-category {
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color);
    padding: 5px 10px;
    color: #514239;
    border-radius: 0;
    font: 1.2rem var(--font-heading);
    margin-left: 15px;
    margin-right: -15px;
}

.room-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 10px;
    padding: 10px;
    background-color: var(--accent-color);
    border-radius: 8px;
    justify-content: center;
}

.room-features-block {
    margin-top: 8px;
    color: var(--accent-color);
    text-align: center;
}

.room-features-block p,
.room-excerpt p {
    margin: 0 !important;
}

.amenity-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(74, 59, 50, 0.1);
    /*.amenity-icon-wrapper*/
    border-radius: 0;
    color: #514239;
    transition: all 0.2s;
}

.amenity-icon-wrapper i {
    font-size: 14px;
}

/* Fix for MDI font family */
.mdi::before {
    font-family: "Material Design Icons" !important;
}

.amenity-icon-wrapper:hover {
    border-color: var(--accent-color);
    background: #fff;
    transform: translateY(-2px);
}

.amenity-icon-wrapper svg,
.amenity-icon i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(74, 59, 50, 0.1);
    padding-bottom: 0px;
}

.room-area,
.room-view {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: var(--accent-color);
    margin: 0 !important;
    font-weight: 600;
}

.room-view {
    text-align: right;
}

.room-excerpt {
    font-size: 14px;
    color: var(--accent-color);
    line-height: 1.55;
    margin: 0;
    opacity: 0.85;
    text-align: center;
}

/* Single Room CSS */
.room-single-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 15px;
}

.back-to-category {
    font-family: var(--font-body);
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}

.back-to-category:hover {
    color: var(--accent-color);
}

.all-rooms-link {
    font-family: var(--font-body);
    color: var(--text-color);
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.all-rooms-link:hover {
    opacity: 1;
    color: var(--text-color);
}

.room-single-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.2;
}

.room-single-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.room-single-left {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    min-width: 0;
}

.room-single-right {
    flex: 1;
    min-width: 0;
}

/* Owl Gallery */
.room-gallery-wrap {
    margin-bottom: 20px;
}

.room-owl-main .room-gallery-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.room-owl-thumbs {
    margin-top: 15px;
}

.room-owl-thumbs .room-thumb-item {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.25s;
    padding: 0 4px;
}

.room-owl-thumbs .room-thumb-item:hover,
.room-owl-thumbs .room-thumb-item.active {
    opacity: 1;
}

.room-owl-thumbs .room-thumb-item img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    display: block;
}

.room-gallery-single img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    margin-bottom: 30px;
}

/* Params */
.room-single-params {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 30px;
    padding: 18px 20px;
    background-color: var(--box-bg);
    border: 1px solid var(--border-color);
    border-radius: 0;
}

.room-param {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.room-param svg {
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Amenities */
.room-amenities-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.room-single-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 35px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--box-bg);
    border: 1px solid rgba(220, 179, 123, 0.35);
    border-radius: 0;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: border-color 0.2s;
}

.amenity-item:hover {
    border-color: var(--accent-color);
}

.amenity-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--accent-color);
}

.amenity-icon svg {
    width: 20px;
    height: 20px;
}

/* Sidebar */
.room-single-sidebar {
    position: sticky;
    top: 100px;
    background-color: #fff;
    padding: 30px;
    border: 1px solid var(--accent-color);
    text-align: center;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.room-single-excerpt {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.room-single-price {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    line-height: 1.4;
}

.room-single-price strong {
    font-size: 2rem;
    color: var(--accent-color);
    display: block;
    line-height: 1.1;
}

.room-book-btn {
    display: inline-block;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 15px 20px;
    font-family: var(--font-body);
    border: 1px solid var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 0;
    transition: background-color 0.3s, transform 0.2s;
}

.room-book-btn:hover {
    background-color: var(--bg-btn-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Description */
.room-single-description {
    padding: 0;
}

/* Prices block */
.room-single-prices {
    margin-bottom: 35px;
    text-align: center;
}

.room-section-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.room-prices-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.room-prices-content th,
.room-prices-content td {
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    text-align: left;
}

.room-prices-content th {
    background-color: var(--box-bg);
    font-weight: 600;
    font-family: var(--font-heading);
}

.room-prices-content tr:nth-child(even) td {
    background-color: #fdfbf8;
}

/* Owl Carousel nav overrides */
.room-gallery-wrap .owl-nav button.owl-prev,
.room-gallery-wrap .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 59, 50, 0.6) !important;
    color: var(--accent-color) !important;
    width: 42px;
    height: 42px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.room-gallery-wrap .owl-nav button.owl-prev {
    left: 10px;
}

.room-gallery-wrap .owl-nav button.owl-next {
    right: 10px;
}

.room-gallery-wrap .owl-nav button:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
}

.room-gallery-wrap .owl-nav .owl-prev span,
.room-gallery-wrap .owl-nav .owl-next span {
    display: none;
}

.room-gallery-wrap .owl-nav svg {
    display: block;
}

#room-gallery-main {
    position: relative;
}


#room-gallery-thumbs .owl-nav {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .room-single-content {
        flex-direction: column;
    }

    .room-single-left,
    .room-single-right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .room-single-sidebar {
        position: static;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 30px;
        padding: 20px;
    }

    .room-single-header {
        flex-wrap: wrap;
    }

    /* Full width gallery on mobile */
    .room-gallery-wrap {
        margin-left: -25px !important;
        margin-right: -25px !important;
        width: calc(100% + 50px) !important;
        max-width: none !important;
    }

    .room-owl-main .room-gallery-item img {
        height: 300px !important;
    }

    .room-owl-thumbs {
        padding: 0 25px;
    }
}

/* Homepage Slider */
.home-slider-wrap {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.home-slide-item {
    height: 70vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.home-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    /* Light overlay for text legibility */
}

/* Home Slider Nav & Dots */
/* Home Slider Nav Positioning (Styles now inherited from global) */
#home-slider.owl-carousel .owl-nav button.owl-prev,
#home-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 60px !important;
    /* Slightly larger for main slider */
    height: 60px !important;
}


#home-slider.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}

#home-slider.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

#home-slider.owl-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
}

#home-slider.owl-carousel .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 8px;
    background: rgba(253, 251, 247, 0.5) !important;
    display: block;
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

#home-slider.owl-carousel .owl-dot.active span {
    background: var(--accent-color) !important;
    transform: scale(1.2);
}

/* Remove old slideshow styles */
.alpark-slideshow,
.alpark-slide {
    display: none !important;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .home-slide-item {
        height: 50vh;
        min-height: 300px;
    }

    #home-slider.owl-carousel .owl-nav {
        display: none;
    }
}

/* Owl Fade effect (for fadeOut) */
.owl-carousel .animated {
    animation-duration: 800ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ==========================================================================
   HOMEPAGE SLIDERS (Rooms & Reviews)
   ========================================================================== */

/* 1. Global Owl Overrides for Homepage Sliders - No Horizontal Scroll */
.rooms-slider-home.owl-carousel,
.reviews-widget-container .owl-carousel,
.reviews-widget-container.owl-carousel,
.about-alupka-gallery.owl-carousel {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
    overflow: hidden;
    /* Prevent horizontal scroll */
}

/* Add vertical padding ONLY to specific homepage sliders to keep shadows and badges visible */
.rooms-slider-home.owl-carousel .owl-stage-outer,
.reviews-widget-container .owl-carousel .owl-stage-outer,
.reviews-widget-container.owl-carousel .owl-stage-outer,
.about-alupka-gallery.owl-carousel .owl-stage-outer {
    padding: 15px 0 !important;
}

/* 2. Unified Navigation (Arrows) */
.owl-carousel .owl-nav {
    display: block !important;
    position: static;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 46px !important;
    height: 46px !important;
    background: rgba(253, 251, 247, 0.4) !important;
    border: 1px solid var(--accent-color) !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-color) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
    margin: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 10px !important;
}

.owl-carousel .owl-nav button.owl-next {
    right: 10px !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
    opacity: 0.3 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* 3. Unified Pagination (Dots) */
.owl-carousel .owl-dots {
    margin-top: 25px !important;
    text-align: center;
    display: block !important;
}

.owl-carousel .owl-dots.disabled {
    display: block !important;
}

.owl-carousel .owl-dot span {
    width: 12px !important;
    height: 12px !important;
    background: #ccc !important;
    border: 1px solid #bbb !important;
    margin: 6px !important;
    display: inline-block !important;
    border-radius: 0 !important;
    transition: all 0.3s !important;
}

.owl-carousel .owl-dot.active span {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    transform: scale(1.2);
}

/* 4. Specific Card Styles (Review Card) */
.review-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 5. Slider "View All" Buttons */
.slider-more-wrapper {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
}

.slider-more-btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 0;
    font-family: var(--font-header);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.3);
}

.slider-more-btn:hover {
    background-color: #c09b69;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 179, 123, 0.45);
    color: #fff !important;
}

.slider-more-btn:active {
    transform: translateY(-1px);
}

/* ==========================================================================
   REVIEWS PAGE (/otzyvy/)
   ========================================================================== */

/* 1. External Reviews Section */
.external-reviews-block {
    margin: 40px 0 60px 0;
}

.external-reviews-title {
    font-family: var(--font-heading) !important;
    font-size: 28px !important;
    text-align: center;
    margin-bottom: 40px !important;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.external-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.external-review-card {
    background: #fff !important;
    border: 1px solid rgba(220, 179, 123, 0.2) !important;
    border-radius: 0 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    padding: 30px 20px !important;
    text-align: center;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.external-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(220, 179, 123, 0.2) !important;
    border-color: var(--accent-color) !important;
}

.external-review-icon img {
    height: 35px !important;
    margin-bottom: 20px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.external-review-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    margin-bottom: 15px !important;
    color: var(--text-color);
}

.external-review-avg {
    font-weight: 700 !important;
    color: var(--accent-color) !important;
    font-size: 20px !important;
    margin-bottom: 5px !important;
}

.external-review-avg svg {
    width: 18px !important;
    height: 18px !important;
    fill: var(--accent-color) !important;
    color: var(--accent-color) !important;
}

/* 2. Overall Rating Block */
.overall-rating {
    background: #fdfbf7 !important;
    border: 2px solid var(--accent-color) !important;
    border-radius: 0 !important;
    padding: 40px !important;
    margin-bottom: 60px !important;
    box-shadow: inset 0 0 20px rgba(220, 179, 123, 0.05);
}

.overall-rating .rating-value {
    font-family: var(--font-heading) !important;
    font-size: 64px !important;
    color: var(--text-color) !important;
    margin-bottom: 5px !important;
}

.overall-rating .rating-stars svg {
    width: 30px !important;
    height: 30px !important;
    fill: var(--accent-color) !important;
}

/* 3. Review Items List */
.super-reviews-container {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

.review-item,
.review-card {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 0 !important;
    padding: 35px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03) !important;
    position: relative;
}

.review-name {
    font-family: var(--font-heading) !important;
    font-size: 20px !important;
    color: var(--text-color) !important;
    margin-bottom: 10px !important;
}

.review-rating {
    margin-bottom: 20px !important;
    color: var(--accent-color) !important;
}

.review-content {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #555 !important;
}

.admin-response {
    background: #f9f6f2 !important;
    border-left: 4px solid var(--accent-color) !important;
    margin-top: 25px !important;
    padding: 20px 25px !important;
    border-radius: 0 !important;
}

.admin-response-title {
    color: var(--accent-color) !important;
    font-size: 15px !important;
    text-transform: uppercase;
    margin-bottom: 10px !important;
    letter-spacing: 0.5px;
}

/* 4. Review Submission Form */
.super-review-form {
    background: #fff !important;
    border: 1px solid var(--accent-color) !important;
    padding: 50px !important;
    border-radius: 0 !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05) !important;
    max-width: 800px !important;
    margin: 40px auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
    display: block !important;
}

.super-review-form h3 {
    font-family: var(--font-heading) !important;
    font-size: 32px !important;
    text-transform: uppercase;
    margin-bottom: 40px !important;
    color: var(--text-color);
    text-align: center;
}

.super-review-form .form-group>label:not([for^="star"]) {
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    text-transform: uppercase;
    color: var(--text-color) !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.5px;
    font-weight: 600 !important;
    display: block !important;
}

.super-review-form input,
.super-review-form textarea {
    border: 1px solid rgba(220, 179, 123, 0.4) !important;
    padding: 16px 20px !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    color: var(--text-color) !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
}

.super-review-form input:focus,
.super-review-form textarea:focus {
    border-color: var(--accent-color) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(220, 179, 123, 0.15) !important;
}

.super-review-form form#super-review-form {
    display: block !important;
    width: 100% !important;
}

.super-review-form .form-group {
    width: 100% !important;
    margin-bottom: 25px !important;
}

.super-review-form button {
    background: var(--accent-color) !important;
    display: block !important;
    margin: 40px auto 0 !important;
    width: auto !important;
    min-width: 280px !important;
    padding: 14px 45px !important;
    font-family: var(--font-header) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 15px rgba(220, 179, 123, 0.4) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.super-review-form button:hover {
    background: #c09b69 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 179, 123, 0.5) !important;
}

/* 5. Rating Stars - Correct interactive coloring */
.rating-select {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    margin-top: 10px !important;
}

.rating-select label {
    font-size: 44px !important;
    color: #ddd !important;
    cursor: pointer !important;
    transition: color 0.1s ease !important;
}

.rating-select label:hover,
.rating-select label:hover~label,
.rating-select input:checked~label {
    color: var(--accent-color) !important;
}

/* Price Table Styles */
.room-prices-content {
    display: block;
    width: 100%;
    max-width: calc(100vw - 30px);
    /* Account for .container padding */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .site-main {
        overflow-x: hidden;
    }
}

/* Fix for related rooms slider with 1-2 items - STRICT MODE */
#rooms-slider-related .room-item {
    max-width: 380px !important;
    width: 100% !important;
    margin: 0 auto !important;
}

/* Force 1/3 width for owl-items on desktop regardless of count */
@media (min-width: 1024px) {

    #rooms-slider-related[data-count="1"] .owl-item,
    #rooms-slider-related[data-count="2"] .owl-item {
        width: 380px !important;
    }
}

/* Base: Hide nav/dots when explicitly requested by JS attribute */
#rooms-slider-related[data-count="1"] .owl-nav,
#rooms-slider-related[data-count="1"] .owl-dots {
    display: none !important;
}

#rooms-slider-related[data-count="2"] .owl-nav,
#rooms-slider-related[data-count="2"] .owl-dots,
#rooms-slider-related[data-count="3"] .owl-nav,
#rooms-slider-related[data-count="3"] .owl-dots {
    display: none !important;
}

/* UI Exception: Show nav/dots on mobile if we have more than 1 item */
@media (max-width: 768px) {

    #rooms-slider-related[data-count="2"] .owl-nav,
    #rooms-slider-related[data-count="2"] .owl-dots,
    #rooms-slider-related[data-count="3"] .owl-nav,
    #rooms-slider-related[data-count="3"] .owl-dots {
        display: block !important;
    }
}

.table-price {
    min-width: 450px;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

.table-price td,
.table-price th {
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    text-align: left;
}

.table-price thead {
    background-color: #fdfbf8;
}

.table-price thead td,
.table-price thead th {
    font: 1.3rem var(--font-heading) !important;
    color: #514239;
    font-weight: 600;
    vertical-align: top;
    white-space: nowrap;
}

.table-price thead td strong,
.table-price thead th strong {
    white-space: normal;
}

.table-price td a {
    color: #4a3b32;
    text-decoration: underline;
}

.table-price tr:nth-child(even) td {
    background-color: #faf7f2;
}

.room-prices-content table {
    width: 100% !important;
    border-collapse: collapse !important;
}

@media (max-width: 768px) {
    .super-review-form {
        padding: 30px 20px !important;
    }

    .super-review-form button {
        width: 100% !important;
        min-width: 0 !important;
    }

    .rating-select label {
        font-size: 36px !important;
    }
}

/* UI exception removed: showing arrows on mobile as requested */

/* --- Contacts Page Restructuring --- */
.page-contact-sidebar {
    border: none;
}

.contact-sidebar-inner {
    text-align: center;
}

.sidebar-messengers {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.our-social-networks {
    display: block;
    text-align: center;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.site-footer .our-social-networks {
    color: var(--accent-color);
    opacity: 0.9;
}

.contact-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-color);
    opacity: 0.7;
}

.contact-value {
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-value a {
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

.contact-value a:hover {
    opacity: 0.8;
}

.sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 42px;
    background-color: var(--accent-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    clip-path: url(#shield-clip);
    -webkit-clip-path: url(#shield-clip);
}

.sidebar-icon:hover {
    background-color: #F8E7B0;
    transform: translateY(-3px);
}

.sidebar-icon svg {
    width: 18px;
    height: 18px;
    margin-top: -8px;
    fill: currentColor;
}

.sidebar-social {
    justify-content: center;
}

.wp-block-gallery,
.wp-block-image {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .contacts-top-area {
        gap: 20px !important;
    }

    .page-contact-sidebar {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .review-card {
        padding: 25px 15px;
    }
}

.mobile-contact-panel,
.mobile-navigation-panel {
    border-bottom: 5px solid var(--accent-color);
}

/* Active menu item highlighting */
.current-menu-item a,
.current-menu-parent a,
.current-menu-ancestor a,
.current-room-ancestor a,
.current-archive-item a,
.current-post-type-archive a,
.current-post-type-archive-room a,
.current_page_item a,
.current_page_parent a,
.current_page_ancestor a {
    color: var(--accent-color) !important;
}

.super-review-form button {
    color: var(--text-color) !important;
    border: 1px solid var(--text-color) !important;
    font-family: var(--font-heading) !important;
}

.super-review-form button:hover {
    background-color: var(--bg-btn-color) !important;
}

.super-review-form .success {
    color: var(--text-color) !important;
    font-family: var(--font-heading) !important;
    font-size: 22px !important;
    text-align: center !important;
}