* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7efe7;
  color: #2b1a12;
  line-height: 1.6;
  height: 100%;
  margin: 0;  
}

.top-bar {
  background: #3b2a1f;
  color: #fff;
  overflow: hidden;
  font-size: 14px;
  padding: 6px 0;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; /* push text fully to right initially */
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  font-size: 16px;
  white-space: nowrap;
  color: #2b1a12;
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

footer {
  background: #2b1a12;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 70px
}

@media (max-width: 1024px) {
  .logo {
    font-size: 16px;
  }

  .nav-links {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .logo {
    font-size: 16px;
    text-align: center;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 15px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 12px;
  }
}
