/* =====================================================
   single-zoo.css — zooplanner.com
   Styles specific to the single zoo page (single-zoo.php).
   Loaded only by single-zoo.php.
   ===================================================== */

/* Nulstil og basis */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
}

header,
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* Galleri fylder hele bredden */
.gallery_top {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

@media (max-width: 1300px) {
  .gallery_top {
    z-index: auto;
  }
}

/* Two-column grid layout — sidebar stays fixed alongside all left content */
.zoo-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 380px);
  grid-template-areas:
    "about   sidebar"
    "info    sidebar"
    "animals sidebar";
  gap: 1.5rem;
  padding: 1rem;
  align-items: start;
}

.zoo-about       { grid-area: about; padding: 1rem; }
.zoo-animals     { grid-area: animals; padding: 1rem; }
.zoo-sidebar     { grid-area: sidebar; position: sticky; top: 100px; }
.zoo-information { grid-area: info; padding: 1rem; }

/* Mobile: single column, sidebar between about and info */
@media (max-width: 900px) {
  .zoo-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "about"
      "sidebar"
      "info"
      "animals";
  }
  .zoo-sidebar { position: static; }
}

.animal-infosection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Ensartet stil for infosections */
.infosection {
  border-radius: 8px;
  max-width: 550px;
  max-height: 620px;
}

.tickets {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (max-width: 768px) {
  .ticket-card {
    max-width: 100%;
    width: 100%;
  }

  .tickets {
    width: 100%;
  }
}

/* Container for infosections */
.info-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

/* Billedrækker */
.image-row,
.image-row-2 {
  flex-wrap: wrap;
}

/* Stil for dyr-sektionen */
.animal-section {
  max-width: 700px;
  padding: 16px;
}

@media (min-width: 1300px) {
  .about-tickets,
  .info-map,
  .animal-infosection {
    display: flex;
    gap: 1rem;
    padding: 1rem;
  }

  .tickets,
  .map {
    margin-left: 0px;
  }

  .tickets {
    margin-top: 0px;
  }
}

/* Responsiv adfærd */
@media (max-width: 1300px) {
  .about-tickets,
  .info-map {
    flex-direction: column;
  }

  .map, .card,
  .infosection {
    box-shadow: none;
    background: none;
    padding: 0;
    border-radius: 0 !important;
  }

  .tickets {
    background: none;
    box-shadow: none;
  }

  .gallery_top {
    width: 100%;
    display: block;
    position: relative;
    z-index: auto;
  }

  .about-tickets {
    display: flex;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  }

  /* Infosection og dyr-sektion layout */
  .animal-infosection {
    flex-direction: column;
  }

  .animal-infosection .infosection {
    order: 1;
  }

  .animal-infosection .animal {
    order: 2;
  }

  .infosection,
  .animal-section {
    margin-left: 0;
    max-width: 100%;
  }

  .info-container {
    order: -1;
  }

  main {
    display: flex;
    flex-direction: column;
  }
}

.fullscreen-gallery-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: none;
  overflow: hidden;
  animation: slideDownOverlay 0.5s ease-out forwards;
}

.fullscreen-gallery-overlay.slide-down {
  animation: slideDownOverlay 0.5s ease-out forwards;
}

.fullscreen-gallery-overlay.slide-up {
  animation: slideUpOverlay 0.5s ease-out forwards;
}

@keyframes slideDownOverlay {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUpOverlay {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.fullscreen-gallery {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
}

.fullscreen-gallery-inner {
  display: flex;
  width: 100%;
  height: calc(100% - 100px);
}

.fullscreen-gallery-sidebar {
  width: 30%;
  height: 1200px;
  margin-top: -40px;
  background: white;
  padding: 40px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.fullscreen-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}

.fullscreen-gallery-thumbnails img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}

.fullscreen-gallery-main {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fullscreen-gallery-main img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 40px;
  cursor: pointer;
  padding: 10px 20px;
  z-index: 2;
}

.nav-arrow.left {
  left: 10px;
}

.nav-arrow.right {
  right: 10px;
}

.menu {
  display: flex;
  gap: 2rem;
  position: sticky;
  top: 0;
  padding: 10px;
  margin: 0 auto;
  z-index: 0;
  justify-content: center;
}

.menu-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #444;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 1px 2px;
  border-radius: 30px;
  transition: all 0.25s ease;
  position: relative;
}

