/* Yacht Detail Page Styles */
html {
    overflow-x: hidden;
}
.yacht-detail-page {
    background-color: #fff;
padding-bottom: 20px;
  padding-top: 40px;
}

/* Breadcrumb Styles */
.yacht-breadcrumb {
    background-color: transparent;
    padding: 16px 0;
    padding-bottom: 0;

}

.yacht-breadcrumb .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.yacht-breadcrumb .breadcrumb-item {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
    text-decoration: none;

}

.yacht-breadcrumb .breadcrumb-item a {
    color: #737373;
    text-decoration: none;
}

.yacht-breadcrumb .breadcrumb-item a:hover {
    color: #48AC98;
    text-decoration: underline;
}

.yacht-breadcrumb .breadcrumb-item.active {
    color: #262626;
}

/* Header Section */
.yacht-header {
 margin-bottom: 10px;
}

.yacht-title {
    font-weight: var(--fonttitlesemi);
    font-family: var(--fonttitle);
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--contentprimaryenabled);
            padding: 0 0 .5rem 0;
}

.yacht-meta-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}

.yacht-meta-left {
    display: flex;
    align-items: center;
    gap: .25rem 1rem;
    flex-wrap: wrap;
    padding: 0;
    padding-bottom: .5rem;
}

.yacht-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
    color: #262626;


    font-family: var(--fontLabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentPrimaryEnabled);
    text-decoration: none;
    font-weight: var(--fontlabormed);

}

.yacht-rating .fas.fa-star {
    width: 100%;
    height: 100%;
    fill: var(--othersreviewpositive);
    color: var(--othersreviewpositive);
    font-size: 16px;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0;

}

.review-count {

    text-decoration: underline;
    cursor: pointer;
}

.yacht-meta-item {
font-weight: var(--fontlaborreg);
  font-family: var(--fontlabor);
  font-size: .875rem;
  line-height: 1.25rem;
  color: var(--contentprimaryrnabled);
  text-decoration: none;
}

.yacht-meta-item i {
    color: #48AC98;
    font-size: 14px;
}

.yacht-meta-right {
    display: flex;
    gap: 16px;
}

.btn-share,
.btn-favorite {
    
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-weight: 500;
    color: #262626;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
font-weight: var(--fontLaborMed);
  font-family: var(--fontLabor);
  font-size: .875rem;
  line-height: 1.25rem;
  color: var(--contentPrimaryEnabled);
  text-decoration: none;

}

.btn-share:hover,
.btn-favorite:hover {
    /* background-color: #f5f5f5; */
    text-decoration: underline;
}

/* Gallery Styles */
.productCover__ctaContainer{
    display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  gap: .75rem;
}
.productCover__ctaContainer button{
    font-weight: var(--fontlaborMed);
  font-family: var(--fontlabor);
  font-size: .875rem;
  line-height: 1.25rem;
  color: var(--contentprimaryenabled);
  text-decoration: none;
  border-radius: .5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  min-height: .0625rem;
  width: auto;
  text-align: center;
  padding: .5rem 1rem;
  background: var(--buttonlightenabled);
  -webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,0.04);
  box-shadow: 0 .125rem .25rem rgba(0,0,0,0.04);
 
}
.yacht-gallery {
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}

