* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
}

body {
  line-height: 1.6;
  background: #fff;
  color: #333;
}

.announcement-banner {
  background-color: #ffb347;
  /* pastel orange */
  padding: 6px 0;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.announcement-banner a.shop-now-link {
  color: white;
  text-decoration: underline;
  margin-left: 8px;
}

header {
  background: #f8f8f8;
  padding: 20px 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container img {
  vertical-align: middle;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #3a3a3a;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.hero {
  background: #e8f5e9;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #2ecc71;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.products {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
  background: #fafafa;
}

.product-card {
  text-align: center;
  max-width: 300px;
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f0f0f0;
  font-size: 14px;
}

.logo-image {
  height: 60px;
  width: auto;
  display: block;
}

.hero-logo {
  display: block;
  margin: -160px auto -140px auto;
  /* top | auto | bottom | auto */
  height: 400px;
  width: auto;
}

.contact-section {
  background-color: #fefefe;
  padding: 60px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  resize: vertical;
}

.contact-form button {
  background-color: #2ecc71;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #27ae60;
}

#thankYouMessage {
  text-align: center;
  font-size: 16px;
  color: #2ecc71;
}

#backLink {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ffb347;
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  text-align: center;
}

.auth-buttons button {
  margin-left: 10px;
  padding: 8px 12px;
  font-weight: bold;
  background-color: #f07d49;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}


/* === MODAL STYLES === */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 300px;
  font-family: 'Segoe UI', sans-serif;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: #f07d49;
}

.modal-content input {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.modal-content button {
  background-color: #f07d49;
  color: white;
  border: none;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  margin-bottom: 10px;
}

.modal-content button:hover {
  background-color: #d96d3e;
}

.modal-content button:last-child {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
}

.modal-content button:last-child:hover {
  background-color: #f7f7f7;
}