.main {
    padding: 20px;
}
.store-section {
    margin: 20px 0;
}
.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.product-card {
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 250px;
    text-align: center;
}
.product-card h3 {
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.product-card p {
    margin: 0 0 15px;
    min-height: 40px;
    text-align: justify;
    font-size: 15px;
}
.product-card button {
    background-color: #47C71F;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}
.product-card button:hover {
    background-color: #3a9f1b;
}
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        width: 90%;
    }
}