/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f4e1;
  color: #4e1f00;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #4e1f00;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #f8f4e1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #feba17;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #f8f4e1;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Store Section */
.store {
  padding: 120px 50px 100px;
  text-align: center;
  background: linear-gradient(180deg, #f8f4e1, #74512d);
}

.store h1 {
  font-size: 48px;
  color: #feba17;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(78, 31, 0, 0.5);
}

.store p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #74512d;
}

/* Store Grid */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.store-item {
  background-color: #4e1f00;
  padding: 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.store-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(254, 186, 23, 0.7);
}

.store-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s;
}

.store-item:hover .store-img {
  transform: scale(1.05);
}

.store-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #feba17;
}

.store-item p {
  font-size: 16px;
  color: #f8f4e1;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #feba17;
  border: none;
  color: #4e1f00;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
  background-color: #74512d;
  color: #f8f4e1;
  transform: translateY(-5px);
}

/* Product Pop-Up */
.product-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(78, 31, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.popup-content {
  background-color: #4e1f00;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
  text-align: center;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: #f8f4e1;
  cursor: pointer;
}

.popup-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

#popup-title {
  font-size: 28px;
  color: #feba17;
  margin-bottom: 10px;
}

#popup-price,
#popup-description {
  font-size: 16px;
  color: #f8f4e1;
  margin-bottom: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #4e1f00;
  color: #f8f4e1;
  margin-top: 250px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #4e1f00;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .store {
    padding: 100px 20px 80px;
  }

  .store h1 {
    font-size: 36px;
  }

  .store-img {
    height: 150px;
  }

  .popup-img {
    height: 200px;
  }
}