.menu-item .text {
  margin-bottom: 4px;
}

.menu-item .line {
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #000, #555);
  margin-top: 6px;
  transition: width 0.3s ease;
}

.menu-item:hover {
  color: black;
  transform: translateY(-2px);
}

.menu-item:hover .line {
  width: 100%;
}

.feeding-schedule {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.feeding-header {
  background: rgb(0, 0, 0);
  color: white;
  padding: 15px 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.feeding-table {
  width: 100%;
  border-collapse: collapse;
}

.feeding-table thead {
  background: #d3e4cd;
}

.feeding-table th, .feeding-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.feeding-table tbody tr:hover {
  background: #f0fff0;
}

.time {
  font-weight: bold;
  color: rgb(0, 0, 0);
}

.animal {
  font-weight: 600;
}

.feeding-type {
  font-style: italic;
  color: #666;
}

/* ── Experience slider ───────────────────────────── */
.exp-slider-wrap {
  margin-top: 20px;
  overflow-x: clip;
  overflow-y: visible;
}

.exp-slider {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
  padding-right: 48px;
  cursor: grab;
}
.exp-slider:active { cursor: grabbing; }
.exp-slider::-webkit-scrollbar { display: none; }

.experience-card {
    flex: 0 0 calc(100% - 48px);
    display: flex;
    height: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    overflow: hidden;
    margin-bottom: 10px;
    scroll-snap-align: start;
}

.exp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.exp-arrow {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.15s;
}
.exp-arrow:hover { opacity: 0.6; }

.exp-photo-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin: 6px 0 0;
  line-height: 1.3;
}

.exp-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.2s;
  cursor: pointer;
}

.exp-dot.active {
  background: #2a6496;
}

.exp-image {
  flex: 0 0 200px;
  width: 200px;
}

.exp-image img,
.exp-image-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px 0 0 12px;
  display: block;
}

.exp-image-placeholder {
  background: #e8e8e8;
}

.exp-body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.exp-meta {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  color: #222;
  margin-bottom: 12px;
}

.exp-meta strong {
  font-weight: 600;
  color: #111;
  margin-right: 6px;
}

.exp-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 14px;
}

.exp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.exp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.exp-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.exp-section-heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  margin: 14px 0 6px;
}

.exp-section-heading:first-of-type {
  margin-top: 0;
}

.exp-desc {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.65;
  margin: 0;
}

.exp-link {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #fff;
  background: #2a6496;
  text-decoration: none;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.15s;
}
.exp-link:hover {
  background: #1e4f78;
  text-decoration: none;
}

@media (max-width: 768px) {
  .experience-card {
    flex-direction: column;
    height: auto;
    border-radius: 12px;
  }

  .exp-image {
    flex: 0 0 200px;
    width: 100%;
    height: 200px;
  }

  .exp-body {
    overflow: visible;
    padding: 16px;
  }

  .exp-content {
    overflow: visible;
  }
}


/* =========================
   LIGHTBOX FIX (smooth + no scroll bug)
========================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;

  z-index: 999999;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Image */
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
}

/* Close button */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;

  font-size: 40px;
  color: white;
  cursor: pointer;

  z-index: 100000;
  transition: 0.2s;
}

.lightbox-close:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* Prevent background scroll */
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

@media (min-width: 1300px) {
  .lightbox .close {
    position: absolute;
    top: 100px;
    right: 50px;
    color: white;
    font-size: 60px;
    cursor: pointer;
  }
}

@media (max-width: 1300px) {
  .lightbox .close {
    position: absolute;
    top: 160px;
    right: 20px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }

  body.no-scroll,
  html.no-scroll {
    overflow: hidden;
    height: 100%;
    touch-action: none;
  }

  .menu-item {
    color: black;
  }

  .menu-item .line {
    width: 100% !important;
    background: linear-gradient(90deg, #000, #555);
  }
}

/* Mobil overlay */
.mobil-gallery-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 9999;
  transition: right 0.5s ease;
  overflow: hidden;
}

.mobil-gallery-overlay.active {
  right: 0;
}

