.loading-placeholder {
    padding: 150px 40px;
    text-align: center;
    color: #bbb;
    font-style: italic;
    background: white;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    font-size: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Resort Card Image Styles */
.resort-image-container {
    width: 100px;
    height: 100px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
    background: #fcf9f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resort-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resort-premium-card:hover .resort-card-image {
    transform: scale(1.1);
}

/* Expanded View Image Styles */
.resort-header-visual {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.expanded-resort-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Unit Card Image Styles */
.unit-image-box {
    width: 80px;
    height: 80px;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid #eee;
}

.unit-card-resort-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
