/* Pickup Properties Section */
.vh-pickup-header {
    text-align: center;
    margin-bottom: 40px;
}

.vh-pickup-subtitle {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.vh-pickup-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.vh-pickup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Property Card */
.vh-property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e0e0e0;
}

.vh-property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vh-property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vh-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vh-property-card:hover .vh-property-image img {
    transform: scale(1.05);
}

/* Property Badges */
.vh-property-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.vh-badge {
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.vh-badge-rent {
    background: #2c5aa0;
    color: white;
}

.vh-badge-new {
    background: #e74c3c;
    color: white;
}

/* Favorite Button */
.vh-favorite-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.vh-favorite-btn:hover {
    color: #ffd700;
    background: white;
    transform: scale(1.05);
}

.vh-favorite-btn.active {
    border-color: #e74c3c;
    color: #e74c3c;
    background: white;
}

.vh-favorite-btn i {
    font-size: 16px;
}

/* Property Content */
.vh-property-content {
    padding: 20px;
}

.vh-property-type {
    margin-bottom: 12px;
}

.vh-type-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.vh-property-name {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
}

.vh-property-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vh-property-name a:hover {
    color: #e74c3c;
}

/* Property Price */
.vh-property-price {
    margin-bottom: 12px;
}

.vh-main-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
}

.vh-sub-price {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

/* Property Details */
.vh-property-details {
    margin-bottom: 8px;
}

.vh-detail-item {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Property Location */
.vh-property-location {
    margin-bottom: 12px;
}

.vh-location-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Property Notes */
.vh-property-notes {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.vh-property-notes p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Footer Button */
.vh-pickup-footer {
    text-align: center;
}

.vh-more-btn {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 16px 70px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.vh-more-btn:hover {
    background: #c0392b;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

/* No Properties */
.vh-no-properties {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vh-pickup-properties {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .vh-pickup-title {
        font-size: 24px;
    }
    
    .vh-pickup-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vh-property-image {
        height: 180px;
    }
    
    .vh-property-content {
        padding: 16px;
    }
    
    .vh-property-name {
        font-size: 16px;
    }
    
    .vh-main-price {
        font-size: 18px;
    }
    
    .vh-more-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vh-pickup-header {
        margin-bottom: 30px;
    }
    
    .vh-pickup-title {
        font-size: 20px;
    }
    
    .vh-property-image {
        height: 160px;
    }
    
    .vh-property-content {
        padding: 14px;
    }
    
    .vh-property-name {
        font-size: 15px;
    }
    
    .vh-main-price {
        font-size: 16px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vh-property-card {
    animation: fadeInUp 0.6s ease;
}

.vh-property-card:nth-child(1) { animation-delay: 0.1s; }
.vh-property-card:nth-child(2) { animation-delay: 0.2s; }
.vh-property-card:nth-child(3) { animation-delay: 0.3s; }
.vh-property-card:nth-child(4) { animation-delay: 0.4s; } 