/**
 * Villa Khufu Hotel Widgets - Main Styles
 * File: /assets/css/widgets.css
 */

/* ========================================
   CAROUSEL WIDGET STYLES
   ======================================== */

.vk-accommodation-carousel {
    position: relative;
    width: 100%;
}

.vk-swiper-container {
    padding: 20px 0 50px;
    overflow: hidden;
}

/* Room Card */
.vk-room-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vk-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image Gallery Container */
.vk-room-images {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.vk-room-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vk-room-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Gallery Navigation - Smaller and Different Style */
.vk-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show gallery nav on hover */
.vk-room-images:hover .vk-gallery-nav {
    opacity: 1;
}

.vk-gallery-nav button {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.vk-gallery-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.vk-gallery-nav i {
    color: #ffffff;
    font-size: 11px;
}

/* Gallery Dots */
.vk-gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.vk-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vk-dot.active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}

/* Pyramids View Badge */
.vk-pyramids-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 100%);
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 3px 15px rgba(212, 175, 55, 0.5); }
}

.vk-pyramids-badge i {
    font-size: 14px;
}

/* Room Content */
.vk-room-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vk-room-header {
    margin-bottom: 15px;
}

.vk-room-category {
    display: inline-block;
    color: #8b7355;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vk-room-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.vk-room-price {
    font-size: 28px;
    font-weight: 700;
    color: #c9302c;
    margin-bottom: 20px;
}

.vk-room-price span {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

/* Room Features */
.vk-room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.vk-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
    font-size: 14px;
}

