.websstuff-bike-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.websstuff-bike-card {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
}

.websstuff-bike-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #fff;
}

.bike-content {
    padding: 15px;
    color: #fff;
}

.price {
    color: red;
    font-weight: bold;
}

.websstuff-inquiry-btn {
    width: 100%;
    padding: 12px;
    background: red;
    color: #fff;
    border: none;
    cursor: pointer;
}

.websstuff-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
}

.websstuff-modal-content {
    background: #fff;
    width: 95%;
    max-width: 500px;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
}

.websstuff-modal input,
.websstuff-modal textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

.websstuff-close {
    float: right;
    cursor: pointer;
}
