/* Property Detail Page Styles */

/* Breadcrumb Section */
.fs-breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.fs-breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fs-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.fs-breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
}

.fs-breadcrumb-separator {
    color: #dee2e6;
}

.fs-breadcrumb-current {
    color: #212529;
    font-weight: 500;
}

/* Main Content Section */
.fs-main-section {
    background: white;
    min-height: calc(100vh - 200px);
}

.fs-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.fs-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Gallery Section */
.fs-gallery-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.fs-gallery-main {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.fs-gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

.fs-gallery-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.fs-gallery-nav-prev {
    left: 15px;
}

.fs-gallery-nav-next {
    right: 15px;
}

.fs-video-container {
    width: 100%;
    height: 100%;
    display: none;
}

.fs-property-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-image-container {
    width: 100%;
    height: 100%;
}

.fs-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.fs-no-image-content {
    text-align: center;
}

.fs-no-image-icon {
    margin-bottom: 10px;
}

.fs-no-image-text {
    font-size: 16px;
}

.fs-view-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Thumbnail Strip */
.fs-thumbnail-strip {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.fs-thumbnail-item {
    position: relative;
    min-width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.fs-thumbnail-item:hover {
    border: 2px solid #2EA3F2;
}

.fs-thumbnail-item.active {
    border: 2px solid #2EA3F2;
}

.fs-video-thumb {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-play-button {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-thumb-label {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.fs-thumb-count {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

.fs-thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Info Section */
.fs-property-header {
    margin-bottom: 30px;
}

.fs-property-title {
    font-size: 32px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 15px 0;
}

.fs-property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 16px;
}

/* Property Stats Grid */
.fs-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.fs-stat-item {
    text-align: center;
}

.fs-stat-icon-wrapper {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-stat-icon-blue {
    background: #e3f2fd;
}

.fs-stat-icon-green {
    background: #e8f5e9;
}

.fs-stat-icon-orange {
    background: #fff3e0;
}

.fs-stat-icon-purple {
    background: #f3e5f5;
}

.fs-stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.fs-stat-label {
    font-size: 13px;
    color: #6c757d;
}

/* Description Section */
.fs-section-wrapper {
    margin-bottom: 30px;
}

.fs-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.fs-description-text {
    color: #495057;
    font-size: 16px;
    line-height: 1.7;
}

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

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

.fs-amenity-text {
    color: #495057;
    font-size: 15px;
}

/* Location Section */
.fs-map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.fs-map-iframe {
    border: 1px solid #dee2e6;
    border-radius: 12px;
}

.fs-map-link-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fs-map-link {
    color: #2EA3F2;
    text-decoration: none;
}

/* Nearby Places */
.fs-nearby-section {
    margin-top: 20px;
}

.fs-nearby-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.fs-nearby-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.fs-nearby-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fs-nearby-text {
    color: #495057;
    font-size: 15px;
}

/* Sidebar */
.fs-sidebar-sticky {
    position: sticky;
    top: 20px;
}

/* Price Card */
.fs-price-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.fs-price-display {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.fs-price-amount {
    font-size: 36px;
    font-weight: 600;
    color: #2EA3F2;
}

.fs-price-period {
    font-size: 16px;
    color: #6c757d;
}

.fs-btn-primary {
    width: 100%;
    background: #2EA3F2;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 12px;
}

.fs-btn-primary:hover {
    background: #1e90ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 163, 242, 0.3);
}

.fs-btn-secondary {
    width: 100%;
    background: white;
    color: #2EA3F2;
    padding: 14px;
    border: 2px solid #2EA3F2;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.fs-btn-secondary:hover {
    background: #f0f8ff;
    border-color: #1e90ff;
}

/* Owner Card */
.fs-owner-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.fs-owner-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.fs-owner-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 600;
}

.fs-owner-details {
    flex: 1;
}

.fs-owner-name {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
}

.fs-owner-role {
    font-size: 14px;
    color: #6c757d;
}

.fs-verified-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
}

.fs-verified-text {
    font-size: 12px;
    color: #28a745;
    font-weight: 500;
}

.fs-owner-stats {
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.fs-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.fs-stat-label-small {
    font-size: 13px;
    color: #6c757d;
}

.fs-stat-value-small {
    font-size: 13px;
    font-weight: 500;
    color: #212529;
}

/* Safety Tips Card */
.fs-safety-card {
    background: #fef5e7;
    border: 1px solid #fad390;
    border-radius: 12px;
    padding: 16px;
}

.fs-safety-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fs-safety-title {
    font-size: 16px;
    font-weight: 600;
    color: #f39c12;
}

.fs-safety-tips {
    margin-left: 28px;
}

.fs-safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fs-safety-item {
    font-size: 13px;
    color: #795548;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.fs-safety-item:before {
    content: """;
    position: absolute;
    left: 0;
    color: #f39c12;
}

/* Share Section */
.fs-share-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.fs-share-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.fs-share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.fs-share-btn {
    flex: 1;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.fs-share-btn:hover {
    background: #e9ecef;
}

/* Safety Tips */
.fs-safety-tips-card {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 20px;
}

.fs-safety-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fs-safety-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.fs-safety-list {
    margin: 0;
    padding-left: 20px;
}

.fs-safety-item {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 6px;
}

.fs-safety-item:last-child {
    margin-bottom: 0;
}

/* Property Meta Card */
.fs-meta-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.fs-meta-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.fs-meta-row:last-child {
    border-bottom: none;
}

.fs-meta-label {
    color: #6c757d;
    font-size: 14px;
}

.fs-meta-value {
    color: #212529;
    font-weight: 500;
    font-size: 14px;
}

/* Similar Properties Section */
.fs-similar-section {
    margin-top: 60px;
}

.fs-similar-title {
    font-size: 28px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 30px;
}

.fs-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.fs-similar-card-link {
    text-decoration: none;
    color: inherit;
}

.fs-similar-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.2s;
    cursor: pointer;
}

.fs-similar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fs-similar-image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.fs-similar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fs-similar-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.fs-similar-price-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.fs-similar-content {
    padding: 15px;
}

.fs-similar-property-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.fs-similar-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 12px;
}

.fs-similar-features {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #495057;
}

/* Error State */
.fs-error-container {
    text-align: center;
    padding: 80px 20px;
    background: white;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fs-error-icon {
    width: 64px;
    height: 64px;
    background: #f8d7da;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fs-error-title {
    font-size: 24px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.fs-error-message {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 30px;
}

.fs-back-button {
    display: inline-block;
    background: #2EA3F2;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.fs-back-button:hover {
    background: #1e90ff;
    transform: translateY(-2px);
}

/* Property Not Found Section */
.fs-property-not-found {
    background: #ffffff;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-property-not-found-container {
    text-align: center;
    padding: 40px;
}

.fs-property-not-found-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #dee2e6;
}

.fs-property-not-found-title {
    font-size: 32px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

.fs-property-not-found-text {
    color: #6c757d;
    font-size: 18px;
    margin-bottom: 30px;
}

.fs-property-not-found-button {
    background: #2EA3F2;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.fs-property-not-found-button:hover {
    background: #1e8fd8;
    transform: translateY(-2px);
}

.fs-similar-placeholder-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.fs-similar-content {
    padding: 20px;
}

.fs-similar-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fs-similar-location {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
}

.fs-similar-location-icon {
    margin-right: 5px;
}

.fs-similar-price {
    color: #2EA3F2;
    font-size: 24px;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
    .fs-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fs-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fs-sidebar-sticky {
        position: static;
    }
}

@media (max-width: 576px) {
    .fs-property-title {
        font-size: 24px;
    }
    
    .fs-gallery-main {
        height: 300px;
    }
    
    .fs-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fs-amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .fs-nearby-grid {
        grid-template-columns: 1fr;
    }
    
    .fs-price-amount {
        font-size: 28px;
    }
}