/* ==================== VIN CHECK BLOCK ==================== */
.vin-section {
    margin-bottom: 0px;
    padding-bottom: 50px;
}
.vin-check-block {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.vin-check-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #F26C1A;
    border-radius: 8px 0 0 8px;
}

.vin-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #FFF3EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vin-icon svg {
    width: 28px;
    height: 28px;
}

.vin-content {
    flex: 1;
    min-width: 0;
}

.vin-content h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.vin-content p {
    margin: 0;
    font-size: 13.5px;
    color: #666;
    line-height: 1.5;
}

.vin-content p span {
    color: #F26C1A;
    font-weight: 500;
}

.vin-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F26C1A;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 22px;
    border-radius: 6px;
    transition: background 0.18s ease, transform 0.12s ease;
    white-space: nowrap;
    line-height: 1;
}

.vin-btn:hover {
    background: #D95C10;
    transform: translateY(-1px);
}

.vin-btn:active {
    transform: translateY(0);
}

.vin-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.vin-label {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.75;
    display: block;
    margin-top: 4px;
    letter-spacing: 0.02em;
}

.vin-erid {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 10px;
    color: #bbb;
}

@media (max-width: 600px) {
    .vin-check-block {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px 28px;
        gap: 16px;
    }

    .vin-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}
