/* Single Homestay Modern Styling */

.hhb-single-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Gallery Grid (Airbnb Style) */
.hhb-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 10px;
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.hhb-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.hhb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hhb-gallery-item:hover img {
    transform: scale(1.05);
}

.hhb-gallery-item.main {
    grid-row: 1 / 3;
}

/* Breadcrumb */
.hhb-breadcrumb {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hhb-breadcrumb a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
}

.hhb-breadcrumb a:hover {
    color: #e04f67;
    text-decoration: none;
}

.hhb-breadcrumb span.sep {
    color: #9ca3af;
}

/* Header Section */
.hhb-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.hhb-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1f2937;
}

.hhb-meta-bar {
    display: flex;
    gap: 20px;
    color: #6b7280;
    font-size: 14px;
}

.hhb-meta-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Content Layout */
.hhb-main-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.hhb-section {
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.hhb-section:first-child {
    border-top: none;
    padding-top: 0;
}

.hhb-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

/* Amenities Grid */
.hhb-amenities-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hhb-amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
}

.hhb-amenity-icon svg {
    width: 15px;
    height: 15px;
    display: block;
}

.hhb-amenity-icon {
    width: 15px;
    height: 15px;
    fill: #4b5563;
}

/* Rules Grid */
.hhb-rules-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.hhb-rule-col h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hhb-rule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hhb-rule-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.hhb-rule-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.hhb-rule-col.dos li svg {
    color: #10b981;
}

.hhb-rule-col.donts li svg {
    color: #ef4444;
}

/* Sticky Sidebar */
.hhb-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Price Display in Widget override */
.hhb-widget-header h3 {
    font-size: 24px;
}

.hhb-price-offer {
    color: #e04f67;
    font-weight: 700;
}

.hhb-price-base {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 16px;
    margin-right: 8px;
}

/* Attractions List */
.hhb-attractions-list {
    list-style: none;
    padding: 0;
}

.hhb-attractions-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hhb-attractions-list li:before {
    content: '??';
    font-size: 14px;
}

@media (max-width: 991px) {
    .hhb-main-layout {
        grid-template-columns: 1fr;
    }

    .hhb-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 640px) {
    .hhb-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .hhb-gallery-item.main {
        grid-row: auto;
    }

    .hhb-rules-grid {
        grid-template-columns: 1fr;
    }
}


.hhb-amenity-icon .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px;
}


.hhb-property-tags a:hover {
    background: #e04f67 !important;
    color: #fff !important;
    border-color: #e04f67 !important;
}