.mobil-gallery-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: bold;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mobil-gallery-content {
  padding: 12px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.layout {
  display: flex;
  gap: 5px;
}

.layout img {
  width: 100%;
  object-fit: cover;
}

/* Struktur 1 */
.layout-1 img {
  width: 100%;
  height: 220px;
}

/* Struktur 2 */
.layout-2 .big {
  flex: 2;
}

.layout-2 .big img {
  height: 220px;
}

.layout-2 .small-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.layout-2 .small-stack img {
  height: 107px;
}

/* Struktur 3 */
.layout-3 .big {
  flex: 2;
}

.layout-3 .big img {
  height: 220px;
}

.layout-3 .small-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.layout-3 .small-stack img {
  height: 107px;
}

.gallery-overlay {
  cursor: pointer;
}




.back-arrow {
  position: absolute;
  left: 20px;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.back-arrow:hover {
  transform: translateX(-4px);
  opacity: 0.7;
}

/* Fullscreen image viewer */
.image-viewer-overlay {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 10000;
  display: none;
  flex-direction: column;
}

.image-viewer-overlay.active {
  display: flex;
}

.image-viewer-topbar {
  flex-shrink: 0;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.image-viewer-close {
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.image-viewer-close:hover {
  transform: translateX(-4px);
  opacity: 0.8;
}

.image-viewer-counter {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.image-viewer-swiper {
  width: 100%;
  height: calc(100vh - 56px);
}

.image-viewer-swiper .swiper-wrapper {
  height: 100%;
}

.image-viewer-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-viewer-swiper img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  border-radius: 8px;
}

.swiper.mobile-only {
  position: relative;
}

.gallery-overlay-global {
  position: absolute;
  bottom: 50px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  pointer-events: none;
}

/* Inaktive prikker */
.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.8) !important;
  opacity: 1 !important;
  width: 7px;
  height: 7px;
}

/* Aktiv prik */
.swiper-pagination-bullet-active {
  background-color: rgba(168, 214, 140, 0.9) !important;
}

.fullscreen-gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 40px;
}

.fullscreen-gallery-thumbnails .layout {
  display: flex;
  gap: 8px;
}

.fullscreen-gallery-thumbnails img {
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.fullscreen-gallery-thumbnails img:hover {
  transform: scale(1.03);
}

/* Større thumbnails på desktop */
.fullscreen-gallery-thumbnails .layout-1 img {
  height: 280px;
}

.fullscreen-gallery-thumbnails .layout-2 .big img,
.fullscreen-gallery-thumbnails .layout-3 .big img {
  height: 280px;
}

.fullscreen-gallery-thumbnails .layout-2 .small-stack img,
.fullscreen-gallery-thumbnails .layout-3 .small-stack img {
  height: 135px;
}

.fullscreen-gallery-thumbnails .small-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header-title-desktop {
  font-size: 28px;
  font-weight: 700;
}

.animal-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #bbb;
  margin: 6px 0 0;
  line-height: 1.3;
  margin-bottom: 20px;
}


/* =====================================================
   Migrated from zoo.css — single-zoo page styles
   ===================================================== */

/* === STATUS + TABS (section navigation) === */

.status {
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.animal-tabs-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 3px solid #ddd;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.animal-tabs-spacer {
  flex: 1;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 0 0 auto;
}

.animal-tabs-end {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.tab {
  padding: 0.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  color: var(--text);
}

.tab.active {
  color: var(--primary);
}

.tab.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--active-underline);
  border-radius: 3px 3px 0 0;
}

.animal-search-bar {
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  background: #f5f5f7;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  gap: 0.4rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.animal-search-bar:focus-within {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}

.animal-search-icon {
  width: 15px;
  height: 15px;
  color: #999;
  flex-shrink: 0;
  transition: color 0.2s;
}

.animal-search-bar:focus-within .animal-search-icon {
  color: var(--primary);
}

.animal-search-bar input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  color: var(--text);
  width: 140px;
  transition: width 0.25s ease;
}

.animal-search-bar input:focus {
  width: 200px;
}

.animal-search-bar input::placeholder {
  color: #aaa;
}

/* === ANIMAL ICON GALLERY === */

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  max-width: 850px;
  justify-items: center;
}

.gallery-item {
  text-align: center;
  user-select: none;
}

