/*
 * ZIIZ Swipe Navigation Styles with FontAwesome
 * Version: 5.0.0 (FontAwesome Icons)
 */

.zsn-swipe-container {
    display: block;
}

.zsn-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.zsn-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.zsn-arrow.prev {
    left: 15px;
    background-image: url('../images/arrow-left.svg');
}

.zsn-arrow.next {
    right: 15px;
    background-image: url('../images/arrow-right.svg');
}

.zsn-ripple-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    display: none;
    justify-content: center;
    align-items: center;
}

.zsn-ripple-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: ripple-effect 2.5s ease-out infinite;
}

.zsn-ripple-circle.one { animation-delay: 0s; }
.zsn-ripple-circle.two { animation-delay: 0.8s; }
.zsn-ripple-circle.three { animation-delay: 1.6s; }

@keyframes ripple-effect {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.zsn-progress {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.single-property-page.zsn-loading {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

/* FontAwesome Icon Styling */
.key-facts-grid .fact-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.key-facts-grid .fact-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.key-facts-grid .fact-icon i {
    font-size: 18px;
    color: #666;
}

.key-facts-grid .fact-text {
    flex: 1;
}

.key-facts-grid .fact-value {
    font-weight: bold;
    font-size: 16px;
}

.key-facts-grid .fact-label {
    font-size: 12px;
    color: #999;
}
