.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add this line for the shadow */
  }
  
  .header-button {
    margin-left: 10px;
    padding: 10px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    background-color: #087bfe; /* Fallback for older browsers */
    background-image: linear-gradient(to right, #087bfe, #08a0ff);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-image 0.3s ease;
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    order: 1;
  }
  
  .header-button:active {
    background-image: linear-gradient(to right, #0056b3, #0099cc);
  }
  
  .hamburger-menu {
    position: relative;
    order: 2;
    margin-right: 35px;
  }
  
  .hamburger {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    min-width: 150px;
  }
  
  .nav-menu.active {
    display: block;
  }
  
  .nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-list li {
    margin: 10px 0;
  }
  
  .nav-list a {
    text-decoration: none;
    color: #333333;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
  }
  
  @media screen and (max-width: 768px) {
    .header {
      flex-direction: row;
      justify-content: space-between;
      height: auto;
      padding: 15px;
    }
  
    .header-button {
      margin-bottom: 0;
    }
  
    .hamburger-menu {
      align-self: center;
    }
  
    .nav-menu {
      width: 100%;
      position: static;
      border: none;
    }
  }
/* Basic styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 0rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, rgb(8, 123, 254), rgb(8, 160, 255));
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    text-align: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid #ddd;
}

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin: 1rem 0;
    color: #333;
}

.product-card p {
    margin-bottom: 1rem;
    color: #666;
}

.product-card .cta-button {
    margin-top: auto;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
}

/* Add media query for mobile responsiveness */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Form styling */
form {
    max-width: 600px;
    margin: 2rem auto;
}

form div {
    margin-bottom: 1rem;
}

input, textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button.cta-button {
    border: none;
    cursor: pointer;
}

button.cta-button:hover {
    background-color: #ff5252;
}

/* Footer styling */
footer {
    text-align: center;
    background-color: #333;
    padding: 1rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #ffffff;
}

footer p {
    margin: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.hero-image {
    position: relative;
    width: 30%;
    max-width: 1000px;
    height: auto;
    overflow: hidden;
    margin: 6rem auto -1rem auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.section-title {
    text-align: center;
    margin: 0.5rem auto 3rem auto;
    max-width: 1000px;
    position: relative;
    z-index: 1;
    width: 80%;
    font-size: 1.2rem;
    color: #333;
    padding: 0.5rem 1rem;
}

/* Align the image to the section-title */
.section-title + img {
    display: block; /* Ensure the image is a block element */
    margin: 0 auto; /* Center the image */
    width: 100%;
    max-width: 1000px;
}

/* Update responsive font size */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 0.8rem;
    }
}

.image-emoji-container {
    text-align: center; /* Center the emoji container */
    margin-top: 0.1rem; /* Add some space above the emoji container */
    width: 100%; /* Ensure it takes the full width */
    font-size: 36px;
}

/* Align the coupon button below the emoji container */
.coupon-button {
    display: block; /* Make the button a block element */
    margin: 0.1rem auto; /* Center the button and add margin */
    cursor: pointer; 
    border-radius: 25px; 
    background: linear-gradient(45deg, rgb(8, 123, 254), rgb(8, 160, 255));
    color: white; 
    border: none; 
    padding: 10px 20px; 
    font-size: 16px;
    text-decoration: underline;
    text-decoration-color: #088efe; /* Change this to your desired color */
}

.description-text {
    margin-left: auto; /* Center the text */
    margin-right: auto; /* Center the text */
    text-align: center; /* Center the text */
    max-width: 1000px;
}

.hero-text {
  margin-left: auto; /* Center the text */
  margin-right: auto; /* Center the text */
  text-align: center; /* Center the text */
  max-width: 1000px;
}

/* New Delivery Area Section */
.delivery-area {
    margin: 2rem auto; /* Center the section */
    text-align: center; /* Center the text */
    max-width: 1000px; /* Limit the width */
    padding: 1rem; /* Add some padding */
    background-color: #ffffff; /* Light background color */
    border-radius: 10px; /* Rounded corners */
}

.delivery-area h2 {
    font-size: 1.5rem; /* Heading size */
    color: #000000; /* Heading color */
}

.delivery-area p {
    font-size: 1rem; /* Paragraph size */
    color: #000000; /* Paragraph color */
}

/* New styles for map-container responsiveness */
.map-container {
    width: 100%; /* Make the map take full width */
    max-width: 600px; /* Limit the maximum width */
    margin: 0 auto; /* Center the map */
    border-radius: 10px; /* Optional: add rounded corners */
    overflow: hidden; /* Ensure no overflow */
}

/* Ensure the iframe is responsive */
.map-container iframe {
    width: 100%; /* Make the iframe take full width */
    height: 300px; /* Set a fixed height for the iframe */
}

/* Adjust iframe height for smaller screens */
@media (max-width: 600px) {
    .map-container iframe {
        height: 200px; /* Reduce height on smaller screens */
    }
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 500px; /* Limit the width */
    border-radius: 10px; /* Rounded corners */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}