/* Single Chalet Page Styles */

.link_blue {
    color: var(--blue);
}

.link_blue:hover {
    color: var(--blue);
}

.form-right {
    margin-left: 5rem;
}

.form-right form {
    border: 1px solid #ddd;
    padding: 16px;
    position: sticky;
    top: 120px;
    z-index: 100;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nightly_price {
    display: block;
    font-family: "Roboto";
    font-weight: bold;
    font-size: 20px;
    color: var(--primary);
    line-height: 52px;
}

.minimum_stay {
    font-size: 12px;
    margin-bottom: 16px;
    color: #666;
}

.arrival_departure {
    margin-bottom: 16px;
}

.guests {
    position: relative;
    margin-bottom: 16px;
}

.guests input[type="number"] {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.guests_popup {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
}

.guests_popup .popup-content {
    display: flex;
    justify-content: space-between;
}

.guests_popup .popup-content div {
    flex: 1;
    margin-right: 10px;
}

.guests_popup .popup-content div:last-child {
    margin-right: 0;
}

.guests_popup .popup-content #apply_guests {
    background: #7b8cff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    height: max-content;
    margin-top: auto;
    margin-bottom: auto;
    transition: background 0.2s;
}

/* Accessibility List */
.access ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Map Image */
.map img.max-width-100 {
    max-width: 100%;
}

/* Form Styles */
.form-top .flex-center {
    display: flex;
    align-items: center;
}

.arrival_departure input {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

.arrival_departure input[type="hidden"] {
    display: none;
}

/* Error Messages */
.error {
    color: red;
    display: none;
    font-size: 12px;
}

.error.show {
    display: block;
}

/* Utility Classes */
.display-flex {
    display: flex;
}

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

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

/* Gallery Layout Styles */
.chalet-media-gallery {
    width: 100%;
    margin-bottom: 2rem;
}

.gallery-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.featured-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.featured-media .media-item {
    width: 100%;
    height: 100%;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.featured-media:hover img {
    transform: scale(1.05);
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: relative;
    aspect-ratio: 1;
}

/* Ensure the last thumbnail item can be overlayed */
.thumbnails-grid .media-item:last-of-type {
    position: relative;
}

.thumbnails-grid .media-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
}

.thumbnails-grid .media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.thumbnails-grid .media-item:hover img {
    transform: scale(1.05);
}

.see-more-media {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    white-space: nowrap;
}

.see-more-media:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.see-more-media span {
    display: inline-block;
}

/* Media Item Styles */
.media-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.media-item-video {
    position: relative;
}

/* Video Thumbnail Styles */
.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.media-item-video:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
    .gallery-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .featured-media {
        height: 300px;
    }
    
    .thumbnails-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }
    
    .see-more-media {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 8px;
        text-align: center;
    }
}

/* Lightbox Styles */
.chalet-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chalet-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10000;
    max-width: 95vw;
    max-height: calc(95vh - 120px);
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 120px;
}

.lightbox-media-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper,
.lightbox-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* Responsive video wrapper for iframes - maintains 16:9 aspect ratio */
.lightbox-video-wrapper {
    width: 90vw;
    max-width: 1280px;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
    border-radius: 4px;
}

/* For uploaded videos, use flexible sizing instead of fixed aspect ratio */
.lightbox-video-wrapper.video-upload {
    padding-bottom: 0;
    height: auto;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-video-wrapper video {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.lightbox-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 4px;
}

/* Lightbox Controls */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    /* transform: scale(1.1); */
}

.lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    font-weight: bold;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Lightbox Thumbnails Navigation */
.lightbox-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-thumbnails-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
}

.lightbox-thumbnails-container::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.lightbox-thumbnails-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.lightbox-thumbnails-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.lightbox-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lightbox-thumbnail:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.lightbox-thumbnail.active {
    opacity: 1;
    border-color: #fa7753;
    transform: scale(1.1);
}

.lightbox-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lightbox-thumbnail.video-thumb {
    position: relative;
}

.video-thumb-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    width: 24px;
    height: 24px;
}

