* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f7ee;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: #38a169;
    padding: 20px 0;
    color: white;
    text-align: center;
}

header .logo {
    width: 120px; 
    height: 120px; 
    border-radius: 50%;
    display: block;
    margin: 0 auto 10px; 
}

.store-name {
    margin-top: 10px;
    font-size: 1.5em;
}

.products {
    padding: 40px 0;
}

.product-card {
    background-color: #e9f5db;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
    width: 300px;
    margin: 20px auto; 
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.product-info .price {
    font-size: 1.2em;
    color: #38a169;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    background-color: #38a169;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button i {
    margin-right: 8px;
}

button:hover {
    background-color: #2f855a;
}

.cart{
    text-align: center;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.link {
    margin: 20px 0;
    text-align: left;
}

.link h3 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.link ul {
    list-style: none;
}

.link ul li {
    margin-bottom: 5px;
}

.link ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.link ul li a:hover {
    color: #38a169;
    text-decoration: underline;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #38a169;
}

@media (max-width: 768px) {
    header .logo {
        width: 80px; 
        height: 80px; 
    }

    .store-name {
        font-size: 1.2em;
    }

    .product-card {
        width: 90%; 
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}