.park-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.park-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
}

.dest-tabs__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: stretch;
}

.dest-tabs__icon {
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 1.75rem);
  line-height: 1;
}

.dest-tabs__label {
  font-size: clamp(.82rem, .74rem + 0.4vw, .9rem);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.dest-tabs__label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background-color .15s ease;
  border-radius: 1px;
}

.dest-tabs__item.active .dest-tabs__label::after,
.dest-tabs__item:hover .dest-tabs__label::after {
  background: var(--accent);
}

.dest-tabs__badge {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: clamp(.5rem, .48rem + 0.1vw, .55rem);
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 7px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .dest-tabs__inner {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .dest-tabs__inner {
    padding: 0 12px;
  }
}

/* Inline variant (inside a section, not sticky) */
.dest-tabs--inline {
  position: relative;
  top: auto;
  z-index: auto;
  border-bottom: 1px solid var(--border, #e5e7e2);
  margin-top: 24px;
  margin-bottom: 32px;
  background: transparent;
  padding: 0;
}

.dest-tabs--inline .dest-tabs__inner {
  max-width: 100%;
  padding: 0;
}

.dest-tabs--inline .dest-tabs__track {
  display: flex;
  justify-content: flex-start;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 4px;
  width: 100%;
}

.dest-tabs--inline .dest-tabs__track::-webkit-scrollbar {
  display: none;
}

.dest-tabs--inline .dest-tabs__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: #555;
  white-space: nowrap;
  position: relative;
  transition: color .15s;
}

.dest-tabs--inline .dest-tabs__item:first-child {
  padding-left: 6px;
}

.dest-tabs--inline .dest-tabs__item:last-child {
  padding-right: 6px;
}

.dest-tabs--inline .dest-tabs__item:hover,
.dest-tabs--inline .dest-tabs__item.active {
  color: var(--accent);
}

.dest-tabs--inline .dest-tabs__label {
  font-size: clamp(.82rem, .74rem + 0.4vw, .9rem);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.dest-tabs--inline .dest-tabs__label::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background-color .15s ease;
  border-radius: 1px;
}

.dest-tabs--inline .dest-tabs__item.active .dest-tabs__label::after,
.dest-tabs--inline .dest-tabs__item:hover .dest-tabs__label::after {
  background: var(--accent);
}

/* ===== DESTINATION GALLERY GRID ===== */
/* 5-col × 2-row; large card = cols 1-2 × rows 1-2; 6 small cards = cols 3-5 × rows 1-2; all 1:1 */
.dest-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.dest-gallery__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
}

.dest-gallery__card picture {
  display: contents;
}

.dest-gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.dest-gallery__card:hover img {
  transform: scale(1.04);
}

.dest-gallery__card--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.dest-gallery__overlay {
  position: absolute;
  inset: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .4) 35%, transparent 70%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.dest-gallery__label {
  font-size: clamp(0.8rem, 0.77rem + 0.1vw, 0.87rem);
  font-weight: 700;
  line-height: 1.3;
}

.dest-gallery__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: clamp(0.6rem, 0.58rem + 0.05vw, 0.65rem);
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 0;
  text-shadow: none;
  opacity: 1;
  letter-spacing: normal;
}

.dest-gallery__tag i {
  font-style: normal;
  font-size: clamp(0.66rem, 0.64rem + 0.05vw, 0.7rem);
}

@media (max-width: 900px) {
  .dest-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .dest-gallery__card--large {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .dest-gallery__card:nth-child(n+7) {
    display: none;
  }
}

@media (max-width: 640px) {
  .dest-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dest-gallery__overlay {
    padding: 16px 16px 18px;
  }

  .dest-gallery__tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ===== REGION TABS (simple underline tabs) ===== */
.region-tabs-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border, #e5e7e2);
}

.region-tabs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, color .2s, border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  margin: 0 !important;
}

.region-tabs__arrow--left {
  left: 0;
}

.region-tabs__arrow--right {
  right: 0;
}

.region-tabs__arrow:hover {
  color: var(--text);
  border-color: #666;
}

.region-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 0;
  width: 100%;
}

.region-tabs::-webkit-scrollbar {
  display: none;
}