.gallery-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 0.5rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  background-color: white;
}

.gallery-item .name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
}

@media (max-width: 1300px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* Stack animal section + map vertically */
  .animal-infosection {
    flex-direction: column;
    padding: 0.5rem;
  }

  /* Tabs row: remove spacer, make tabs scroll horizontally */
  .animal-tabs-row {
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: none;
    padding-bottom: 0;
  }

  .animal-tabs-spacer {
    display: none;
  }

  .tabs {
    width: 100%;
    overflow-x: auto;
    gap: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ddd;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    justify-content: center;
  }

  .tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  /* Search bar centered below tabs */
  .animal-tabs-end {
    width: 100%;
    justify-content: center;
  }

  .animal-search-bar {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }

  .animal-search-bar input {
    width: 100%;
    flex: 1;
  }

  .animal-search-bar input:focus {
    width: 100%;
  }

  /* Animal grid: 3 columns on mobile */
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 100%;
  }

  .gallery-item img {
    width: 64px;
    height: 64px;
  }

  .gallery-item .name {
    font-size: 0.72rem;
  }

  /* Map full width */
  .infosection {
    max-width: 100%;
    max-height: none;
  }
}

/* === PHOTO GALLERY CONTAINER (desktop grid) === */

.gallery-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 12px;
  align-items: stretch;
}

.main-image {
  flex: 2;
  overflow: hidden;
  box-shadow: 0 7px 22px rgba(0,0,0,0.18);
  height: 543px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbnail-list img {
  width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.14);
  cursor: pointer;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.thumbnail-list img:hover {
  transform: scale(1.05);
}

@media (max-width: 1300px) {
  .gallery-container {
    flex-direction: column;
    max-width: 90vw;
    gap: 15px;
    position: relative;
    box-shadow: none;
    max-width: 100%;
    height: auto;
  }

  .main-image {
    height: 280px;
  }

  .thumbnail-list {
    display: none;
  }

  .card-container {
    float: none !important;
    max-width: 100% !important;
    margin: 16px 0 0 0 !important;
  }
}

/* === LEFT-BIG / RIGHT-STACK (desktop gallery layout) === */



.image-gallery {
  display: flex;
  max-width: 1280px;   /* 🔥 TripAdvisor bredde */
  width: 100%;
  margin: 30px auto;
  gap: 10px;
  align-items: stretch;
}

.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 1300px) {
  .image-gallery {
    flex-direction: row;
    margin-top: 30px;
    height: 500px;
  }
}

/* === GALLERY OVERLAY BUTTON === */

/* === GALLERY OVERLAY (FULL REPLACEMENT) === */

.gallery-overlay {
  position: absolute;
  bottom: 14px;
  right: 14px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 7px 15px;

  border-radius: 999px;

  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);

  color: #fff;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  cursor: pointer;

  transition: all 0.25s ease;

  z-index: 10;
}

/* Hover (kun desktop) */
@media (min-width: 1300px) {
  .gallery-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
  }
}

/* Tekst */
.gallery-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
}

/* Icon */
.gallery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
}

@media (max-width: 768px) {
  main {
    padding-top: 0 !important;
  }

  .gallery_top {
    margin-top: 0 !important;
  }
}

/* Mobil version (lidt mindre + tighter) */
@media (max-width: 1300px) {
  .gallery-overlay {
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
    font-size: 13px;
  }

  .gallery-text {
    font-size: 13px;
  }
}

/* === SWIPER (mobile gallery carousel) === */

@media (max-width: 768px) {
  .swiper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
  }
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.slide6-content {
  max-width: 400px;
  padding: 20px;
  background: #eee;
  border-radius: 8px;
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.swiper-slide-active .slide6-content {
  transform: translateX(0);
  opacity: 1;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  margin-bottom: 50px;
}

@media (min-width: 1300px) {
  .swiper,
  .swiper-wrapper,
  .swiper-slide,
  #gallery-panel,
  .swiper-slide img {
    display: none !important;
  }
}

@media (max-width: 1299px) {
  .swiper,
  .swiper-wrapper,
  .swiper-slide,
  #gallery-panel,
  .swiper-slide img {
    display: block;
  }

}

  @media (max-width: 1299px) {
  .swiper {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* === GALLERY PANEL (mobile full-screen gallery) === */

@media (max-width: 1299px) {
  #gallery-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    display: flex;
    background: white;
    width: 100%;
    height: 85vh;
    z-index: 1000;
    padding: 10px;
    box-sizing: border-box;
    border-top-left-radius: 20px;
    box-shadow: 0 4px 55px -2px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
  }

  #gallery-panel.active {
    transform: translateX(0);
  }

  .gallery-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    width: 100%;
  }
}