.main-photo {
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.main-photo:hover {
    /* transform: scale(1.02); */
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-photos {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

.side-photos .photo-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.side-photos .photo-item:hover {
    /* transform: scale(1.02); */
}

.side-photos .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-more {
    position: relative;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.photo-overlay:hover {
    background: rgba(0, 0, 0, 0.6);
}

.view-more-text {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Modal Styles */
.photoModal .modal-dialog {
    max-width: 100vw;
    margin: 0;
}
.photoModal .modal-content{
        height: 100vh;
}

.modal-dialog {
    max-width: 90vw;
}

.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 24px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
}
.fancybox__container {
    z-index: 1200;
}
.modal-body {
    padding: 24px;
}
.photoModal .modal-body{
        max-height: 60vh;
    max-height: 91vh;
    overflow: auto;     
}
/* Modal Gallery Grid */
.modal-gallery-grid {
    overflow: hidden;
    gap: 16px;

    overflow-y: auto;
    display: flex;
    flex-wrap: wrap;
    max-width: 880px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;  

}

.modal-photo-item {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;width: 49%;
}

.modal-photo-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.modal-thumb {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-photo-item a {
    display: block;
    text-decoration: none;
}

.modal-photo-item:hover .modal-thumb {
    filter: brightness(1.1);
}

/* Photo Modal Styles */
.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.modal-photo-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal-photo-item:hover {
    /* transform: scale(1.02); */
}

.modal-photo-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.modal-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.2s ease;
}

.modal-photo-item:hover .modal-thumb {
    opacity: 0.9;
}

/* Modal customization */
#photoModal .modal-dialog {
    max-width: 90vw;
}

#photoModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#photoModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 30px 15px;
}

#photoModal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

#photoModal .modal-body {
    padding: 20px 30px 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px 0;
    }

    #photoModal .modal-header,
    #photoModal .modal-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    #photoModal .modal-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .modal-gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    #photoModal .modal-header,
    #photoModal .modal-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/* Product View Container */
.productView__container {
    background-color: #fff;

}

.product-left-content {
    width: 100%;
    padding: 0;
}

/* Owner Section */
.owner-section {
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}

.owner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.owner-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}

.owner-avatar {
    display: flex;
    align-items: center;
}

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e5e5;
}

.yacht-specs {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}



.spec-separator {
    color: #d4d4d4;
    font-weight: bold;
}

/* Features Section */
.features-section {
margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding: 0;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
max-width: 100%;
    object-fit: contain ;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;margin: 0;
}

.feature-description {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
    text-decoration: none;
}

/* Description Section */
.description-section {

    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.section-title {
    font-weight: var(--fonttitlesemi);
    font-family: var(--fonttitle);
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--contentprimaryenabled);padding-bottom: 1.5rem;
}

.boat-model {
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    padding-bottom: 1rem;    margin: 0;
}

.description-text {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;

    overflow-wrap: anywhere;
    word-break: break-word;
    margin: 0;
}

/* Equipment Section */
.equipment-section {
position: relative;
    padding: 2rem 0;
}
.equipment-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: .0625rem;
    background: var(--borderstaticenabled);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 24px;
}

.equipment-item {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}
.equipment-item img{ max-width: 24px;}
.equipment-item i {
    font-size: 22px;
    color: var(--contentprimaryenabled);
    width: 28px;
    text-align: center;
}

.view-all-equipment {
font-weight: var(--fontlaborMed);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    border-radius: .5rem;
    padding: .75rem 1.5rem;
    background-color: var(--backgroundsurfaceenabled);
    border: .0625rem solid var(--borderinteractiveenabled);
    text-align: center;
    cursor: pointer;
}

.view-all-equipment:hover {
        border: .0625rem solid var(--borderinteractivehover);
}

/* Product Content Layout */
.product-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.product-right-content {
    position: sticky;
    top: 100px;
}

/* Booking Calendar Box */
.booking-calendar-box {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 400px;
}

.booking-header {
    margin-bottom: 24px;
}

.booking-title {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--contentprimaryenabled);
    margin: 0 0 8px 0;
}

.booking-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-rating .fas.fa-star {
    color: #F476F4;
    font-size: 16px;
}

.rating-score {
    font-weight: 600;
    color: #262626;
    font-size: 14px;
}

.rating-count {
    color: #737373;
    font-size: 14px;
}

/* Booking Form */
.booking-form {
    display: flex;
    flex-direction: column;
}

.dates-section {
margin-bottom: 16px;
}

.dates-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #262626;
    margin-bottom: 12px;
}

.date-inputs {
    display: flex;
    align-items: center;
    border: 1px solid #d4d4d4;
    border-radius: 8px;
    background: #fff;
    position: relative;

    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: 0.8rem;
    line-height: 1.5rem;
    color: var(--contentplaceholderenabled);
    text-decoration: none;

}

.date-input-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.date-input {
    width: 100%;
    padding: 16px 40px 16px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #737373;
    background: transparent;    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: 0.8rem;
    line-height: 1.5rem;
    color: var(--contentplaceholderenabled);
    text-decoration: none;
}

.date-input::placeholder {
    color: #a3a3a3;
}

.date-icon {
    position: absolute;
    right: 12px;
    color: #a3a3a3;
    font-size: 14px;
    pointer-events: none;
}

.date-separator {
    padding: 0 8px;
    color: #a3a3a3;
    font-size: 12px;
}