.region-tabs__btn {
  background: none;
  border: none;
  padding: 14px 18px;
  font-family: inherit;
  font-size: clamp(.82rem, .74rem + 0.4vw, .9rem);
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.region-tabs__btn:first-child {
  padding-left: 0;
}

.region-tabs__btn:last-child {
  padding-right: 0;
}

.region-tabs__label {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.region-tabs__label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background-color .15s ease;
  border-radius: 1px;
}

.region-tabs__btn.active .region-tabs__label::after,
.region-tabs__btn:hover .region-tabs__label::after {
  background: var(--accent);
}

.region-tabs__btn:hover {
  color: var(--accent);
}

.region-panel {
  display: none;
}

@media (max-width: 640px) {
  .region-tabs__btn {
    padding: 12px 14px;
  }

  .region-tabs {
    padding: 0;
  }

  .region-tabs__arrow {
    width: 30px;
    height: 30px;
  }

  .region-tabs__arrow--left {
    left: 0;
  }

  .region-tabs__arrow--right {
    right: 0;
  }
}

/* ===== ANIMAL INTEREST GALLERY ===== */
.dest-gallery-head,
.animal-gallery-head,
.plp-intro {
  margin-bottom: 24px;
}

.dest-gallery-head h2,
.animal-gallery-head h2,
.plp-intro h2 {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: 4px;
  margin-bottom: 8px;
}

.dest-gallery-head p,
.animal-gallery-head p,
.plp-intro p {
  margin: 8px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(.85rem, .8rem + 0.25vw, .95rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .plp-intro {
    padding: 0 16px;
    margin-bottom: 28px;
  }
}

@media (max-width: 400px) {
  .plp-intro {
    padding: 0 12px;
  }
}

.animal-tabs-wrap {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 28px;
}

.animal-tabs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #555;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, color .2s, border-color .2s, box-shadow .2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  margin: 0 !important;
}

.animal-tabs__arrow--left {
  left: 0;
}

.animal-tabs__arrow--right {
  right: 0;
}

.animal-tabs__arrow:hover {
  color: var(--text);
  border-color: #666;
}

.animal-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  padding: 6px 6px 14px 6px;
  margin-bottom: -8px;
}

.animal-tabs::-webkit-scrollbar {
  display: none;
}

@media (max-width: 640px) {
  .animal-tabs {
    padding: 6px 6px 14px 6px;
    margin-bottom: -8px;
  }

  .animal-tabs__arrow {
    width: 30px;
    height: 30px;
  }

  .animal-tabs__arrow--left {
    left: 0;
  }

  .animal-tabs__arrow--right {
    right: 0;
  }
}

.animal-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: inherit;
  font-size: clamp(.82rem, .74rem + 0.4vw, .9rem);
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}

.animal-tabs__btn i {
  font-style: normal;
  font-size: clamp(.9rem, .87rem + 0.15vw, 1rem);
}

.animal-tabs__btn:hover {
  color: var(--text);
  border-color: #666;
}

.animal-panel {
  display: none;
}

.animal-panel .tg-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.animal-panel .tg-panel-head .arrows {
  margin-left: auto;
}

.animal-gallery__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 5;
  background: #e0e0dc;
}

.animal-gallery__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.animal-gallery__card:hover img {
  transform: scale(1.05);
}

.animal-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, .4) 30%, rgba(0, 0, 0, .1) 62%, transparent 100%);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
}

.animal-gallery__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: clamp(0.6rem, 0.58rem + 0.05vw, 0.65rem);
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 0;
  text-shadow: none;
  opacity: 1;
  letter-spacing: normal;
}

.animal-gallery__tag i {
  font-style: normal;
  font-size: clamp(0.66rem, 0.64rem + 0.05vw, 0.7rem);
}

.animal-gallery__label {
  font-size: clamp(0.8rem, 0.77rem + 0.1vw, 0.87rem);
  font-weight: 700;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .animal-tabs__btn {
    padding: 8px 14px;
  }

  .animal-gallery__tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Destination cards (PLP slider) */
.park-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
  display: flex;
  flex-direction: column;
}

.park-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.park-card__media picture {
  display: contents;
}

.park-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.park-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.park-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.park-card__head h3 {
  margin: 0;
  font-size: clamp(.94rem, .89rem + 0.25vw, 1.05rem);
  font-weight: 700;
}

.park-card__chevron {
  color: var(--muted);
  font-size: clamp(.9rem, .86rem + 0.2vw, 1rem);
}

.park-card__desc {
  margin: 0;
  font-size: clamp(.8rem, .77rem + 0.15vw, .9rem);
  line-height: 1.6;
  color: var(--muted);
  overflow: hidden;
}

.park-card__divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.park-card__meta {
  display: grid;
  gap: 8px;
}

.park-card__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(.73rem, .7rem + 0.15vw, .82rem);
  color: var(--text);
}

.park-card__meta-item i {
  font-style: normal;
  font-size: clamp(.85rem, .8rem + 0.25vw, .95rem);
  color: var(--accent);
}