.video-thumb-overlay svg {
    width: 100%;
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-image-wrapper img {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-video-wrapper {
        width: 95vw;
        padding-bottom: 56.25%; /* Maintain 16:9 aspect ratio */
    }
    
    .lightbox-video-wrapper video {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-thumbnails {
        padding: 10px 0;
    }
    
    .lightbox-thumbnails-container {
        padding: 0 10px;
        gap: 8px;
    }
    
    .lightbox-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .lightbox-content {
        max-height: calc(95vh - 120px);
    }
}

.arrival_departure label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
/* Calendar Styles */
.datepicker__month-day--selected {
  background-color: rgba(0, 128, 120, 0.2)!important;
}

.datepicker__month-day--hovering {
  background-color: rgba(0, 128, 120, 0.3)!important;
}

.datepicker__month-day--first-day-selected,
.datepicker__month-day--last-day-selected {
  background-color: #008078!important;
}

.datepicker__close-button,
.datepicker__clear-button,
.datepicker__submit-button {
  background-color: #008078!important;
}

.datepicker__close-button:hover,
.datepicker__clear-button:hover,
.datepicker__submit-button:hover {
  background-color: #006b65!important;
}

/* Bug Fixes */
.virtual-tour iframe{
    max-width: 100%;
}
.guest-popup .controls input{
    padding:0!important;
    border:none!important;
    /* width: max-content!important; */
    margin-bottom: 0!important;
}

/* Hosted By Section */
.hosted-by-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.host-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e0e0e0;
}

.hosted-by-text {
    font-size: 14px;
    color: #666;
}

.host-name {
    font-weight: 600;
    color: #333;
}

.chalet-subtitle {
    font-size: 16px;
    color: #666;
    margin: 8px 0;
}

.property-number {
    font-size: 14px;
    color: #999;
    font-family: monospace;
    margin: 4px 0;
}

.citq-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 12px;
    background: #f0f8ff;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
}

.rental-type-badge {
    background: #4CAF50;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Property Summary Section */
.property-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 24px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    min-width: 140px;
}

.summary-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary, #fa7753);
    flex-shrink: 0;
}

.summary-item span {
    font-weight: 500;
}
/* Title */
.overview .heading h2.chalet-title{
    display: flex;
    align-items: center;
    position: relative;
}
.overview .heading h2.chalet-title img{
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
}
/* Description Truncation */
.description-content.description-truncated {
    max-height: 150px;
    overflow: hidden;
    position: relative;
}

.description-content.description-truncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, white);
}

.description-content.description-expanded {
    max-height: none;
}
.description-content p,
.overview p{
    font-size: 16px!important;
    line-height: 1.7!important;
}

.view-more-btn {
    background: none;
    border: none;
    color: var(--primary, #fa7753);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    color: #e86542;
    transform: translateX(4px);
}

/* Nearby Attractions & Event Services Sections */
.nearby-attractions,
.event-services {
    margin: 32px 0;
}

.nearby-attractions h3,
.event-services h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.attractions-content,
.event-services-content {
    line-height: 1.6;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .property-summary {
        flex-direction: column;
        gap: 12px;
    }
    
    .summary-item {
        min-width: auto;
        width: 100%;
    }
    
    .form-right {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .form-right form {
        position: relative;
        top: 0;
    }
    
    .hosted-by-section {
        flex-direction: row;
    }
}

/* Header Bottom Styles */
.header-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--blue);
}
.hosted-by-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hosted-by-section .host-avatar {
    border-radius: 16px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}
.hosted-by-section .hosted-by-text {
    display:flex!important;
    align-items:center;
    gap:5px;
}

/* More About Section Styles */
.more-about-section {
    margin: 60px 0;
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.more-about-container {
    display:flex;
    flex-direction: column;
    /* display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    max-width: 100%; */
}

.more-about-gestion,
.more-about-owner {
    padding: 20px;
}

.more-about-gestion h3,
.more-about-owner h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0px;
    line-height:1.2;
}
.more_about_since{
    margin-bottom: 0px;
}
.gestion-since,
.registration-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.gestion-description p,
.owner-about p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.more-about-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.more_about_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.more_about_top_right img{
    border-radius: 16px;
  width: 70px;
  height: 70px;
  object-fit: cover;
}
.btc-logo {
    width: 120px;
    height: auto;
}

.btc-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.owner-logo {
    margin: 20px 0;
    text-align: center;
}

.owner-logo img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.owner-registration {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    font-weight: 500;
}