.date-inputs:focus-within {
    border-color: #48AC98;
    box-shadow: 0 0 0 3px rgba(72, 172, 152, 0.1);
}

/* Buttons */
.check-availability-btn {
    width: 100%;
    padding: 11px;
    background: #262626;
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentcontrastenabled);
    text-decoration: none;
}

.check-availability-btn:hover {
    background: #000;
}

.or-divider {
    text-align: center;
    position: relative;

}

.or-divider span {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .75rem;
    line-height: 1rem;
    color: var(--contentprimaryenabled);
    display: block;
    text-align: center;
    margin: .25rem 0;
    text-transform: uppercase;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e5e5;
    z-index: -1;
}

.book-btn {
    width: 100%;
    padding: 11px;
    background: #F476F4;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--buttonaccentenabled);
    border-color: var(--buttonaccentenabled);
    color: var(--contentbranddark) !important;

}

.book-btn:hover {
    background: #E865E8;
}

/* Booking Note and Links */
.booking-note {
    font-size: 12px;
    color: #737373;
    text-align: center;
    margin: 8px 0;
    line-height: 1.4;
}

.price-list-link {
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
    margin-bottom: 6px;

    font-weight: var(--fontlaborReg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
    text-decoration: none;
    text-decoration: underline;

}

.price-list-link:hover {
    color: #48AC98;
}

/* Payment Options */
.payment-options {
    border-top: 1px solid #e5e5e5;
    padding-top: 16px;
    margin-top: 8px;
}

.payment-text {
text-align: center;
    padding-bottom: .75rem;
    padding-top: .75rem;
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentprimaryenabled, #343A40);
    text-decoration: none;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.payment-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Flatpickr Calendar Customization */




@media (max-width: 768px) {

    
    .yacht-title {
        font-size: 24px;
    }
    
    .yacht-meta-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .yacht-meta-left {
        align-items: flex-start;
        gap: 12px;
    }
    .yacht-meta-left > span{
        width: 48%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .main-photo {
        height: 300px;
    }
    
    .side-photos {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 200px;
    }
    
    .yacht-specs {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-dialog {
        max-width: 95vw;
        margin: 10px;
    }
    
    .product-left-content {
               padding: 0 5px;
    }
    
    .owner-header {
        align-items: flex-start;
        gap: 10px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        margin-bottom: 24px;
    }
    
    .yacht-specs {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .side-photos {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: 320px;
    }
    
    .btn-share,
    .btn-favorite {
        font-size: 12px;
        padding: 6px 8px;
    }
    
    .yacht-meta-item {
        font-size: 12px;
    }
    
    .spec-item {
        font-size: 14px;
    }
    
    .productView__container {
        padding: 32px 0;
    }
    
    .owner-section,
    .features-section,
    .description-section {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    

    
    .owner-title {
        font-size: 20px;
    }
}

/* Calendar Modal Styles */
#calendarModal .modal-dialog {
    max-width: 800px;
}

#calendarModal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

#calendarModal .modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px;
}

#calendarModal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #262626;
}

#calendarModal .modal-body {
    padding: 24px;
}

.calendar-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calendar-column {
    text-align: center;
}

.calendar-title {
    font-size: 16px;
    font-weight: 600;
    color: #262626;
    margin-bottom: 16px;
    text-align: center;
}

.inline-calendar {
    width: 100%;
    display: flex;
    justify-content: center;
}

.selected-date-display {
    margin-top: 16px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
    display: none;

}

.selected-date-label {
    font-size: 12px;
    color: #737373;
    font-weight: 500;
    display: block;
    margin-bottom: 4px;
}

.selected-date-value {
    font-size: 14px;
    font-weight: 600;
    color: #262626;
}

#calendarModal .modal-footer {
    border-top: 1px solid #e5e5e5;
    padding: 20px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

#calendarModal .btn-secondary {
    background: #f5f5f5;
    border: 1px solid #d4d4d4;
    color: #737373;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
}

#calendarModal .btn-secondary:hover {
    background: #e5e5e5;
    border-color: #a3a3a3;
}

#calendarModal .btn-primary {
    background: #F476F4;
    border: 1px solid #F476F4;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
}

#calendarModal .btn-primary:hover {
    background: #E865E8;
    border-color: #E865E8;
}

