.scart-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 10px;
}

.scart-product {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    box-shadow: 0 0 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}

.scart-product:hover {
    box-shadow: 0 0 12px rgba(0,0,0,0.1);
}

.scart-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.scart-product h4 {
    margin: 10px 0 5px;
    font-size: 1.1em;
}

.scart-product p {
    margin: 4px 0;
    font-size: 0.95em;
}

.scart-product form {
    margin-top: auto;
}

.scart-product button {
    background: #333;
    color: #fff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.scart-product button:hover {
    background: #555;
}