/* Related products */
.related-products-section {
    margin-top: 40px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.related-products-section h2 {
    color: var(--color-4);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.related-slider .slick-slide {
    margin: 0 8px;
}

.related-slider .slick-list {
    margin: 0 -8px;
}

/* ==============================================================
   NEW PRODUCT DETAIL LAYOUT
   ============================================================== */

.product-layout-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 30px;
    align-items: start;
    margin-top: 30px;
}

/* Fix slick slider overflow inside CSS Grid */
.product-left-col,
.product-right-col {
    min-width: 0;
}

/* ── LEFT COLUMN ── */
.product-gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-vertical-thumbs {
    width: 120px;
    flex-shrink: 0;
}

.gallery-vertical-thumbs .slick-slide {
    margin-bottom: 10px;
}

.gallery-vertical-thumbs .thumb-item {
    outline: none;
    cursor: pointer;
}

.gallery-vertical-thumbs .thumb-img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f5f5f5;
    border: 2px solid transparent;
}

.gallery-vertical-thumbs .slick-current .thumb-img-wrap {
    border-color: var(--color-4);
}

.gallery-vertical-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main-view {
    flex-grow: 1;
    min-width: 0;
    /* Fix slick overflow in flex container */
    overflow: hidden;
    position: relative;
}

.gallery-main-view .main-item {
    outline: none;
}

.gallery-main-view .main-img-wrap {
    display: block;
    aspect-ratio: 4/3;
    background: #f5f5f5;
    overflow: hidden;
}

.gallery-main-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content.ck-content {
    color: #1a1a1a;
}

.product-content.ck-content h1,
.product-content.ck-content h2,
.product-content.ck-content h3,
.product-content.ck-content h4,
.product-content.ck-content h5,
.product-content.ck-content h6,
.product-content.ck-content strong {
    color: var(--color-4);
}

.product-content.ck-content ul li::before {
    background-color: #032435;
}

/* ── RIGHT COLUMN (BOOKING SIDEBAR) ── */
.product-right-col {
    position: sticky;
    top: 100px;
}

.sticky-sidebar {
    background: #ffffff;
    border: 1px solid var(--color-4);
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.booking-header h2 {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.room-badge {
    background: var(--color-2);
    color: #000;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.booking-form .form-group {
    margin-bottom: 12px;
    position: relative;
}

.booking-form .form-control {
    width: 100%;
    height: 42px;
    border: 1px solid #e0e0e0;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 2px;
    color: #333;
    background: #fff;
}

.booking-form .form-control::placeholder {
    color: #999;
}

.booking-form .form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.booking-form .form-row .half {
    flex: 1;
    margin-bottom: 0;
}

.booking-form .input-icon-wrap {
    position: relative;
}

.booking-form .input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #999;
    pointer-events: none;
}

.booking-form .flex-center {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    background: #ffffff;
}

.booking-form .flex-center label {
    flex: 1;
    padding-left: 12px;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.booking-form .flex-center input {
    width: 50px;
    height: 40px;
    border: none;
    background: transparent;
    border-left: 1px solid #e0e0e0;
    padding-right: 10px;
    font-size: 14px;
    color: #333;
}

.price-summary {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.price-label {
    font-size: 15px;
    color: #333;
    font-weight: 600;
}

.price-values {
    text-align: right;
    display: flex;
    align-items: end;
    gap: 15px;
}

.current-price {
    display: block;
    font-size: 20px;
    color: var(--color-4);
    font-weight: 700;
}

.price-unit {
    font-size: 14px;
    color: #777;
    font-weight: normal;
    margin-left: 4px;
}

.old-price {
    display: block;
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.btn-book-now {
    width: 100%;
    height: 48px;
    background: var(--color-2);
    color: #000;
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 2px;
}

.btn-book-now:hover {
    background: var(--color-3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-vertical-thumbs {
        width: 80px;
    }
}

@media (max-width: 768px) {
    .product-gallery {
        flex-direction: column-reverse;
    }

    .gallery-vertical-thumbs {
        width: 100%;
    }

    .gallery-vertical-thumbs .slick-slide {
        margin-bottom: 0;
        margin-right: 10px;
    }
}

.room-amenities-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.amenities-title {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 25px;
    font-weight: 500;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.amenity-icon {
    width: 60px;
    height: 60px;
    border: 1px solid #b58b45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b58b45;
    flex-shrink: 0;
}

.amenity-icon span {
    font-size: 28px;
}

.amenity-text {
    font-size: 16px;
    color: #333;
}

@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* .amenities-grid {
        grid-template-columns: 1fr;
    } */
}