/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
}

body {
  background: #fff;
  color: #0a0a0a;
}

/* NAVBAR */
.navbar {
  background: #0a0a0a;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
}

/* navbar logo */

.navbar-logo {
  color: #c9b37e; /* Champagne gold */
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  display: flex; /* ADD */
  align-items: center; /* ADD */
}

/* ADD THIS NEW RULE */
.navbar-logo img {
  height: 5rem; /* Adjust to your preference */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional: subtle hover effect */
.navbar-logo img:hover {
  transform: scale(1.05);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 880px) {
  .navbar-logo img {
    height: 5rem; /* Slightly smaller on mobile */
  }
}

/* MENU */
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.navbar-menu li a {
  color: #c9b37e; /* Champagne gold */
  text-decoration: none;
  font-size: 1.1rem;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.35s ease;
  position: relative;
}

/* Hover effect: lift + scale + gold glow */
.navbar-menu li a:hover,
.navbar-menu li a.active {
  color: #0a0a0a; /* Text dark */
  background-color: #d4af37; /* Brighter gold background */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6); /* Soft gold glow */
}

/* Extra glowing edges */
.navbar-menu li a:hover::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border-radius: 25px;
  box-shadow: 0 0 15px 4px rgba(212, 175, 55, 0.6);
  opacity: 1;
  transition: all 0.35s ease;
  pointer-events: none;
}

/* HAMBURGER */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.bar {
  width: 28px;
  height: 3.5px;
  background: #c9b37e; /* champagne gold */
  transition: all 0.4s ease;
}

/* TOGGLE ANIMATION: perfect X */
.navbar-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE */
@media (max-width: 880px) {
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    flex-direction: column;
    background: #000;
    width: 220px;
    padding: 25px;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 10px 0;
    transition: all 0.35s ease;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li a {
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 15px;
  }

  /* Optional: simpler hover glow for mobile */
  .navbar-menu li a:hover::before {
    box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.5);
  }
}

.product-section {
  padding: 120px 20px;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(201, 179, 126, 0.25),
      transparent 60%
    ),
    linear-gradient(to bottom, #faf9f6, #fff);
}

.product-card {
  max-width: 1100px;
  margin: auto;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

/* ---------- GALLERY ---------- */
.product-gallery {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.slider {
  position: relative;
}

.slide {
  width: 100%;
  display: none;
  border-radius: 22px;
}

.slide.active {
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #c9b37e;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.arrow.left {
  left: 15px;
}
.arrow.right {
  right: 15px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
}

.dot.active {
  background: #c9b37e;
}

/* ---------- INFO BOX ---------- */
.product-info {
  background: #111;
  color: #fff;
  border-radius: 22px;
  padding: 40px;
}

.product-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  margin-bottom: 20px;
}

.features li {
  margin-bottom: 10px;
}

.description {
  color: #ddd;
  margin-bottom: 30px;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1rem 0 1.5rem;
  color: #ddd;
}

.buy-row {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.buy-btn {
  background: #c9b37e;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s ease;
}

.buy-btn.glow {
  box-shadow: 0 0 20px rgba(201, 179, 126, 0.8);
}

.buy-btn:hover {
  transform: translateY(-2px);
}

.quantity {
  padding: 12px;
  border-radius: 25px;
  cursor: pointer;
}

/* ---------- ACCORDION ---------- */
.acc-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.acc-header {
  background: none;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 15px 0;
  border: none;
  cursor: pointer;
}

.acc-content {
  display: none;
  color: #ccc;
  padding-bottom: 15px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .product-card {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }
}

/* ================= FOOTER ================= */
.footer {
  background: #0a0a0a; /* Black base */
  width: 100%;
  padding: 30px 20px;
  color: #fff;
  text-align: center;
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.05); /* subtle glossy effect */
  backdrop-filter: blur(4px); /* slight glassy/glossy feel */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Jost", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Contact email styling */
.footer p a {
  color: #c9b37e; /* Champagne gold */
  text-decoration: none;
  font-size: 1rem; /* större text */
  font-weight: 600; /* lite fylligare */
  transition: all 0.3s ease;
}

.footer p a:hover {
  color: #d4af37; /* lite ljusare guld på hover */
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Footer links */
.footer-links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links li a {
  color: #c9b37e; /* Champagne gold for links */
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #d4af37; /* Slightly brighter gold on hover */
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links {
    gap: 15px;
  }
}
