        .gallery-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 20px;
            background: #fffdf9;
            border-radius: 20px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }
        .gallery-item {
            background: #fff;
            border-radius: 12px;
            padding: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            text-align: center;
        }
        .gallery-item img {
            max-width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        .gallery-caption {
            margin-top: 10px;
            font-size: 0.95em;
            color: #555;
        }
        .back-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 24px;
            background: linear-gradient(90deg, #b89b74 60%, #e6d3b7 100%);
            color: white;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
        }
        .no-photo-icon {
            font-size: 3em;
            color: #b08a60;
            opacity: 0.7;
            display: block;
            margin: 20px auto;
        }
		.fullscreen-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(248, 237, 227, 0.97);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.fullscreen-modal.active {
  display: flex;
}
.fullscreen-modal img {
  max-width: 95vw;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(175, 150, 110, 0.24);
  background: #fff;
}
.fullscreen-modal .modal-caption {
  color: #5d4632;
  font-size: 1.1em;
  margin-top: 22px;
  text-align: center;
  max-width: 95vw;
}
.fullscreen-modal .close-btn {
  position: absolute;
  top: 28px;
  right: 36px;
  font-size: 2.2em;
  color: #b08a60;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  font-family: Arial, sans-serif;
  opacity: 0.85;
}
.fullscreen-modal .close-btn:hover {
  opacity: 1;
}
.fullscreen-modal .modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(184,155,116,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2em;
  cursor: pointer;
  z-index: 10001;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-modal .modal-arrow.left {
  left: 24px;
}
.fullscreen-modal .modal-arrow.right {
  right: 24px;
}
.fullscreen-modal .modal-arrow:hover {
  background: #e6d3b7;
  opacity: 1;
}