/* Inline Calendar Customization */
.inline-yacht-calendar.flatpickr-calendar {
    box-shadow: none !important;
    border: 0px solid #e5e5e5;
    width: 100%;
    max-width: 320px;
}







/* Responsive Calendar Modal */
@media (max-width: 768px) {
    #calendarModal .modal-dialog {
        max-width: 95vw;
        margin: 10px;
    }
    
    .calendar-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .inline-yacht-calendar.flatpickr-calendar {
        max-width: 100%;
    }
    
    #calendarModal .modal-body {
        padding: 16px;
    }
    
    #calendarModal .modal-header,
    #calendarModal .modal-footer {
        padding: 16px;
    }
}

/* Hover Effects */
.gallery-grid [data-photo] {
    transition: all 0.3s ease;
}

.gallery-grid [data-photo]:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Custom scrollbar for modal */
.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.productCover__imagesContainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 30rem;
    gap: .25rem;
}
.productCover__mainImg, .productCover__mainImg--notAlone {
    width: 100%;
}
.productCover__mainImg--notAlone {
    max-width: 46.5rem;
    height: 100%;
}
.productCover__mainImg--notAloneWithFourImages {
    /* max-width: 37.75rem; */
}
.productCover__img, .productCover__img--small, .productCover__img--fullWidth {
    background: var(--backgroundShadowEnabled);
    padding-top: 64.51612903225%;
    background-image: url(assets/images/placeholders/picture-placeholder.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    cursor: pointer;
    position: relative;
}
.productCover__mainImg--notAlone .productCover__img, .productCover__mainImg--notAlone .productCover__img--small, .productCover__mainImg--notAlone .productCover__img--fullWidth {
    height: 100%;
}
.productCover__sideImgs {
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: grid;
}

.productCover__sideImgs--fourImages {
    grid-template-areas:
        'photo1 photo2'
        'photo3 photo4';
    max-width: 32.5rem;
    gap: .25rem;
}

.productCover__img--small {
    padding-top: 63.333333333333%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1228px;
    }
}

/* Half Day Controls */
.half-day-controls {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.half-day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.half-day-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.half-day-label {
    font-size: 16px;
    font-weight: 500;
    color: #1a202c;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: 0.3s;
    border-radius: 24px;
    display: block;
}

.toggle-label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-input:checked + .toggle-label {
    background-color: #0891b2;
}

.toggle-input:checked + .toggle-label:before {
    transform: translateX(20px);
}

/* Time Period Dropdown */
.time-period-dropdown {
    position: relative;
    display: inline-block;
}

.time-period-select {
    appearance: none;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 35px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1a202c;
    cursor: pointer;
    min-width: 120px;
}

.time-period-select:focus {
    outline: none;
    border-color: #0891b2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

.dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 12px;
    pointer-events: none;
}

/* Pricing Summary */
.pricing-summary {
    margin-bottom: 20px;
}

.pricing-row {
    display: flex;
    gap: 20px;
     margin-bottom: 0px;
}

.pricing-label {
font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .75rem;
    line-height: 1rem;
    color: #343A40;    min-width: 90px;
}

.pricing-values {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    gap:20px
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;min-width: 90px;    align-items: center;
}

.checkin-time,
.checkout-time {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .75rem;
    line-height: 1rem;
    color: #343A40;min-width: 90px;    align-items: center;
}

/* Pricing Actions */
.pricing-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.btn-delete-dates {
    flex: 1;
    padding: 10px 16px;
    background: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-delete-dates:hover {
    background: #ef4444;
    color: white;
}

.btn-ok {
    flex: 1;
    padding: 10px 16px;
    background: #0891b2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ok:hover {
    background: #0e7490;
}

/* Responsive */
@media (max-width: 768px) {
    .half-day-controls {
        padding: 16px;
        margin-top: 20px;
    }
    
    .half-day-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .pricing-values {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .btn-delete-dates,
    .btn-ok {
        width: 100%;
    }
}

/* Price List Sidebar Styles */
.price-list-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 10001;
    transition: right 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow-y: auto;
}

.price-list-sidebar.active {
    right: 0;
}

.price-list-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.price-list-overlay.active {
    opacity: 1;
    visibility: visible;
}

.price-list-content {
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1;
}

.price-list-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.close-price-list,.closemodalforDates {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-price-list:hover,.closemodalforDates:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.price-list-body {
    padding: 40px;
    flex: 1;
    overflow-y: auto;
}

.price-period-header {
    margin-bottom: 0px;
}

.price-period-header h4 {
    font-weight: var(--fontlaborSemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}

.base-price {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 16px;



}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid #f3f4f6;
}

.price-option:last-child {
    border-bottom: none;
}

.option-type {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
    text-decoration: none;
}

.option-price {
     font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;

}

/* Mobile Responsive for Price List Sidebar */
@media (max-width: 768px) {
    .price-list-sidebar {
        width: 100%;
        right: -100%;
    }

    .price-list-header {
        padding: 20px;
    }

    .price-list-header h3 {
        font-size: 24px;
    }

    .price-list-body {
        padding: 20px;
    }

    .price-period-header h4 {
        font-size: 18px;
    }

    .base-price {
        font-size: 14px;
    }

    .option-type {
        font-size: 14px;
    }

    .option-price {
        font-size: 18px;
    }
}

/* Equipment Modal Styles */
.equipment-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.equipment-modal-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;

    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.equipment-modal-item:hover {
    background: #ffffff;
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.equipment-modal-item i {
    font-size: 20px;
    color: var(--contentprimaryenabled);
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.equipment-modal-item span {
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

#equipmentModal .modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 24px 30px;
}

#equipmentModal .modal-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
}

#equipmentModal .modal-body {
    padding: 30px;
}

/* Mobile Responsive for Equipment Modal */
@media (max-width: 768px) {
    .equipment-modal-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 10px 0;
    }

    .equipment-modal-item {
        padding: 12px;
    }

    .equipment-modal-item i {
        font-size: 18px;
        width: 20px;
    }

    .equipment-modal-item span {
        font-size: 14px;
    }

    #equipmentModal .modal-header {
        padding: 20px;
    }

    #equipmentModal .modal-title {
        font-size: 20px;
    }

    #equipmentModal .modal-body {
        padding: 20px;
    }
}

