body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #f4f4f4;
}

header {
  background-color: #222;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top a{
  color: #fff;
  text-decoration: none;
}

#menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

#countdown {
  text-align: center;
  font-size: 1.2rem;
  color: #ff9800;
  font-weight: bold;
  margin-top: 8px;
}

#purchase{
  background-color: #00bcd4 !important;
  border:none;
}

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  color: #00bcd4;
}

/* Shop Section */
#shop {
  text-align: center;
  padding: 40px 10px;
}

#about h2 {
  color: #00bcd4;
  margin-bottom: 20px;
}

#about{
  color: #000000;
  text-align: center;
}
.faq{
  color: #000;
}

#contact{
  color: #000000;
}

.faq-container{
  max-width: 600px;
  margin: auto;
}

.faq-container h1{
text-align: center;
}

.faq-item{
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(128, 128, 128, 0.623);
  overflow: hidden;
  color: #000;
}

.faq-questions{
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  background-color: rgb(240, 240, 240);
  position: relative;
}

.faq-questions:after {
  content: '+';
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-questions:after{
  content: '-';
}

.faq-answers{
  max-height: 0;
  overflow: hidden;
  padding: 0px 15px;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.faq-item.active .faq-answers{
  max-height: 400px;
  padding: 15px;
}
/* Footer */
footer {
  background-color: #222;
  padding: 10px;
  text-align: center;
  color: #bbb;
}

@media (max-width: 768px) {
  #main-nav {
    display: none;
    flex-direction: column;
    background-color: #222;
    text-align: center;
    padding: 10px 0;
  }

  #main-nav.active {
    display: flex;
  }

  #menu-toggle {
    display: block;
  }
}

@media (min-width: 769px) {
  #main-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  #menu-toggle {
    display: none;
  }
}

/* Modal styling */
.modal {
color: black;
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 8% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
}

.close {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 4px;
}

input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.error-message {
  color: #e74c3c;
  font-size: 12.8px;
}

button[type="submit"] {
  background-color: #3498db;
  color: white;
  padding: 0.75rem;
  border: none;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #2980b9;
}

/* ============================
   EMAIL POPUP (NEWSLETTER)
   ============================ */

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #ffffff;
  color: #000000;
  padding: 25px;
  width: 320px;
  max-width: 90%;
  border-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.popup-content h2 {
  margin-top: 0;
}

.popup-content p {
  color: #000;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 25px;
  cursor: pointer;
}

#email-input {
  width: 90%;
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#email-form button {
  margin-top: 12px;
  padding: 10px 20px;
  background: #00bcd4;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#email-form button:hover {
  background: #0097a7;
}
