/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #4CAF50;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    text-decoration: none;
}

header img.logo {
    height: 50px;
}

header nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin: 0 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

header nav ul li a:hover {
    background-color: #45a049;
}

footer {
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Main Content Styles */
main {
    padding: 20px;
}

/* Product Grid Styles */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.product-item {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
    object-fit: cover;
    border-radius: 4px;
}

.product-item h3 {
    font-size: 1.1em;
    margin: 10px 0;
    color: #333;
}

.product-item p {
    font-size: 1em;
    color: #555;
}

/* Search Bar Styles */
.search-bar {
    margin-bottom: 20px;
    text-align: center;
}

.search-bar input[type="text"] {
    padding: 8px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar button {
    padding: 8px 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.search-bar button:hover {
    background-color: #45a049;
}

/* Footer Styles */
footer p {
    margin: 0;
    font-size: 0.9em;
}
/* Founder Info Section */
.founder-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.founder-info h2 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.founder-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

.founder-info p strong {
    display: block;
    font-weight: bold;
}
/* Review Section */
.reviews-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-section h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.review {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.review h3 {
    margin: 0 0 5px;
    color: #333;
}

.review p {
    margin: 5px 0;
    color: #555;
}

.review-form {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.review-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.review-form button:hover {
    background-color: #45a049;
}
/* Review Section */
.reviews-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-section h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.review {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.review h3 {
    margin: 0 0 5px;
    color: #333;
}

.review p {
    margin: 5px 0;
    color: #555;
}

.review-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.review-form {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.review-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.review-form button:hover {
    background-color: #45a049;
}
/* Review Section */
.reviews-section {
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-section h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    text-align: center;
}

.review {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.review-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.bubble {
    position: relative;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: 15px;
}

.bubble:before {
    content: '';
    position: absolute;
    top: 20px; /* Adjust this to position the arrow vertically */
    left: -20px; /* Adjust this to position the arrow horizontally */
    width: 0;
    height: 0;
    border-right: 20px solid #f9f9f9;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.bubble h3 {
    margin: 0 0 5px;
    color: #333;
}

.bubble p {
    margin: 5px 0;
    color: #555;
}

.stars {
    color: #FFD700;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.review-form {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.review-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.review-form button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.review-form button:hover {
    background-color: #45a049;
}
/* Mobile Styles */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin: 0 auto;
        width: 80px; /* Adjust logo size for mobile */
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    /* Adjust product grid */
    .product-grid {
        display: grid;
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    /* Adjust reviews layout */
    .review {
        flex-direction: column;
        align-items: center;
    }

    .review-photo {
        margin-bottom: 10px;
    }

    .bubble {
        max-width: 100%;
        text-align: center;
    }
}
img {
    max-width: 100%;
    height: auto;
}