.vk-feature i {
    color: #8b7355;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Room Description */
.vk-room-description {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* View Details Button */
.vk-room-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2c3e50;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.vk-room-button:hover {
    background: #34495e;
    transform: translateX(3px);
    color: #ffffff;
    text-decoration: none;
}

.vk-room-button i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.vk-room-button:hover i {
    transform: translateX(3px);
}

/* Swiper Navigation Customization - Large and Prominent */
.vk-accommodation-carousel .swiper-button-prev,
.vk-accommodation-carousel .swiper-button-next {
    background: linear-gradient(135deg, #8b7355 0%, #6d5a44 100%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.vk-accommodation-carousel .swiper-button-prev:hover,
.vk-accommodation-carousel .swiper-button-next:hover {
    background: linear-gradient(135deg, #6d5a44 0%, #5a4937 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.vk-accommodation-carousel .swiper-button-prev::after,
.vk-accommodation-carousel .swiper-button-next::after {
    font-size: 22px;
    color: #ffffff;
    font-weight: 700;
}

/* Position carousel arrows outside of cards on desktop */
@media (min-width: 1200px) {
    .vk-accommodation-carousel .swiper-button-prev {
        left: -30px;
    }
    
    .vk-accommodation-carousel .swiper-button-next {
        right: -30px;
    }
}

/* Add pulsing animation to carousel arrows */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 115, 85, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
    }
}

.vk-accommodation-carousel .swiper-button-prev,
.vk-accommodation-carousel .swiper-button-next {
    animation: pulse 2s infinite;
}

/* Swiper Pagination */
.vk-accommodation-carousel .swiper-pagination {
    bottom: 0;
}

.vk-accommodation-carousel .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #8b7355;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.vk-accommodation-carousel .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
    background: #8b7355;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    .vk-room-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vk-room-content {
        padding: 20px;
    }
    
    .vk-room-title {
        font-size: 20px;
    }
    
    .vk-room-price {
        font-size: 24px;
    }
    
    .vk-room-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .vk-feature {
        font-size: 13px;
    }
    
    .vk-room-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .vk-room-button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .vk-pyramids-badge {
        padding: 6px 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .vk-room-features {
        grid-template-columns: 1fr;
    }
    
    .vk-gallery-nav button {
        width: 30px;
        height: 30px;
    }
    
    .vk-accommodation-carousel .swiper-button-prev,
    .vk-accommodation-carousel .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .vk-accommodation-carousel .swiper-button-prev::after,
    .vk-accommodation-carousel .swiper-button-next::after {
        font-size: 16px;
    }
}

/* ========================================
   LOADING STATES
   ======================================== */

.vk-room-card.loading {
    pointer-events: none;
}

.vk-room-card.loading .vk-room-images::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.5) 50%, 
        rgba(255,255,255,0) 100%);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ========================================
   GRID WIDGET STYLES
   ======================================== */

.vk-accommodation-grid-wrapper {
    width: 100%;
}

/* Toolbar Styles */
.vk-grid-toolbar {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.vk-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Search Box */
.vk-search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.vk-search-input {
    width: 100%;
    padding: 12px 45px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vk-search-input:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.vk-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b7355;
    pointer-events: none;
}

.vk-search-clear {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vk-search-clear:hover {
    color: #c9302c;
}

/* Toolbar Right Section */
.vk-toolbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vk-results-count {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

/* Sort Dropdown */
.vk-sort-wrapper {
    position: relative;
}

.vk-sort-select {
    padding: 10px 35px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #ffffff;
    font-size: 14px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: border-color 0.3s ease;
}

.vk-sort-select:focus {
    outline: none;
    border-color: #8b7355;
}

/* Filter Toggle Button (Mobile) */
.vk-filter-toggle {
    display: none;
    padding: 10px 20px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vk-filter-toggle:hover {
    background: #6d5a44;
}

/* Grid Layout */
.vk-grid-layout {
    display: flex;
    gap: 30px;
}

.vk-grid-layout.has-sidebar {
    align-items: flex-start;
}

/* Filters Sidebar */
.vk-filters-sidebar {
    width: 280px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.vk-filters-top {
    width: 100%;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
}

.vk-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.vk-filters-header h3 {
    margin: 0;
    font-size: 20px;
    color: #2c3e50;
}

.vk-clear-filters {
    background: none;
    border: none;
    color: #c9302c;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.vk-clear-filters:hover {
    color: #a02622;
}

/* Filter Groups */
.vk-filter-group {
    margin-bottom: 30px;
}

.vk-filter-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.vk-filter-title i {
    color: #8b7355;
    font-size: 14px;
}

.vk-filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Custom Checkbox */
.vk-filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    color: #666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.vk-filter-option:hover {
    color: #2c3e50;
}

.vk-filter-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.vk-checkbox-custom {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.vk-filter-checkbox:checked ~ .vk-checkbox-custom {
    background: #8b7355;
    border-color: #8b7355;
}

.vk-filter-checkbox:checked ~ .vk-checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.vk-filter-label {
    margin-left: 8px;
}

.vk-premium-icon {
    color: #d4af37;
    margin-left: 5px;
    font-size: 12px;
}

/* Price Range Filter */
.vk-price-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vk-price-min,
.vk-price-max {
    width: 80px;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.vk-price-separator {
    color: #999;
}

.vk-price-apply {
    padding: 8px 15px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.vk-price-apply:hover {
    background: #6d5a44;
}

/* Grid Main Container */
.vk-grid-main {
    flex: 1;
    min-width: 0;
}

.vk-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Grid Card */
.vk-grid-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.vk-grid-item.hidden,
.vk-grid-item.search-hidden {
    display: none;
}

.vk-grid-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vk-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Grid Image */
.vk-grid-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.vk-grid-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vk-grid-card:hover .vk-grid-image img {
    transform: scale(1.05);
}

.vk-image-counter {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Grid Content */
.vk-grid-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vk-grid-header {
    margin-bottom: 12px;
}

.vk-grid-content .vk-room-category {
    display: inline-block;
    color: #8b7355;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.vk-grid-content .vk-room-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.vk-grid-content .vk-room-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vk-grid-content .vk-room-title a:hover {
    color: #8b7355;
}

.vk-grid-content .vk-room-price {
    font-size: 24px;
    font-weight: 700;
    color: #c9302c;
    margin-bottom: 15px;
}

.vk-grid-content .vk-room-price span {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.vk-grid-content .vk-room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.vk-grid-content .vk-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
}

.vk-grid-content .vk-room-description {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Grid Footer */
.vk-grid-footer {
    margin-top: auto;
}

.vk-grid-content .vk-room-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2c3e50;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.vk-grid-content .vk-room-button:hover {
    background: #34495e;
    transform: translateX(2px);
}

/* Load More Button */
.vk-load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.vk-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: #8b7355;
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vk-load-more:hover {
    background: #6d5a44;
    transform: translateY(-2px);
}

.vk-load-more.loading {
    opacity: 0.7;
    pointer-events: none;
}

.vk-load-more.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile Filter Overlay */
.vk-filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* ========================================
   RESPONSIVE STYLES - GRID
   ======================================== */

@media (max-width: 1200px) {
    .vk-filters-sidebar {
        width: 250px;
    }
}

@media (max-width: 992px) {
    .vk-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .vk-filter-toggle {
        display: block;
    }
    
    .vk-filters-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        max-height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
        border-radius: 0;
    }
    
    .vk-filters-sidebar.active {
        left: 0;
    }
    
    body.filters-open .vk-filters-overlay {
        display: block;
    }
    
    .vk-grid-layout.has-sidebar {
        display: block;
    }
}

@media (max-width: 768px) {
    .vk-toolbar-inner {
        flex-direction: column;
        align-items: stretch;
    }
    
    .vk-search-box {
        max-width: none;
        margin-bottom: 15px;
    }
    
    .vk-toolbar-right {
        justify-content: space-between;
    }
    
    .vk-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vk-grid-content {
        padding: 15px;
    }
    
    .vk-grid-content .vk-room-title {
        font-size: 16px;
    }
    
    .vk-grid-content .vk-room-price {
        font-size: 20px;
    }
    
    .vk-grid-content .vk-room-features {
        gap: 10px;
    }
    
    .vk-grid-content .vk-feature {
        font-size: 12px;
    }
    
    .vk-load-more {
        padding: 12px 30px;
        font-size: 14px;
    }
}
/* ========================================
   SINGLE ROOM TEMPLATE STYLES
   ======================================== */

.vk-single-room-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Section */
.vk-room-gallery-section {
    margin-bottom: 40px;
}

.vk-gallery-slider {
    position: relative;
}

.vk-gallery-main {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
}

.vk-gallery-main-image {
    display: none;
    width: 100%;
    cursor: zoom-in;
}

.vk-gallery-main-image.active {
    display: block;
}

.vk-gallery-main-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vk-gallery-main-image:hover img {
    transform: scale(1.02);
}

/* Gallery Thumbnails */
.vk-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.vk-gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.vk-gallery-thumbs::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.vk-gallery-thumbs::-webkit-scrollbar-thumb {
    background: #8b7355;
    border-radius: 3px;
}

.vk-gallery-thumb {
    flex: 0 0 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.vk-gallery-thumb.active {
    border-color: #8b7355;
    opacity: 1;
}

.vk-gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.vk-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Grid Style */
.vk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.vk-gallery-grid-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    padding-bottom: 75%;
}

.vk-gallery-grid-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vk-gallery-grid-item:hover img {
    transform: scale(1.1);
}

/* Content Wrapper */
.vk-room-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.vk-room-main-content {
    flex: 1;
    min-width: 0;
}

/* Room Header Section */
.vk-room-header-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
}

.vk-pyramids-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #f4e5a1 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s infinite;
}

.vk-room-category-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #8b7355;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.vk-room-title-single {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.vk-room-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.vk-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 15px;
}

.vk-info-item i {
    color: #8b7355;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

/* Section Titles */
.vk-section-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 25px 0;
    position: relative;
    padding-bottom: 12px;
}

.vk-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #8b7355;
}

/* Room Description */
.vk-room-description-section {
    margin-bottom: 40px;
}

.vk-room-description-content {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.vk-room-description-content p {
    margin-bottom: 15px;
}

/* Features Grid */
.vk-room-features-section {
    margin-bottom: 40px;
}

.vk-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.vk-feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.vk-feature-card:hover {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.vk-feature-card i {
    font-size: 32px;
    color: #8b7355;
    margin-bottom: 15px;
}

.vk-feature-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.vk-feature-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Amenities Section */
.vk-amenities-section {
    margin-bottom: 40px;
}

.vk-amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vk-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vk-amenity-item:hover {
    background: #f8f9fa;
    border-color: #8b7355;
    transform: translateX(5px);
}

.vk-amenity-item i {
    color: #4CAF50;
    font-size: 16px;
}

.vk-amenity-item span {
    color: #2c3e50;
    font-size: 14px;
}

/* Booking Sidebar */
.vk-booking-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.vk-booking-sidebar.sticky {
    position: sticky;
    top: 100px;
}

.vk-booking-sidebar.sticky.is-sticky {
    position: fixed;
    top: 100px;
    width: 380px;
    z-index: 100;
}

.vk-booking-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vk-booking-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid #f8f9fa;
    margin-bottom: 25px;
}

.vk-price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vk-price-label {
    font-size: 14px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vk-price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #c9302c;
    line-height: 1;
    margin: 8px 0;
}

.vk-price-period {
    font-size: 16px;
    color: #666;
}

/* Booking Form */
.vk-booking-form,
.vk-mphb-form {
    width: 100%;
}

.vk-form-group {
    margin-bottom: 20px;
}

.vk-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.vk-form-group input,
.vk-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.vk-form-group input:focus,
.vk-form-group select:focus {
    outline: none;
    border-color: #8b7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.vk-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.vk-book-now-btn {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #8b7355 0%, #6d5a44 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.vk-book-now-btn:hover {
    background: linear-gradient(135deg, #6d5a44 0%, #5a4937 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

/* Contact Options */
.vk-contact-options {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f8f9fa;
    text-align: center;
}

.vk-contact-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.vk-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin: 0 5px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.vk-contact-btn:hover {
    background: #8b7355;
    border-color: #8b7355;
    color: #ffffff;
}

.vk-contact-btn i {
    font-size: 16px;
}

/* Modal Styles */
.vk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vk-modal-content {
    background: #ffffff;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.vk-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.vk-modal-close:hover {
    color: #c9302c;
}

.vk-modal-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
}

body.modal-open {
    overflow: hidden;
}

/* Similar Rooms Section */
.vk-similar-rooms-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
}

.vk-similar-rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vk-similar-room-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.vk-similar-room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.vk-similar-room-link {
    text-decoration: none;
    display: block;
}

.vk-similar-room-image {
    position: relative;
    width: 100%;
    padding-bottom: 66.67%;
    overflow: hidden;
}

.vk-similar-room-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vk-similar-room-card:hover .vk-similar-room-image img {
    transform: scale(1.05);
}

.vk-pyramids-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d4af37;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
}

.vk-similar-room-content {
    padding: 20px;
}

.vk-similar-room-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.vk-similar-room-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
}

.vk-similar-room-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
}

.vk-similar-room-meta i {
    color: #8b7355;
    font-size: 14px;
}

.vk-similar-room-price {
    font-size: 16px;
    font-weight: 600;
    color: #c9302c;
}

/* MotoPress Form Customization */
.vk-mphb-form .mphb-booking-form {
    background: transparent;
    padding: 0;
    border: none;
}

.vk-mphb-form .mphb-required-fields-tip {
    display: none;
}

.vk-mphb-form input[type="date"],
.vk-mphb-form input[type="text"],
.vk-mphb-form input[type="number"],
.vk-mphb-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
}

.vk-mphb-form input[type="submit"] {
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(135deg, #8b7355 0%, #6d5a44 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vk-mphb-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #6d5a44 0%, #5a4937 100%);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE STYLES - SINGLE ROOM
   ======================================== */

@media (max-width: 1200px) {
    .vk-room-content-wrapper {
        gap: 30px;
    }
    
    .vk-booking-sidebar {
        width: 350px;
    }
}

@media (max-width: 992px) {
    .vk-room-content-wrapper {
        flex-direction: column;
    }
    
    .vk-booking-sidebar {
        width: 100%;
        position: static !important;
    }
    
    .vk-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vk-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vk-similar-rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vk-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .vk-room-title-single {
        font-size: 28px;
    }
    
    .vk-section-title {
        font-size: 24px;
    }
    
    .vk-room-quick-info {
        gap: 15px;
    }
    
    .vk-info-item {
        font-size: 14px;
    }
    
    .vk-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .vk-amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .vk-price-amount {
        font-size: 36px;
    }
    
    .vk-gallery-main-image img {
        height: 400px;
    }
    
    .vk-gallery-thumbs {
        gap: 8px;
    }
    
    .vk-gallery-thumb {
        flex: 0 0 100px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .vk-room-title-single {
        font-size: 24px;
    }
    
    .vk-room-quick-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .vk-similar-rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .vk-booking-card {
        padding: 20px;
    }
    
    .vk-contact-btn {
        display: block;
        margin: 10px 0;
    }
    
    .vk-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vk-gallery-main-image img {
        height: 300px;
    }
}

/* Mobile Floating Book Button */
@media (max-width: 768px) {
    .vk-mobile-book-float {
        position: fixed;
        bottom: 20px;
        left: 20px;
        right: 20px;
        z-index: 999;
        background: linear-gradient(135deg, #8b7355 0%, #6d5a44 100%);
        padding: 15px;
        border-radius: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: none;
    }
    
    .vk-mobile-book-float.show {
        display: block;
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from {
            transform: translateY(100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .vk-gallery-nav,
    .vk-gallery-dots,
    .swiper-button-prev,
    .swiper-button-next,
    .swiper-pagination,
    .vk-grid-toolbar,
    .vk-filters-sidebar,
    .vk-filters-top,
    .vk-load-more-wrapper,
    .vk-filter-toggle,
    .vk-mobile-book-float {
        display: none !important;
    }
    
    .vk-room-card,
    .vk-grid-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .vk-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}