.park-card__meta-item strong {
  font-weight: 600;
  font-size: clamp(.63rem, .6rem + 0.15vw, .7rem);
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--muted);
  margin-right: 6px;
}

.park-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.park-card__chip {
  background: #fde6cf;
  color: #8a4b1a;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: clamp(.67rem, .64rem + 0.15vw, .75rem);
  font-weight: 500;
}

/* ===== STATE-WISE DETAILED GUIDE ===== */
#state-wise-detailed-guide .section-intro {
  max-width: 820px;
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.7;
}

.guide-card .park-card__body {
  padding: 22px 22px 24px;
  gap: 12px;
  height: 100%;
}

.guide-card .park-card__body h3 {
  margin: 0;
  font-size: clamp(.98rem, .93rem + 0.25vw, 1.1rem);
  font-weight: 700;
  color: var(--text);
}

.guide-card .park-card__desc {
  font-size: clamp(.82rem, .78rem + 0.2vw, .92rem);
  line-height: 1.7;
}

.why-us-grid.why-us-grid--cols3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .why-us-grid.why-us-grid--cols3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-us-grid.why-us-grid--cols3 {
    grid-template-columns: 1fr;
  }
}

/* ===== AUDITED PLP OVERRIDES (extracted from global.css) ===== */
.dest-tabs {
  background: #fff;
  border-bottom: 1px solid var(--border, #e5e7e2);
  position: relative;
  z-index: 10;
  width: 100%;
  margin-bottom: 40px;
}

.dest-tabs .dest-tabs__inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  position: relative;
}

.dest-tabs__track {
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  align-items: center;
  padding: 0;
  width: 100%;
}

.dest-tabs__track::-webkit-scrollbar {
  display: none;
}

.dest-tabs__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 18px;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  color: #555;
  white-space: nowrap;
  position: relative;
  transition: color .15s;
}

.dest-tabs__item:first-child {
  padding-left: 0;
}

.dest-tabs__item:last-child {
  padding-right: 0;
}

.dest-tabs__item:hover {
  color: var(--accent);
}

.dest-tabs__item.active {
  color: var(--accent);
  border-bottom: none;
}

.dest-tabs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  font-size: clamp(.85rem, .81rem + 0.18vw, .95rem);
  opacity: 0;
  pointer-events: none;
  transition: border-color .2s, color .2s, box-shadow .2s, opacity .2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  margin: 0 !important;
}

.dest-tabs__arrow--left {
  left: 0;
}

.dest-tabs__arrow--right {
  right: 0;
}

.dest-tabs__arrow:hover {
  border-color: #999;
  color: var(--accent);
}

