* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #b8e2dc, #a8dcd4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-left {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-left a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-left a:hover {
  color: #a84b3b;
}

.logo {
  font-size: 26px;
  color: #b5402b;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #b5402b;
  font-size: 18px;
}

.divider {
  width: 1px;
  height: 25px;
  background-color: #ccc;
}

body {
  background: linear-gradient(180deg, #b9d9d9, #e3f1f1);
  /* display: flex; */
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px 60px;
  max-width: 1300px;
  margin: auto;
}

.product {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.product:hover img {
  transform: scale(1.05);
}

.product:hover {
  transform: translateY(-5px);
}

.product-name {
  margin-top: 10px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: #222;
  text-transform: uppercase;
  font-weight: bold;
}

.price {
  margin-top: 4px;
  color: #555;
  font-size: 0.9rem;
  font-weight: bold;
}

.footer {
  width: 100%;
  padding: 50px 8%;
  background: transparent;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h2.logo {
  font-size: 2rem;
  color: #c24a1e;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #c24a1e;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #c24a1e;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  opacity: 0.7;
}

.signup form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signup input {
  border: 1px solid #c24a1e;
  background: transparent;
  padding: 10px;
  color: #c24a1e;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
}

.signup input::placeholder {
  color: #c24a1e;
}

.signup .disclaimer {
  font-size: 0.75rem;
  line-height: 1.3;
  color: #c24a1e;
}

.signup .disclaimer a {
  color: #c24a1e;
  text-decoration: underline;
}

.signup button {
  background: #1b1b1b;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  width: 120px;
  margin-top: 10px;
}

.signup button:hover {
  opacity: 0.85;
}

hr {
  border: none;
  border-top: 1px solid rgba(194, 74, 30, 0.3);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #c24a1e;
  gap: 10px;
}

.country {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 6px;
  background: white;
}

.country img {
  width: 20px;
}

.footer-bottom .links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  text-align: right;
}

.footer-bottom .links a {
  color: #c24a1e;
  text-decoration: none;
  font-size: 0.8rem;
}

.footer-bottom .links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-bottom .links {
    flex-direction: column;
    gap: 8px;
  }
}