body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #f8f8f8;
  color: #111;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

.subtitle {
  font-style: italic;
  color: #c00;
}


.product-details {
  margin-bottom: 30px;
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

button {
  background-color: #c00;
  color: white;
  border: none;
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #900;
}

footer {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin-top: 40px;
}

.navbar {
  width: 100%;
  padding: 15px 20px; /* scooches everything inward */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px; /* scooch between Store + Contact */
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.nav-link:hover {
  opacity: 0.6;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 40px; /* <-- THIS pulls them inward */
}

.nav-right a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.hero-images img {
    width: 300px;      /* adjust this number to taste */
    height: 300;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

@media (max-width: 700px) {
    .hero-images {
        flex-direction: column;
        align-items: center;
    }

    .hero-images img {
        width: 80%;
        max-width: 350px;
    }
}