@media (max-width: 900px) {
  .dest-tabs__item {
    padding: 12px 14px;
  }

  .dest-tabs--inline .dest-tabs__item {
    padding: 8px 12px;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .dest-tabs {
    padding: 0 16px;
    margin-bottom: 28px;
  }

  .dest-tabs--inline {
    padding: 0;
    margin-top: 20px;
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .dest-tabs {
    padding: 0 16px;
    margin-bottom: 24px;
  }

  .dest-tabs--inline {
    padding: 0;
    margin-top: 18px;
    margin-bottom: 20px;
  }

  .dest-tabs__track {
    padding: 0;
  }

  .dest-tabs__item {
    padding: 10px 10px;
    gap: 4px;
  }

  .dest-tabs--inline .dest-tabs__inner {
    padding: 0;
  }

  .dest-tabs--inline .dest-tabs__track {
    padding: 0 2px;
    gap: 2px;
  }

  .dest-tabs--inline .dest-tabs__item {
    padding: 8px 10px;
    gap: 4px;
  }

  .dest-tabs--inline .dest-tabs__item:first-child {
    padding-left: 4px;
  }

  .dest-tabs--inline .dest-tabs__item:last-child {
    padding-right: 4px;
  }

  .dest-tabs--inline .dest-tabs__label {
    font-size: clamp(0.78rem, 0.74rem + 0.15vw, 0.84rem);
    padding-bottom: 2px;
  }

  .dest-tabs__arrow {
    width: 30px;
    height: 30px;
  }

  .dest-tabs__arrow--left {
    left: 0;
  }

  .dest-tabs__arrow--right {
    right: 0;
  }
}

@media (max-width: 400px) {
  .dest-tabs {
    padding: 0 12px;
  }

  .dest-tabs--inline {
    padding: 0;
  }
}

.region-tabs__btn.active {
  color: var(--accent);
  border-bottom: none;
  font-weight: 600;
}

.region-panel.active {
  display: grid;
}

.animal-tabs__btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.animal-panel.active {
  display: block;
}

/* Animal cards as horizontal slider items */
.slider-track.cols-4>.animal-gallery__card {
  min-width: calc(25% - 12px);
  max-width: calc(25% - 12px);
  flex: 0 0 calc(25% - 12px);
}

.slider-track.cols-3>.animal-gallery__card {
  min-width: calc(33.333% - 11px);
  max-width: calc(33.333% - 11px);
  flex: 0 0 calc(33.333% - 11px);
}

@media (max-width: 900px) {

  .slider-track.cols-4>.animal-gallery__card,
  .slider-track.cols-3>.animal-gallery__card,
  .slider-track.cols-4>.park-card,
  .slider-track.cols-3>.park-card {
    min-width: calc(50% - 8px);
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 640px) {

  .slider-track.cols-4>.animal-gallery__card,
  .slider-track.cols-3>.animal-gallery__card,
  .slider-track.cols-4>.park-card,
  .slider-track.cols-3>.park-card {
    min-width: 78%;
    max-width: 78%;
    flex: 0 0 78%;
  }
}

/* Card header and text links */
.park-card__head h3 a {
  color: inherit;
  text-decoration: none;
  transition: color .15s ease;
}

.park-card__head h3 a:hover {
  color: var(--accent);
}

.park-card__chevron {
  color: var(--muted);
  font-size: clamp(.9rem, .86rem + 0.2vw, 1rem);
}

.park-card__readmore-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--accent);
  /* Solid orange accent */
  color: #ffffff !important;
  font-size: clamp(.67rem, .64rem + 0.15vw, .75rem);
  /* Matches the chips' size */
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  cursor: pointer;
}

.park-card__readmore-btn:hover {
  background: #d55f00;
  /* Darker orange */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}

.park-card__readmore-btn .read-prefix {
  display: inline-block;
  width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
}

.park-card__readmore-btn i {
  font-style: normal;
  font-size: clamp(.73rem, .7rem + 0.15vw, .82rem);
  margin-left: 4px;
  transition: transform .25s ease;
}

.park-card__readmore-btn:hover i {
  transform: translate(2px, -2px);
}

.guide-card .park-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guide-card .park-card__readmore-btn {
  align-self: flex-end;
  margin-top: auto;
}

/* ===== PARK CARD COLLAPSE/EXPAND & DETAILS ===== */
.park-card__details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, margin-top 0.35s ease, margin-bottom 0.35s ease;
  margin-top: 0;
  margin-bottom: -10px;
}

.park-card.expanded .park-card__details {
  max-height: 500px;
  opacity: 1;
  margin-top: 16px;
  margin-bottom: 0;
}

.park-card__chevron i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.park-card.expanded .park-card__chevron i {
  transform: rotate(180deg);
}

/* ===== RIGHT ALIGNED READ MORE LINK ===== */
.park-card__readmore-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
  /* Pushes the button wrapper to the bottom of the card body */
  width: 100%;
  padding-top: 12px;
}

.park-card__readmore-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--accent) !important;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.park-card__readmore-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  width: calc(100% - 16px);
  transition: width 0.2s ease;
}

.park-card__readmore-link:hover::after {
  width: 100%;
}

.park-card__readmore-link:hover {
  color: #d55f00 !important;
}

.park-card__readmore-link i {
  font-size: 0.85em;
  font-style: normal;
  transition: transform 0.2s ease;
  display: inline-block;
}

.park-card__readmore-link:hover i {
  transform: translateX(3px);
}

/* ===== ANIMAL SVG ICONS ===== */
.animal-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2px;
}

.animal-tabs__btn.active .animal-svg {
  stroke: #ffffff;
}

/* ===== GUIDE CARD COLLAPSE/EXPAND ===== */
.guide-card .park-card__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 4.8em;
  /* 3 lines at 1.6 line-height */
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}


.park-card.expanded.guide-card .park-card__desc,
#detailed-guide .guide-card .park-card__desc {
  display: block;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

/* ===== PLP HERO SECTION HEIGHT FIX ===== */
.hero--plp {
  height: 100vh !important;
  min-height: 640px !important;
}

@media (max-width: 768px) {
  .hero--plp {
    height: auto !important;
    min-height: 580px !important;
  }
}

/* ===== PROMINENT VIEW ALL BUTTON ===== */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff !important;
  font-size: clamp(0.88rem, 0.84rem + 0.15vw, 0.95rem);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(243, 112, 2, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.view-all-btn:hover {
  background: #d96200;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(243, 112, 2, 0.38);
}

.view-all-btn i {
  font-style: normal;
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.view-all-btn:hover i {
  transform: translateX(3px);
}