/* Shared pinning styles for vehicle cards on all pages */

/* Pin button (top-right) */
.pin-button {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
    background-color: #f8f9fa;
    color: #6D213C;
    /* ev-primary */
    border-radius: 16px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #6D213C;
    /* ev-primary */
    transition: all 0.2s;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    min-width: 65px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pin-button:hover {
    background-color: #6D213C;
    /* ev-primary */
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.pin-button.pinned {
    background-color: #6D213C;
    /* ev-primary */
    color: #ffffff;
    border: 1.5px solid #6D213C;
}

.pin-button.pinned:hover {
    background-color: #5a1c32;
    /* slightly darker primary */
}

/* Pinned vehicle highlight: top border + subtle shadow */
.vehicle-card.pinned-vehicle {
    border-top: 3px solid #6D213C;
    /* ev-primary */
    box-shadow: 0 4px 10px -2px rgba(109, 33, 60, 0.15);
}

/* Pinned vehicles section separator */
.pinned-section {
    border-bottom: 2px dashed #6D213C;
    /* ev-primary */
    margin-bottom: 16px;
    padding-bottom: 16px;
}