/* Reviews Section Styles */
.reviews-section {
    padding-top: 30px;
}

.reviews-header {
    margin-bottom: 30px;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-star {
    color: #da7ff2;
    font-size: 24px;
}

.rating-number,.overall-rating {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.rating-text {

}

/* Rating Categories */
.rating-categories {
    margin-bottom: 40px;
}

.categories-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.category-label {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}

.category-stars {
    display: flex;
    gap: 2px;
}

.category-stars i {
    color: #e67bf3;
    font-size: 12px;
}

/* Comments Section */
.comments-section {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
}

.comments-header {
    margin-bottom: 25px;
}

.comments-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.comments-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.filter-text {
    font-size: 13px;
    color: #6b7280;
}

.translate-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.translate-text {
    font-size: 13px;
    color: #374151;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: .4s;
    border-radius: 20px;
    display: block;
}

.toggle-label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-label {
    background-color: #ec4899;
}

.toggle-input:checked + .toggle-label:before {
    transform: translateX(20px);
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment-item {
    padding-bottom: 25px;
    border-bottom: 1px solid #f3f4f6;
}

.comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background-color: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-letter {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.comment-dates {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rental-date,
.review-date {
    font-size: 12px;
    color: #9ca3af;
}

.comment-rating {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.comment-rating i {
    color: #ec4899;
    font-size: 14px;
}

.comment-meta {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.translated-label {
    font-size: 12px;
    color: #6b7280;
}

.show-original {
    font-size: 12px;
    color: #3b82f6;
    text-decoration: underline;
}

.comment-text {
    margin-left: 60px;
}

.comment-text p {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsive for Reviews */
@media (max-width: 768px) {
    .category-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comments-filter {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .comment-header {
        flex-direction: column;
        gap: 10px;
    }

    .comment-rating {
        margin-left: 0;
        align-self: flex-start;
    }

    .comment-text {
        margin-left: 0;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
    }

    .avatar-letter {
        font-size: 16px;
    }
}

/* Owner Profile Section Styles */
.owner-profile-section {
    margin-top: 40px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.profile-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.profile-avatar-container {
    position: relative;
    flex-shrink: 0;
}

.profile-avatar {
    position: relative;
    width: 64px;
    height: 64px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: #ec4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    color: white;
}

.profile-badge svg {
    width: 12px;
    height: 12px;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.profile-details {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* Rating Badges */
.rating-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.rating-badge svg {
    width: 16px;
    height: 16px;
    color: #ec4899;
    flex-shrink: 0;
}

.rating-badge span {
    font-weight: 500;
}

/* Super Owner Section */
.super-owner-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.super-owner-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.super-owner-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Owner Details */
.owner-details {
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.detail-icon svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.detail-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.detail-value {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

/* Contact Button */
.contact-section {
    margin-top: 24px;
}

.contact-owner-btn {
    width: 100%;
    background: #333333;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;    max-width: 175px;
}

.contact-owner-btn:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

/* Mobile Responsive for Owner Profile */
@media (max-width: 768px) {
    .owner-profile-section {
        padding: 20px;
        margin-top: 30px;
    }

    .profile-header {
        gap: 12px;
        margin-bottom: 16px;
    }

    .profile-avatar {
        width: 56px;
        height: 56px;
    }

    .profile-badge {
        width: 20px;
        height: 20px;
    }

    .profile-badge svg {
        width: 10px;
        height: 10px;
    }

    .profile-name {
        font-size: 18px;
    }

    .profile-details {
        font-size: 13px;
    }

    .rating-badges {
        gap: 12px;
        margin-bottom: 20px;
    }

    .rating-badge {
        font-size: 13px;
        gap: 6px;
    }

    .rating-badge svg {
        width: 14px;
        height: 14px;
    }

    .super-owner-section {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .super-owner-title {
        font-size: 16px;
    }

    .super-owner-description {
        font-size: 13px;
    }

    .detail-item {
        gap: 10px;
        margin-bottom: 14px;
    }

    .detail-icon {
        width: 18px;
        height: 18px;
    }

    .detail-icon svg {
        width: 14px;
        height: 14px;
    }

    .detail-label,
    .detail-value {
        font-size: 13px;
    }

    .contact-section {
        margin-top: 20px;
    }

    .contact-owner-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Map Section Styles */
.map-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.map-section  > .section-title {

    margin-bottom: 0;
    padding-bottom: 0;
}

.map-features {
    padding-top: 20px;
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
        border-bottom: 1px solid #e5e7eb;
   padding-bottom: 20px;
    margin-bottom: 40px;

}

.product-conditions{
        border-bottom: 1px solid #e5e7eb;
   padding-bottom: 20px;
    margin-bottom: 40px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e5e5;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.map__text {
    font-weight: var(--fontlaborReg);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    padding-bottom: 1rem;
}


.boatDetails__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}
.boatDetails__text, .boatDetails__text--med, .boatDetails__addDates, .boatDetails__learnMore {
    font-weight: var(--fontlaborReg);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}
.boatDetails__list .boatDetails__text, .boatDetails__text--med, .boatDetails__addDates, .boatDetails__learnMore {
    padding-bottom: .75rem;
    width: 50%;
}

.boatDetails__text--med {
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
}

.boatDetails__conditionsList {
    display: grid
;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas: "checkin-checkout boat-rules cancelation-policy";
    width: 100%;
    gap: 1.5rem;
}
.boatDetails__subTitle {
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--contentprimaryenabled);
    padding-bottom: .25rem;
}

.boatDetails__subList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: .75rem;
}

.cancelationPolicyDetails__subList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: .75rem 0;
    gap: .75rem;
}

.boatDetails .cancelationPolicyDetails .boatDetails__catTitle {
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    margin-bottom: -.75rem;
}

/* FAQ Section Styles */
.frequently-asked-questions {
    margin-top: 40px;
    margin-bottom: 40px;
}

.frequently-asked-questions .section-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.faq-accordion {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;    gap: .5rem;
    width: 100%;
}

.faq-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: .5rem;
    cursor: pointer;
    gap: .75rem;
    width: 100%;
    padding: 1rem .75rem;
    background-color: #DEEEFE;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #e7f3ff;
    border-color: #b3d9ff;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;    width: 100%;
}

.faq-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question {
    font-weight: var(--fontlaborsemi);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    list-style: none;
    margin: 0;

    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #6c757d;
}

.faq-item.active .faq-toggle {
    background: #007bff;
    border-color: #007bff;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-toggle svg {
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

.faq-answer {
    padding-top: 0;
}

.faq-answer p {
    font-weight: var(--fontlaborreg);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    padding-top: .75rem;
    margin: 0;
}

/* Contact Section */
.faq-contact-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.faq-contact-text {
    font-size: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

.faq-contact-btn {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-contact-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

.faq-left-section,.faq-right-section{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: .5rem;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .frequently-asked-questions {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .frequently-asked-questions .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .faq-header {
        padding: 16px 20px;
    }

    .faq-question {
        font-size: 15px;
        padding-right: 12px;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
    }

    .faq-item.active .faq-content {
        padding: 0 20px 16px 20px;
    }

    .faq-contact-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 24px;
        padding-top: 20px;
    }

    .faq-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-header {
        padding: 14px 16px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-item.active .faq-content {
        padding: 0 16px 14px 16px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}

/* Gallery Link Styles */
.productCover__img, 
.productCover__img--small,
.productCover__cta {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.productCover__cta {
    font-weight: var(--fontlabormed);
    font-family: var(--fontlabor);
    font-size: .875rem;
    line-height: 1.25rem;
    color: var(--contentprimaryenabled);
    text-decoration: none;
    border-radius: .5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    min-height: .0625rem;
    width: auto;
    text-align: center;
    padding: .5rem 1rem;
    background: var(--buttonlightenabled);
    -webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,0.04);
    box-shadow: 0 .125rem .25rem rgba(0,0,0,0.04);
    color: var(--contentprimaryenabled);
}

.productCover__cta:hover {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Ensure gallery images maintain their styling */
.productCover__img,
.productCover__img--small {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.productCover__img:hover,
.productCover__img--small:hover {
    /* transform: scale(1.02); */
}

/* Fancybox Custom Styles */


.fancybox-custom .fancybox-content {
    background: #000;
}

.fancybox-custom .fancybox-slide {
    padding: 0;
}

.fancybox-custom .fancybox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Ensure proper image loading */
.fancybox-custom .fancybox-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.shareModal .modal-dialog {
    max-width: 700px;
}.share-option {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 100%;
    padding: 1rem 0;
    gap: 1rem;
  
}
.share-option:not(:last-child) {
        border-bottom: .0625rem solid var(--borderstaticenabled);
}

span.share-label{
        font-weight: var(--fontlaborteg);
    font-family: var(--fontlabor);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentPrimaryEnabled);
    text-decoration: none;
}

/* Contact Modal Overlay */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Contact Modal Sidebar */
.contact-modal-sidebar {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: var(--backgroundsurfaceenabled);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.contact-modal-sidebar.active {
    right: 0;
}

.contact-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--borderstaticenabled);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--backgroundsurfaceenabled);
    position: sticky;
    top: 0;
    z-index: 10;
}

.contact-modal-title {
    font-family: var(--fonttitle);
    font-weight: var(--fonttitlesemi);
    font-size: 1.75rem;
    line-height: 2.25rem;
    color: var(--contentprimaryenabled);
    margin: 0;
}

.contact-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.contact-modal-close:hover {
    background-color: var(--backgroundshadowenabled);
}

.contact-modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--contentprimaryenabled);
}

.contact-modal-content {
    flex: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Owner Info Section */
.contact-owner-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.contact-owner-details {
    flex: 1;
}

.contact-owner-name {
    font-family: var(--fonttitle);
    font-weight: var(--fonttitlesemi);
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--contentprimaryenabled);
    margin: 0 0 8px 0;
}

.contact-owner-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #FF6B9D;
    font-size: 12px;
}

.rating-count {
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborreg);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
}

.contact-owner-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.owner-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Booking Info Section */
.contact-booking-info {
    border-bottom: 1px solid var(--borderstaticenabled);
    padding-bottom: 24px;
}

.contact-dates {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.contact-date-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-date-label {
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborreg);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
}

.contact-date-value {
    font-family: var(--fontlabor);
    font-weight: var(--fontlabormed);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
}

.contact-edit-section {
    display: flex;
    justify-content: flex-end;
}

.contact-edit-btn {
    background: none;
    border: none;
    font-family: var(--fontlabor);
    font-weight: var(--fontlabormed);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contentaccentenabled);
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.contact-edit-btn:hover {
    color: var(--contentaccenthover);
}

/* Price Section */
.contact-price-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid var(--borderstaticenabled);
    padding-bottom: 24px;
}

.contact-price-main {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-total-price {
    font-family: var(--fonttitle);
    font-weight: var(--fonttitlesemi);
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--contentprimaryenabled);
}

.contact-price-info svg {
    color: var(--contentsecondaryenabled);
    width: 16px;
    height: 16px;
}

.contact-price-per-day {
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborreg);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contentsecondaryenabled);
}

/* Message Section */
.contact-message-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-message-title {
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborsemi);
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: var(--contentprimaryenabled);
    margin: 0;
}

.contact-message-instructions {
    background: var(--backgroundshadowenabled);
    padding: 16px;
    border-radius: 8px;
}

.contact-message-instructions p {
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborreg);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contentprimaryenabled);
    margin: 0 0 8px 0;
}

.contact-message-instructions ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.contact-message-instructions li {
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborreg);
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: var(--contentprimaryenabled);
    margin-bottom: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-message-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    border: 1px solid var(--borderinteractiveenabled);
    border-radius: 8px;
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborreg);
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--contentprimaryenabled);
    background-color: var(--backgroundsurfaceenabled);
    resize: vertical;
    transition: all 0.2s ease;
    outline: none;
}

.contact-message-textarea:focus {
    border-color: var(--contentaccentenabled);
    box-shadow: 0 0 0 3px rgba(150, 36, 139, 0.1);
}

.contact-message-textarea::placeholder {
    color: var(--contentplaceholderenabled);
}

.contact-send-btn {
    width: 100%;
    padding: 14px 24px;
    background: #FF6B9D;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--fontlabor);
    font-weight: var(--fontlaborsemi);
    font-size: 1rem;
    line-height: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contact-send-btn:hover {
    background: #E55A8A;
    transform: translateY(-1px);
}

.contact-send-btn:active {
    transform: translateY(0);
}

/* Body modal open state */
body.modal-open {
    overflow: hidden;
}
.product-content-wrapper{ 
    position: relative;
}
@media (min-width: 769px) {
.desktop-hidden{ display: none;}
}

/* Responsive Design for Contact Modal */

@media (max-width: 1128px) {

.boatDetails__conditionsList {
        grid-template-columns: 1fr;
        grid-template-areas:
        "cancelation-policy"
        "checkin-checkout"
        "boat-rules";
        gap: 2rem;
    }
    

}

@media (max-width: 768px) {

.breadCrumbContainer__breadCrumb {
    width: 100%;
    margin: 0 auto;
    max-width: 70.5rem;
}
    .yacht-breadcrumb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        overflow: unset;
        text-overflow: unset;
        overflow-x: scroll;
        overscroll-behavior: contain;
        max-width: 100%;
    }
    .faq-accordion{
        
    display: block;
    }
    .contact-modal-sidebar {
        width: 100vw;
        right: -100vw;
    }
    
    .contact-modal-content {
        padding: 24px;
    }
    
    .contact-modal-header {
        padding: 20px 24px;
    }

    .hidden-for-mobile{ display: none;}
    .product-content-wrapper{
            display: block;
    }
    .forOnlyMobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
}.mobile-buttons {
    display: flex;}
    .stylediffeence-for-mobile{
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        top: 0;
        z-index: 123;
        background: #fff;
        display: none;


    }


    .modalOpenFordatesSelect  .stylediffeence-for-mobile{
        display: block;
    }

    .yacht-detail-page {
        padding-top: 7px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .yacht-header {

        padding-left: 15px;
        padding-right: 15px;
    }
        .booking-calendar-box {
            background: #fff;
            box-shadow: 0 0px 0px rgba(0, 0, 0, 0.08);
            max-width: 100%;
            height: 100%;
        }

    .productCover__img, .productCover__img--small{
            height: 297px;
            padding: 0;
    }
    .productCover__imagesContainer{
            display: block;height: auto;
    }
    .productCover__sideImgs{
        height: auto;
    }

    .yacht-breadcrumb .breadcrumb{
            width: 800px;        padding-bottom: 9px;
    }
    .breadCrumbContainer__breadCrumb{
        overflow: hidden;
    }
    .yacht-breadcrumb{
                padding-bottom: 6px;
    }

}

@media (max-width: 480px) {
    .contact-modal-content {
        padding: 20px;
        gap: 24px;
    }
    
    .contact-modal-header {
        padding: 16px 20px;
    }
    
    .contact-modal-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }
    
    .contact-owner-name {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}