body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    color: #222;
    padding: 20px;
    margin: 0;
    padding-top: 70px;
  }
  
  
  h1 {
    color: #111;
    text-align: center;
    margin-bottom: 30px;
  }
  
  
  #products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    padding: 0px;
  }
  
  @media (max-width: 600px) {
    #products {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .product {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px;
    background-color: #fff;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  
  .product h3 {
    margin: 2px 0;
    font-size: 14px;
    color: #222;
    text-align: center;
  }
  
  .product strong {
    margin: 2px 0;
    font-size: 13px;
    color: #b28900;
    font-weight: bold;
  }
  
  .product button {
    margin-top: -16px;
    background-color: #111;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .product button:hover {
    background-color: #b28900;
  }
  
  
  /* Navbar styles */
  .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background-color: #111;
  color: white;
  border-radius: 0; /* Remove rounded corners */
  margin: 0;        /* Remove margin */
  width: 100vw;     /* Ensure full viewport width */
  box-sizing: border-box; /* Include padding in total width */
}

  
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo span {
    font-size: 1.5em;
    font-weight: bold;
    color: #b28900;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .nav-links li a:hover {
    color: #b9b8b5;
  }
  
  /* Order form modal */
  #orderForm {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  #orderForm form {
    background: #fff;
    padding: 24px;
    width: 90%;
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  
  #orderForm form h2 {
    margin-top: 0;
    color: #b28900;
  }
  
  #orderForm form label {
    display: block;
    margin-bottom: 14px;
    font-size: 0.95em;
    color: #333;
  }
  
  #orderForm form input,
  #orderForm form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 4px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  #orderForm form button {
    margin-top: 10px;
    padding: 10px 16px;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #orderForm form button[type="submit"]:hover {
    background-color: #b28900;
  }
  
  #orderForm form button[type="button"] {
    background-color: #aaa;
  }
  
  #orderForm form button[type="button"]:hover {
    background-color: #888;
  }

  
  .contact-section {
    margin-top: 60px;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  }
  
  .contact-section h2 {
    text-align: center;
    color: #b28900;
    margin-bottom: 20px;
  }
  
  .contact-section p {
    text-align: center;
    color: #555;
    margin-bottom: 20px;
  }
  
  .contact-info {
    text-align: center;
    margin-bottom: 30px;
    color: #444;
  }
  
  .contact-form {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 15px;
    color: #333;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 4px;
  }
  
  .contact-form button {
    background-color: #111;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
  }
  
  .contact-form button:hover {
    background-color: #b28900;
  }
  

  /* Mobile responsiveness */
/* @media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  .logo {
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
  }

  .contact-form,
  #orderForm form {
    width: 100%;
  }

  #products {
    grid-template-columns: 1fr; /* Single column on small screens */
  /* }

  body {
    padding: 10px;
  } 
} */

/* Thank You Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
  max-width: 90%;
  width: 400px;
  color: #333;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content h3 {
  color: #b28900;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.popup-button {
  padding: 10px 20px;
  background-color: #b28900;
  border: none;
  color: white;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.popup-button:hover {
  background-color: #8c6c00;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
