/* Google Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 450px;
    background-image: url('assets/images/map-placeholder.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    /* Optional rounded corners */
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    /* Slight overlay */
    transition: background 0.3s;
}

.map-placeholder:hover::before {
    background: rgba(0, 0, 0, 0.2);
}

.btn-load-map {
    position: relative;
    z-index: 2;
    padding: 12px 24px;
    background-color: var(--primary-color, #cca43b);
    /* Fallback or var */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-load-map:hover {
    transform: translateY(-2px);
    background-color: #b89335;
    /* Darker shade */
}