body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f9;
}

header {
    background-color: #f9c74f;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-logo {
    max-width: 100px;
    height: auto;
}

.nav-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.nav-list li {
    display: inline;
}

.nav-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
    background-color: #2ab836;
}

.nav-button:hover {
    background-color: #2ab836;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}

#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    background-color: #4CAF50;
    color: #fff;
}

#hero h1 {
    font-size: 5.5em;
    margin: 0;
    font-style:italic;
}

#hero p {
    font-size: 1.5em;
}

#hero span {
    color: #f9c74f;
}

.cta-button {
    background-color: #f9c74f;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #333;
    color: #fff;
    transform: scale(1.05);
}

.hero-image img {
    max-width: 200px;
    margin-top: 20px;
}

.responsive-iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}
.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#products {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#products h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: calc(33% - 40px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.product-item img {
    max-width: 100%;
    border-radius: 10px;
}

.product-item h3 {
    margin: 10px 0 5px;
}

.product-item p {
    margin: 0;
    color: #666;
}

.gallerylink a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.gallerylink a:hover {
    background-color: #4CAF50;
    transform: scale(1.05);
}

.about {
    padding: 50px 20px;
    text-align: center;
    background-color: #4CAF50;
    color: #fff;
}

.about h2 {
    font-size: 3em;
}

.about p {
    font-size: 1.3em;
}

.about img {
    max-width: 100%;
    border-radius: 10px;
    margin: 10px 0;
}

#contact {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

#contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-details {
    max-width: 600px;
    margin: 0 auto;
}

.contact-details p {
    margin: 10px 0;
    font-size: 1.4em;
}

.contact-details i {
    color: #4CAF50;
    margin-right: 10px;
}

.location-link {
    padding-top: 5%;
    margin-top: 20px;
}

.social-media {
    padding-top: 5%;
}

.social-media a {
    margin: 0 10px;
    color: #333;
    font-size: 1.5em;
    transition: color 0.3s, transform 0.3s;
}

.social-media a:hover {
    color: #4CAF50;
    transform: scale(1.2);
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
}

.footer-branding {
    max-width: 300px;
    text-align: left;
}

.footer-branding h2 {
    margin: 0 0 10px;
    color: #4CAF50;
}

.footer-branding p {
    margin: 0;
    color: #bbb;
    font-size: 1.5em;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links .footer-section {
    text-align: left;
}

.footer-links h3 {
    margin-bottom: 10px;
    color: #4CAF50;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.9em;
    color: #bbb;
}

.fixed-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fixed-icon {
    background-color: #37c43c;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5em;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
}

.fixed-icon:hover {
    background-color: #333;
    transform: scale(1.5);
}

@media (max-width: 768px) {
    .nav-list {
        flex-direction: column;
        align-items: center;
        display: none;
    }

    .nav-list.nav-active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    #products .product-item {
        width: calc(50% - 40px);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    #products .product-item {
        width: calc(100% - 40px);
    }
}
