/* GENERAL */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #3A0D0D;
  color: #f9f5ef;
}

/* NAVBAR */
.navbar {
  background-color: #5c1a1a;
  padding: 10px 0;
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.navbar a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}
#cart-count {
  background: gold;
  color: #3A0D0D;
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 14px;
  margin-left: 5px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 40px 20px;
}
.logo {
  width: 120px;
  margin-bottom: 15px;
}
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #D4AF37;
}
.tagline {
  color: #D4AF37;
  font-size: 18px;
}

/* SECTION */
.about {
  padding: 40px 20px;
  background-color: #4c1212;
  text-align: center;
}

/* =========================
   PRODUCT IMAGE SLIDER (ADDED)
========================= */

.product-slider {
  max-width: 260px;
  margin: 20px auto;
  position: relative;
}

.product-slide {
  display: none;
  width: 100%;
  border-radius: 10px;
}

.product-slide.active {
  display: block;
}

/* FLOATING INSTAGRAM & CART */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-icon {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
  text-decoration: none;
  position: relative;
}

.floating-icon img {
  width: 26px;
  height: 26px;
}

/* CART BADGE */
.cart-badge-float {
  position: absolute;
  top: -6px;
  right: -6px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}
/* ===== REVIEW SLIDER FIX ===== */
.review {
  display: none;
}

.review.active {
  display: block;
}
/* ADD TO CART BUTTON FIX */
button {
  background-color: #2ecc71; /* green */
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #27ae60; /* darker green */
}
