.category-hero-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.category-hero-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.category-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 78, 27, 0.5); /* #184E1B80 */
  z-index: 1;
}

.category-hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 1rem;
  z-index: 2; /* Above overlay */
  width: 80%;
}

.category-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.category-bold {
  font-weight: 700;
}











/* Wrapper Styles */
.accomcat-type-section {
  background-color: #f5ebdb;
}

.accomcat-type-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}

/* Header Flex */
.accomcat-type-header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 60px 60px;
}

.accomcat-type-title-container {
  height: 60px;
  border-bottom: 1px solid #5d4037;
}

.accomcat-type-title {
  font-size: 30px;
  font-weight: 600;
  color: #5d4037;
  margin: 0;
  font-family: 'Playfair Display';
}

.accomcat-type-filters {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.accomcat-filter-btn {
  background-color: #3a2d2d;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.accomcat-type-grid-container {
  max-width: 94vw;
  margin: 0 auto;
}
/* Grid */
.accomcat-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.833vw, 1fr));
  gap: 20px;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .accomcat-type-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.accomcat-type-grid a:nth-child(n+9) {
  display: none;
}

/* Cards */
.accomcat-type-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease;
}

.accomcat-type-card:hover {
  transform: scale(1.02);
}

.accomcat-type-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.accomcat-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
  z-index: 2;
}

/* Label */
.accomcat-type-label {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 15px;
  font-weight: 500;
  font-size: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin: 0 auto 44px;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
}

.accomcat-filter-tag {
  display: flex;
  align-items: center;
  background-color: #3a2d2d;
  color: white;
  border-radius: 20px;
  padding: 6px 10px 6px 14px;
  font-size: 14px;
}

.accomcat-filter-label {
  margin-right: 6px;
}

.accomcat-filter-remove {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}















/* Wrapper Styles */
.accomexp-type-section {
  background-color: #f5ebdb;
}

/* Remove max-width from container */
.accomexp-type-container {
  /* max-width: 1200px; */
  /* margin: 0 auto; */
}

/* Header */
.accomexp-type-header {
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 60px 60px;
}

/* Title Container with underline */
.accomexp-type-title-container {
  height: 60px;
  border-bottom: 1px solid #5d4037;
}

/* Title */
.accomexp-type-title {
  font-size: 30px;
  font-weight: 600;
  color: #5d4037;
  margin: 0;
}

/* Optional Filters (currently hidden) */
.accomexp-type-filters {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.accomexp-filter-btn {
  background-color: #3a2d2d;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Grid Container */
.accomexp-type-grid-container {
  max-width: 94vw;
  margin: 0 auto;
}

/* Grid */
.accomexp-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20.833vw, 1fr));
  gap: 20px;
  padding: 60px 20px;
}

@media (max-width: 768px) {
  .accomexp-type-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

.accomexp-type-grid a:nth-child(n+9) {
  display: none;
}

/* Cards */
.accomexp-type-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: white;
  background-color: #ccc;
  transition: transform 0.3s ease;
}

.accomexp-type-card:hover {
  transform: scale(1.02);
}

/* Image */
.accomexp-type-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.accomexp-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
  z-index: 2;
}

/* Label */
.accomexp-type-label {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 15px;
  font-weight: 500;
  font-size: 20px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  margin: 0 auto 44px;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
}



















.section-accommodations {
  background-color: #FFF;
  /* padding: 2rem 1rem; */
}

.accom-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.accom-heading h2 {
  font-size: 2rem;
  color: #4C2E28;
}

.underline {
  width: 60%;
  margin: 0 auto;
  border: 1px solid #4C2E28;
}

.accom-cards-wrapper {
  background-color: #4C2E28;
  padding: 2rem 1rem;
}

.accom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.accom-card {
  background-color: #A58574;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: white;
}

.accom-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #5D4037B2;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: white;
}

.wishlist-heart {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0;
}

.wishlist-heart:hover {
  background: rgba(0, 0, 0, 0.5);
}

.wishlist-heart svg {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.wishlist-heart.active svg {
  fill: #e63946;
  stroke: #e63946;
  animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(0.95); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.accom-info {
  padding: 1rem;
}

.accom-info h3 {
  margin: 0 0 5px;
  font-size: 1.2rem;
}

.accom-info .sub {
  font-size: 0.9rem;
  opacity: 0.9;
}

.excerpt {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  margin-bottom: 0px;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  /* margin-top: 5px; */
  color: white;
}

.btn-reserve {
  display: inline-block;
  margin-top: 10px;
  background: #4C2E28;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
}
