/* TOP BAR */
.topbar {
  background: #2f3a45;
  text-align: center;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

/* NAVBAR */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 2rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.arrow {
  font-size: 0.65rem;
  opacity: 0.7;
}

.sale-tag {
  background: #ff4d4d;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  min-width: 180px;
  padding: 0.5rem 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.18s ease;
  z-index: 20;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.dropdown-menu a:hover {
  background: #f7f7f7;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* LOGO */
.nav-logo h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* RIGHT SIDE (empty for now but kept for grid) */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
}

/* REVIEWS BADGE */
/* COMPACT NAVBAR VERSION */
/* NAVBAR COMPACT REVIEW BADGE */
.reviews-badge.nav-compact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 0.8rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: scale(0.88);
  transform-origin: right center;
  margin: 0;
}

.reviews-badge.nav-compact .reviews-logo {
  font-size: 0.9rem;
  font-weight: 700;
}

.reviews-badge.nav-compact .reviews-stars {
  font-size: 1.1rem;
}

.reviews-badge.nav-compact .reviews-btn {
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  border-radius: 999px;
}

.reviews-badge.nav-compact .review-icons {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.reviews-badge.nav-compact .review-icons .icon-btn {
  width: 28px;
  height: 28px;
  font-size: 0.85rem;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reviews-badge.nav-compact .review-icons .icon-btn:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
}


/* ICONS UNDER REVIEWS */
.review-icons {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.icon-btn {
  background: #f5f5f5;
  border: 1px solid #ddd;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
}

/* Mobile for reviews */
@media (max-width: 600px) {
  .reviews-badge {
    flex-direction: column;
    text-align: center;
  }
  .reviews-right {
    text-align: center;
  }
  .review-icons {
    justify-content: center;
  }
}

/* HERO SECTION */
.travel-hero {
  position: relative;
  padding: 4rem 2rem 6rem;
  background: #f7f2ea;
  overflow: hidden;
}

.travel-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* HERO IMAGES + TEXT */
.image1,
.image2 {
  text-align: center;
}

.image1 img,
.image2 img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}

.text {
  text-align: center;
  font-size: 1.1rem;
  color: #5A3A1A;
  margin-top: 0.5rem;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2b1d12;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #6b5a4a;
  margin-bottom: 1.8rem;
}

.hero-btn {
  display: inline-block;
  background: #5a3a1a;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* BADGE ROW AT BOTTOM */
.badge-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2.5rem 1rem;
  max-width: 1200px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2;
}

.badge-item {
  text-align: center;
  padding: 1rem;
}

.badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #eef2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 0.75rem;
}

.badge-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2b1d12;
}

.badge-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b5a4a;
}

/* RIBBON */
.hero-ribbon {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 80px;
  background: linear-gradient(90deg, #ffb36a, #ff7f50, #ffb36a);
  border-radius: 999px;
  transform: rotate(-4deg);
  opacity: 0.35;
  z-index: 1;
}
/* SECTION WRAPPER */
.product-section {
  max-width: 1300px;
  margin: 4rem auto;
  padding: 0 1rem;
  text-align: center;
}

.product-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2b1d12;
  margin-bottom: 2rem;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* PRODUCT CARD */
.product-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.product-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2b1d12;
  margin-bottom: 0.5rem;
}

.product-rating {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.5rem;
}

.product-rating span {
  color: #777;
}

/* PRICE */
.product-price {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.price-current {
  font-weight: 700;
  color: #2b1d12;
  margin-right: 0.4rem;
}

.price-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.4rem;
}

.price-sale {
  color: #d9534f;
  font-weight: 600;
}

/* COLOR SWATCHES */
.color-swatches {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

/* BUTTON */
.product-btn-wrapper {
  margin-top: 2rem;
}

.view-all-btn {
  background: #5a3a1a;
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-all-btn:hover {
  background: #3e2712;
  transform: translateY(-2px);
}