.gallery-grid img {
  max-width: 100%;
  max-height: 100%;
}

/* === GALLERY PANEL CONTROLS === */

#close-gallery {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.gallery-title {
  text-align: center;
  width: 100%;
  font-size: 1.2rem;
  margin-top: 12px;
  color: #333;
}

.gallery-header {
  width: 100%;
  border-bottom: 2px solid black;
  margin-bottom: 20px;
}

/* === DESKTOP ONLY / LAYOUT === */

@media (max-width: 1299px) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 1300px) {
  .desktop-only {
    display: block;
  }

  .right-col {
    background-color: #f0f0f0;
    padding: 20px;
    flex: 0 0 30%;
    height: 500px;
  }

  .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 100%;
    gap: 20px;
    padding: 20px;
  }
}

/* === CARD CONTAINER (sidebar cards) === */

.card-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 320px;
  float: right;
  margin-top: -220px;
}

.card-text h3 {
  margin: 0 0 8px;
}

.card-text p {
  margin: 0;
  color: #555;
}

.container-beside {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* === BOOK HERE BUTTON === */

.book-her-button {
  background-color: #D5E8C4;
  color: black;
  padding: 15px 40px;
  width: 280px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

/* === EXPANDABLE DESCRIPTION BOX === */

.fixed-box {
  background-color: #eef6e9;
  padding: 16px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  max-width: 680px;
}

.fixed-box h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.box-text {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fixed-box.expanded .box-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.toggle-button {
  display: block;
  margin-top: 12px;
  border: none;
  padding: 8px 14px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* === SIDE BOXES === */

.side-boxes {
  float: right;
  width: 280px;
  margin-bottom: 100px;
}

.hours,
.tickets {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  padding: 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 0 1px rgba(0,0,0,0.1);
}

.box {
  display: inline-block;
  background-color: white;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  max-width: 100%;
  word-wrap: break-word;
}

/* === TICKET CARD === */

.ticket-card h2 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--primary);
}

.ticket-details {
  grid-template-columns: 1fr 1fr;
  row-gap: 0.75rem;
  column-gap: 1rem;
  font-size: 0.95rem;
  list-style: none;
  padding: 0;
}

.ticket-details li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-details span {
  color: #555;
}

@media (max-width: 1300px) {
  .ticket-details {
    grid-template-columns: 1fr;
  }
}

.ticket-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

.ticket-content {
  flex: 1;
}

.ticket-image {
  flex-shrink: 0;
  width: 300px;
}

.ticket-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* === INFO BOX (popup) === */

.info-box {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
  max-width: 300px;
  position: absolute;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.info-icon {
  color: #c7c7c7;
  cursor: pointer;
  margin-left: 10px;
}

.info-icon:hover {
  color: #555;
}

.info-wrapper {
  position: relative;
  display: inline-block;
}

/* === IMAGE ROW === */

.image-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.image-row-2 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-box {
  position: relative;
  width: 31%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
}

.image-box-2 {
  width: 47%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.image-box img,
.image-box-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-box .text,
.image-box-2 .text {
  position: absolute;
  bottom: -5px;
  width: 100%;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 4px;
  text-align: center;
}

/* === MODERN ACCORDION === */

.accordion {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fcfcfc;
  border: 1px solid #e5e5e5;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
}

/* Hover (kun desktop) */
@media (min-width: 769px) {
  .accordion:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  }
}

/* Header */
.accordion-header {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

/* Arrow (moderne i stedet for + -) */
.accordion-header::after {
  content: "";
  width: 10px;
  height: 10px;

  border-right: 2px solid #666;
  border-bottom: 2px solid #666;

  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow når aktiv */
.accordion.active .accordion-header::after {
  transform: rotate(-135deg);
}

/* Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;

  padding: 0 20px;

  color: #555;
  line-height: 1.5;

  transition: 
    max-height 0.4s ease,
    padding 0.3s ease;
}

/* Aktiv state */
.accordion.active .accordion-content {
  max-height: 500px;
  padding: 0 20px 18px;
}

/* Smooth divider (i stedet for hård border) */
.accordion.active {
  border-color: #dcdcdc;
}

/* === WELFARE SECTION === */

.welfare-section {
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.welfare-header {
  display: flex;
  align-items: center;
  gap: 0.5em;
  position: relative;
  max-width: 300px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #fff5f7 0%, #fff9fa 100%);
  border: 1px solid #ffe4eb;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #000000;
  transition: all 0.2s ease;
}

.welfare-header i {
  font-size: 1.1em;
}

.info-icon {
  color: #c7c7c7 !important;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.info-icon:hover {
  color: #b8b8b8 !important;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .information {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
  }
}

.welfare-info-box {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  right: 0 !important;
  background: #fff !important;
  padding: 18px !important;
  width: 320px !important;
  border: none !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  z-index: 1000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #333 !important;
  box-sizing: border-box !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scale(0.95) !important;
  transition: all 0.25s ease !important;
  pointer-events: none !important;
}

.welfare-info-box.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
}

.welfare-info-box::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 30px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.close-btn {
  position: absolute;
  top: -1px;
  right: 14px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover {
  color: #333;
}

/* === GENBRUG unused.css gallery layout uden at ændre PHP === */

.image-gallery {
  display: flex;
  max-width: 1100px; /* 🔥 mindre igen */
  width: 100%;
  margin: 15px auto;
  gap: 8px;
}

.left-big {
  flex: 2.2;
  height: 420px; /* 🔥 mindre */
  position: relative; /* 🔥 VIGTIG */
}

.left-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.right-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1.1;
}

.right-stack img {
  width: 100%;
  height: 206px; /* 🔥 perfekt match: 206 + 206 + gap = 420 */
  object-fit: cover;
}

/* Øverste højre billede */
.right-stack img:first-child {
  border-top-right-radius: 12px;
}

/* Nederste højre billede */
.right-stack img:last-child {
  border-bottom-right-radius: 12px;
}

.single-zoo-title {
  font-weight: 800;
  margin-top: -100px;
  line-height: 1.2;
  letter-spacing: -0.2px;
  font-size: 45px;
}

@media (max-width: 768px) {
  .single-zoo-title {
    margin-top: -30px !important;
  }

  .about,
  .information {
    flex: 1;
    max-width: none !important;
  }
}

@media (min-width: 769px) {
  .hours,
  .tickets {

  }
}

/* =========================
   GLOBAL FIXES (from chat)
========================= */

/* Typography (Tripadvisor style) */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #222;
}

@media (max-width: 768px) {
  h1 {
    font-size: 30px !important;
    line-height: 1.2;
  }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

h1 { font-size: 45px; }
h2 { font-size: 24px; }
h3 { font-size: 20px; }
h4 { font-size: 17px; }
h5 { font-size: 15px; }
h6 { font-size: 13px; color: #666; }

/* Page container (center fix) */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (max-width: 768px) {
  .page-container {
    padding: 0;
  }
}

/* Layout fix */
.about-tickets,
.info-map,
.animal-infosection {
  max-width: 1120px;
  margin: 0 auto;
  align-items: flex-start;
}

/* Ticket card FIX (border virker nu) */
.ticket-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  padding: 16px;
  margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 300px;
}

/* Remove weird margins */
.card-container {
  float: none;
  margin: 0;
}

/* Gallery fix */
.gallery_top {
  width: 100%;
  display: block;
}

html {
  scroll-behavior: smooth;
}

.map-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 0 1px rgba(0,0,0,0.1);
  overflow: hidden;
}

/* Header */
.map-card h2 {
  padding: 16px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

/* Map */
.map-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.map-pdf-embed {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.map-pdf-download {
  padding: 10px 20px 14px;
  font-size: 0.85rem;
}

.map-pdf-download a {
  color: var(--primary);
  text-decoration: none;
}

.map-pdf-download a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .page-container {
    background: white;
    border-radius: 20px 20px 0 0;
  }
}


@media (max-width: 768px) {
  .swiper {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  /* Prevent ANY horizontal overflow on the page */
  main {
    overflow-x: hidden;
    width: 100%;
  }

  /* Card overlay effect over the gallery */
  .zoo-layout {
    position: relative;
    z-index: 5;
    margin-top: -30px;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 20px 0 0;
    gap: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .zoo-about {
    padding: 0 16px 16px;
    max-width: 100%;
    overflow-x: hidden;
  }

  .zoo-sidebar {
    padding: 16px 16px 0;
    border-top: 1px solid #f0f0f0;
    max-width: 100%;
    overflow-x: hidden;
  }

  .zoo-information {
    padding: 16px 16px 0;
    border-top: 1px solid #f0f0f0;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Override inline max-width: 680px on the information inner section */
  .zoo-information section {
    max-width: 100% !important;
    width: 100%;
  }

  /* About box full width */
  .fixed-box {
    max-width: 100%;
  }

  /* Ticket lists fill full width */
  .tickets-list {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  /* Accordions full width */
  .accordion {
    max-width: 100%;
  }

  /* Animal gallery full width */
  .gallery {
    max-width: 100%;
  }

  /* Animal section padding */
  .animal-infosection {
    padding: 16px;
    overflow-x: hidden;
    max-width: 100%;
  }

  /* Activities slider */
  .exp-slider-wrap {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Paid Experiences heading */
  h2 {
    font-size: 20px !important;
  }

  /* Rating row: smaller on mobile */
  .rating {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 4px;
  }

  /* Welfare section */
  .welfare-info-box {
    width: calc(100vw - 40px);
    transform: none;
    left: 0 !important;
  }
}

@media (max-width: 768px) {
  .gallery_top {
    position: relative;
    z-index: 1;
  }
}

.tickets-list {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px; /* 🔥 VIGTIG */
}

/* spacing mellem de to bokse */
.tickets-list + .tickets-list {
  margin-top: 10px;
}

.tickets-list h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.ticket-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.ticket-item:last-child {
  border-bottom: none;
}

.ticket-season-heading {
  list-style: none;
  padding: 16px 0 4px;
  font-size: 1rem;
  margin-bottom: 12px;
}

.ticket-season-accordion {
  list-style: none;
  margin-top: 12px;
}

.ticket-season-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 0 4px;
  cursor: pointer;
  color: inherit;
  text-align: left;
  font: inherit;
}

.toggle-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ticket-season-toggle.open .toggle-arrow {
  transform: rotate(-135deg);
}

.ticket-season-body {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ticket-season-body.open {
  max-height: 2000px;
}

.currency-selector-wrap {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.currency-selector-label {
  font-size: 0.82rem;
  color: #666;
  white-space: nowrap;
}

.currency-select {
  font-size: 0.82rem;
  padding: 4px 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  color: #374151;
  cursor: pointer;
  appearance: auto;
}

.currency-select:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 1px;
}

.ticket-more-link {
  list-style: none;
  margin-top: 10px;
}

.ticket-more-link a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary, #2a6496);
  text-decoration: none;
  transition: opacity 0.15s;
}

.ticket-more-link a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.facts-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  margin-left: 20px;
}

.facts-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  line-height: 1.6;
  color: #333;
  font-size: 0.95rem;
}

.facts-list li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: #2e7d32;
  font-size: 1.2em;
  line-height: 1.6;
}

.facts-list li:last-child {
  border-bottom: none;
}

.facts-list li a {
  color: inherit;
  text-decoration: none;
}

/* Activities & Experiences */
.activities-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.activity-item {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.activity-item:last-child {
  border-bottom: none;
}

.activity-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}

.activity-name a {
  color: inherit;
  text-decoration: none;
}

.activity-name a:hover {
  text-decoration: underline;
}

.activity-desc {
  font-size: 0.875rem;
  color: #555;
  margin-top: 3px;
  line-height: 1.5;
}

.activity-meta {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  font-size: 0.85rem;
  color: #444;
}

.activity-price,
.activity-age {
  display: flex;
  align-items: center;
  gap: 5px;
}

.activity-price i,
.activity-age i {
  color: #2e7d32;
  font-size: 0.8rem;
}

.powered-by-google {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7rem;
  color: #666;
  font-style: normal;
  vertical-align: middle;
}