/* General Reset */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfcf7;
}

/* Header */
header {
    background: #2e8b57;
    color: white;
    text-align: center;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header .highlight {
    color: #ffd700;
}

header nav {
    margin-top: 10px;
}

header nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

header nav a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #f5f5f5, #e8f5e9);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #2e8b57;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #256d46;
}

/* Section Headings */
section h2 {
    text-align: center;
    color: #2e8b57;
    margin-top: 40px;
}

/* Product */
.product-card {
    text-align: center;
    padding: 20px;
}

.product-img {
    width: 250px;
    border-radius: 10px;
}

.product-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.product-gallery img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Price Box */
.price-box {
    margin-top: 15px;
}

.price {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: bold;
}

/* Ingredients */
#ingredients .ingredients-list span {
    color: #2e8b57;
    font-weight: bold;
}

/* Contact */
#contact {
    background: #f1f1f1;
    padding: 20px;
    text-align: center;
}

#contact p {
    font-weight: bold;
    margin: 8px 0;
}

#contact a {
    color: #0077cc;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #2e8b57;
    color: white;
    margin-top: 20px;
}
