/* General Styles */
body {
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Shop Section */
.shop-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.plant-card {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-5px);
}

.plant-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

.plant-info {
    padding: 20px;
}

.plant-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.plant-price {
    font-size: 16px;
    color: #8bc34a;
    margin-bottom: 10px;
}

.plant-description {
    font-size: 14px;
    color: #777;
    line-height: 1.4;
    margin-bottom: 20px;
}

.btn-add-to-cart {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8bc34a;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: rgb(94, 135, 57);
}