.owner-about {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.owner-about h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.owner-about em {
    color: #999;
}

/* Responsive Design for More About Section */
@media (max-width: 992px) {
    .more-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .more-about-center {
        order: -1;
        padding: 20px 0;
    }
    
    .btc-logo {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .more-about-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .more-about-gestion,
    .more-about-owner {
        padding: 10px;
    }
    
    .more-about-gestion h3,
    .more-about-owner h3 {
        font-size: 20px;
    }
}

/* Similar Cottages Section */
.similar-cottages {
    margin: 60px 0;
    padding: 40px 0;
}

.similar-cottages h3 {
    font-family: Roboto;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
}

.similar-cottages-slider {
    position: relative;
    padding: 10px 0 20px 0;
    margin: 0 -12px;
}

.similar-cottages-slider .slick-list {
    overflow: hidden;
}

.similar-cottages-slider .slick-track {
    display: flex !important;
}

.similar-cottages-slider .slick-slide {
    height: auto;
    padding: 0 12px;
}

.similar-cottages-slider .slick-slide > div {
    height: 100%;
}

/* Similar Cottage Card */
.similar-cottage-card {
    background: #fff;
    border-radius: 12px;
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.similar-cottage-card:hover {
    transform: translateY(-2px);
}

.similar-cottage-card .card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Card Image Wrapper */
.similar-cottage-card .card-image-wrapper {
    position: relative;
    width: 100%;
    /* height: 300px; */
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
}

.similar-cottage-card .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.similar-cottage-card:hover .card-image {
    transform: scale(1.05);
}

/* Favorite Button */
.similar-cottage-card .favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.similar-cottage-card .favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.similar-cottage-card .favorite-btn svg {
    color: #222;
    width: 20px;
    height: 20px;
}

.similar-cottage-card .favorite-btn:hover svg {
    fill: rgba(255, 56, 92, 0.1);
    stroke: #ff385c;
}

/* Card Content */
.similar-cottage-card .card-content {
    padding: 12px 0 0 0;
}

.similar-cottage-card .card-location-type {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #717171;
    margin-bottom: 4px;
    line-height: 1.4;
}

.similar-cottage-card .card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #222;
    margin: 0 0 8px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Card Bottom - Price and Details */
.similar-cottage-card .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 8px;
}

.similar-cottage-card .card-price {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.similar-cottage-card .price-amount {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
}

.similar-cottage-card .price-period {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #717171;
    line-height: 1.2;
}

.similar-cottage-card .card-details-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.similar-cottage-card {
    position: relative;
}

.similar-cottage-card .verified-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #10b981;
    pointer-events: none;
}
.similar-cottage-card .verified-badge img {
    width: 24px;
    height: 24px;
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.similar-cottage-card .card-guests {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
}

.similar-cottage-card .card-specs {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #717171;
    line-height: 1.3;
}

/* Slider Navigation Arrows */
.similar-cottages-slider .similar-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.similar-cottages-slider .similar-arrow:hover {
    background: #f7f7f7;
    border-color: #222;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.similar-cottages-slider .similar-arrow img {
    width: 16px;
    height: 16px;
}

.similar-cottages-slider .slick-prev.similar-arrow {
    left: -20px;
}

.similar-cottages-slider .slick-next.similar-arrow {
    right: -20px;
}

.similar-cottages-slider .slick-prev.slick-disabled,
.similar-cottages-slider .slick-next.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.similar-cottages-slider .slick-prev.slick-disabled:hover,
.similar-cottages-slider .slick-next.slick-disabled:hover {
    background: #fff;
    border-color: #ddd;
}

/* Responsive adjustments for similar cottages */
@media (max-width: 768px) {
    .similar-cottages {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .similar-cottages h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .similar-cottages-slider .slick-track {
        gap: 16px;
    }
    
    .similar-cottage-card .card-image-wrapper {
        height: 260px;
    }
    
    .similar-cottage-card .card-title {
        font-size: 15px;
    }
    
    .similar-cottage-card .price-amount {
        font-size: 15px;
    }
    
    .similar-cottages-slider .slick-prev.similar-arrow {
        left: -10px;
    }
    
    .similar-cottages-slider .slick-next.similar-arrow {
        right: -10px;
    }
    
    .similar-cottages-slider .similar-arrow {
        width: 36px;
        height: 36px;
    }
}

/* Booking Form Updates */
#booking_form .form-details label{
    font-size: 16px;
}
.booking-btn-green {
    background-color: #008078 !important;
    border-color: #008078 !important;
    width: 100%;
    padding: 5px 10px!important;
}

.booking-btn-green:hover {
    background-color: #059669 !important;
    border-color: #059669 !important;
    scale:unset!important;
}

/* Match height of arrival/departure and guests fields */
.arrival_departure input[type="text"],
.guest-dropdown {
    min-height: 48px;
    display: flex;
    align-items: center;
}

.guest-dropdown {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    background: #fff;
    justify-content: space-between;
}

/* Remove minimum_stay from form-top if empty, or adjust spacing */
.form-top {
    margin-bottom: 16px;
}

/* Pricing summary responsive styles */
@media (max-width: 768px) {
    #pricing_summary {
        margin-top: 12px;
        padding: 12px;
    }
    
    #total_price_display {
        font-size: 20px !important;
    }
    
    #per_person_per_night_display {
        font-size: 14px !important;
    }
}