/* Reset & Base */
body {
  font-family: 'Playfair Display', serif;
  background: #000;
  color: #fff;
  margin: 0;
  letter-spacing: 0.02em;
  min-height: 100vh;
}

/* Top Decorative Bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  padding: 0.5rem 0;
  border-bottom: 1.5px solid #d4af37;
  font-family: 'Great Vibes', cursive;
  font-size: 1.5rem;
  color: #d4af37;
  letter-spacing: 0.1em;
}
.top-bar .bar-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 0 1rem;
}
.top-bar .bar-text {
  white-space: nowrap;
}

/* Navbar */
header {
  background: #000;
  padding: 1.2rem 2rem 0.8rem 2rem;
  border-bottom: 1.5px solid #d4af37;
  box-shadow: 0 2px 12px 0 rgba(212,175,55,0.07);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  height: 64px;
  filter: drop-shadow(0 0 8px #d4af3740);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #d4af37;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}

nav ul li a.active,
nav ul li a:hover {
  background: #d4af37;
  color: #000;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 4rem 2rem;
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.7)),
              url("images/perfume-bg.jpg") no-repeat center/cover;
  min-height: 60vh;
  position: relative;
}

.hero-content {
  flex: 1 1 350px;
  max-width: 500px;
  text-align: left;
  z-index: 2;
}

.hero .brand {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #d4af37;
  margin-bottom: 0.2em;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 16px #d4af3740;
}

.hero .subtitle {
  font-family: 'Great Vibes', cursive;
  font-size: 2rem;
  color: #fff;
  margin-top: -0.5em;
  margin-bottom: 1em;
  letter-spacing: 0.12em;
}

.hero .tagline {
  font-size: 1.25rem;
  margin-bottom: 2em;
  color: #fff;
  line-height: 1.5;
}

.hero .highlight {
  color: #d4af37;
  font-style: italic;
}

.hero-logo {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-logo img {
  width: 260px;
  max-width: 90vw;
  filter: drop-shadow(0 0 24px #d4af3740);
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  padding: 1.5rem;
}

/* Button */
.btn {
  background: linear-gradient(90deg, #d4af37 60%, #fff 100%);
  color: #000;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 24px 0 #d4af3720;
  border: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.btn:hover {
  background: #fff;
  color: #d4af37;
  box-shadow: 0 6px 32px 0 #d4af3740;
}

/* Features Section */
.features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 3rem 2rem 2rem 2rem;
  background: linear-gradient(180deg, #000 80%, #1a1200 100%);
}
.feature {
  background: rgba(30, 20, 0, 0.25);
  border: 1.5px solid #d4af37;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 2px 16px 0 #d4af3720;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 #d4af3740;
}
.feature-icon {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 0.7rem;
  display: block;
}
.feature h3 {
  color: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.feature p {
  color: #fff;
  font-size: 1rem;
  opacity: 0.92;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  border-top: 1.5px solid #d4af37;
  margin-top: 3rem;
  background: #000;
  position: relative;
}
.footer-logo img {
  width: 80px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 12px #d4af3740);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    padding: 3rem 1rem 2rem 1rem;
  }
  .features, .products-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  nav ul {
    gap: 1.2rem;
  }
}

/* Responsive for mobile phones */
@media (max-width: 600px) {
  .top-bar {
    font-size: 1.1rem;
    padding: 0.3rem 0;
  }
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 0;
  }
  nav .logo {
    height: 44px;
    margin-bottom: 0.7rem;
  }
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding-left: 0;
  }
  nav ul li a {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    display: block;
    width: 100%;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-logo img {
    width: 160px;
    padding: 0.7rem;
  }
  .feature, .products-list .feature {
    max-width: 95vw;
    padding: 1.2rem 0.7rem;
  }
  .footer-logo img {
    width: 60px;
  }
  footer {
    padding: 1rem 0.5rem 0.5rem 0.5rem;
    font-size: 0.95rem;
  }
  #cart-modal > div {
    max-width: 98vw !important;
    padding: 1rem !important;
  }
  .payment-methods {
    gap: 1rem;
    font-size: 1.2rem;
    flex-wrap: wrap;
  }
}
