/* =====================================================================
   微笑山妍 Beautiful Camping — refined user theme
   Scoped to body.user-theme so admin views remain unaffected.
   Designed as a layer on top of Bootstrap 3 + signin.css.
   ===================================================================== */

body.user-theme {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", "Helvetica Neue",
    Arial, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #2f3a32;
  background-color: #f6f4ee;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(122, 161, 119, 0.08) 0, transparent 45%),
    radial-gradient(circle at 100% 100%, rgba(212, 188, 140, 0.10) 0, transparent 45%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.user-theme h1,
body.user-theme h2,
body.user-theme h3,
body.user-theme h4,
body.user-theme h5,
body.user-theme h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    "PingFang TC", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1f3a2b;
}

/* ---------- Navbar ---------- */
body.user-theme .navbar-default {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(31, 58, 43, 0.06);
}

body.user-theme .navbar-default .navbar-nav > li > a {
  color: #2f3a32 !important;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s ease, background-color 0.2s ease;
}

body.user-theme .navbar-default .navbar-nav > li > a:hover,
body.user-theme .navbar-default .navbar-nav > li > a:focus {
  color: #2c6a3f !important;
  background-color: rgba(122, 161, 119, 0.08);
}

body.user-theme .theme-toggle-item {
  padding: 0;
}

body.user-theme .theme-mode-toggle .glyphicon {
  margin-right: 5px;
}

body.user-theme .navbar-default .navbar-nav > .active > a,
body.user-theme .navbar-default .navbar-nav > .active > a:hover,
body.user-theme .navbar-default .navbar-nav > .active > a:focus {
  color: #fff !important;
  background-color: #2c6a3f;
  border-radius: 4px;
  margin: 18px 4px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

body.user-theme .navbar-brand img.brand {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

body.user-theme .dropdown-menu {
  border: none;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(31, 58, 43, 0.12);
  padding: 6px 0;
}

body.user-theme .dropdown-menu > li > a {
  padding: 8px 18px;
  color: #2f3a32;
  transition: background-color 0.15s ease;
}

body.user-theme .dropdown-menu > li > a:hover,
body.user-theme .dropdown-menu > li > a:focus {
  background-color: #f1f5ee;
  color: #2c6a3f;
}

/* ---------- Page header / breadcrumb ---------- */
body.user-theme .page-header {
  border-bottom: none;
  margin-top: 90px;
  margin-bottom: 24px;
  padding-bottom: 0;
}

body.user-theme .breadcrumb {
  background-color: transparent;
  padding: 8px 0;
  margin-bottom: 0;
  font-size: 13px;
  color: #7a8479;
}

body.user-theme .breadcrumb > li + li:before {
  color: #b9c2b5;
  content: "›";
  padding: 0 6px;
}

body.user-theme .breadcrumb a {
  color: #5a8e63;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.user-theme .breadcrumb a:hover {
  color: #2c6a3f;
  text-decoration: underline;
}

body.user-theme .breadcrumb .active {
  color: #2f3a32;
  font-weight: 500;
}

/* ---------- Panels (cards) ---------- */
body.user-theme .panel {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(31, 58, 43, 0.07);
  background-color: #ffffff;
  overflow: hidden;
  margin-bottom: 24px;
}

body.user-theme .panel-heading {
  border: none;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
}

body.user-theme .panel-body {
  padding: 22px 20px;
}

body.user-theme .panel-success {
  border: none;
}

body.user-theme .panel-success > .panel-heading {
  background: linear-gradient(135deg, #4f8a5a 0%, #2c6a3f 100%);
  color: #ffffff;
  border: none;
}

body.user-theme .panel-default > .panel-heading {
  background: linear-gradient(135deg, #f1ede2 0%, #e8e2d2 100%);
  color: #3b4a3f;
  border: none;
}

/* nested panels lose extra shadow stacking */
body.user-theme .panel .panel {
  box-shadow: 0 1px 6px rgba(31, 58, 43, 0.06);
}

/* ---------- Buttons ---------- */
body.user-theme .btn {
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  transition: all 0.18s ease;
  border-width: 1px;
}

body.user-theme .btn:focus,
body.user-theme .btn:active:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(122, 161, 119, 0.25);
}

body.user-theme .btn-default {
  background-color: #ffffff;
  border-color: #d6d2c4;
  color: #3b4a3f;
}

body.user-theme .btn-default:hover,
body.user-theme .btn-default:focus {
  background-color: #f5f2e9;
  border-color: #b9b1a0;
  color: #2c6a3f;
}

body.user-theme .theme-mode-toggle {
  cursor: pointer;
}

body.user-theme .theme-mode-toggle:hover,
body.user-theme .theme-mode-toggle:focus {
  text-decoration: none;
}

body.user-theme .btn-success,
body.user-theme .btn-primary {
  background: linear-gradient(135deg, #4f8a5a 0%, #2c6a3f 100%);
  border-color: #2c6a3f;
  color: #fff;
}

body.user-theme .btn-success:hover,
body.user-theme .btn-primary:hover {
  background: linear-gradient(135deg, #5a9a66 0%, #34794a 100%);
  border-color: #34794a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 106, 63, 0.25);
}

body.user-theme .btn-info {
  background: linear-gradient(135deg, #6ba0c4 0%, #4d80a7 100%);
  border-color: #4d80a7;
  color: #fff;
}

body.user-theme .btn-info:hover {
  background: linear-gradient(135deg, #7ab0d4 0%, #5b91b8 100%);
  border-color: #5b91b8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(77, 128, 167, 0.25);
}

body.user-theme .btn-danger {
  background: linear-gradient(135deg, #c75c5c 0%, #a84747 100%);
  border-color: #a84747;
  color: #fff;
}

body.user-theme .btn-danger:hover {
  background: linear-gradient(135deg, #d46c6c 0%, #b85757 100%);
  border-color: #b85757;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(168, 71, 71, 0.25);
}

body.user-theme .btn-warning {
  background: linear-gradient(135deg, #d8a85a 0%, #b88a3a 100%);
  border-color: #b88a3a;
  color: #fff;
}

body.user-theme .btn-warning:hover {
  background: linear-gradient(135deg, #e2b46a 0%, #c89a4a 100%);
  border-color: #c89a4a;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 138, 58, 0.25);
}

/* ---------- Forms ---------- */
body.user-theme .form-control {
  border: 1px solid #d6d2c4;
  border-radius: 6px;
  box-shadow: none;
  padding: 8px 12px;
  height: 40px;
  background-color: #fefdfa;
  transition: border-color 0.18s ease, box-shadow 0.18s ease,
    background-color 0.18s ease;
}

body.user-theme .form-control:focus {
  border-color: #7aa177;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(122, 161, 119, 0.18);
}

body.user-theme textarea.form-control {
  height: auto;
  min-height: 90px;
}

body.user-theme .control-label {
  color: #3b4a3f;
  font-weight: 500;
}

/* ---------- Alerts ---------- */
body.user-theme .alert {
  border: none;
  border-radius: 8px;
  border-left: 4px solid transparent;
  padding: 14px 18px;
  box-shadow: 0 1px 4px rgba(31, 58, 43, 0.05);
}

body.user-theme .alert-info {
  background-color: #eaf2f7;
  color: #2f5b76;
  border-left-color: #6ba0c4;
}

body.user-theme .alert-success {
  background-color: #ecf4ee;
  color: #2c6a3f;
  border-left-color: #4f8a5a;
}

body.user-theme .alert-warning {
  background-color: #fbf3e1;
  color: #8a6a2a;
  border-left-color: #d8a85a;
}

body.user-theme .alert-danger {
  background-color: #f7ebeb;
  color: #8e3a3a;
  border-left-color: #c75c5c;
}

/* ---------- Tables ---------- */
body.user-theme .table {
  background-color: transparent;
  border-collapse: separate;
  border-spacing: 0;
}

body.user-theme .table > thead > tr > th {
  border-bottom: 2px solid #e0dccd;
  background-color: #f7f4ec;
  color: #3b4a3f;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 14px;
}

body.user-theme .table > tbody > tr > td,
body.user-theme .table > tbody > tr > th {
  border-top: 1px solid #ece8db;
  padding: 12px 14px;
  vertical-align: middle;
}

body.user-theme .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(247, 244, 236, 0.55);
}

body.user-theme .table-bordered {
  border: 1px solid #ece8db;
  border-radius: 6px;
  overflow: hidden;
}

body.user-theme .table-hover > tbody > tr:hover {
  background-color: #f1f5ee;
}

/* ---------- Labels / badges ---------- */
body.user-theme .label-primary {
  background-color: #2c6a3f;
  border-radius: 4px;
  padding: 4px 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---------- List groups inside panels ---------- */
body.user-theme .list-group {
  margin-bottom: 0;
}

body.user-theme .list-group-item {
  border: none;
  border-bottom: 1px solid #ece8db;
  padding: 14px 4px;
  background-color: transparent;
}

body.user-theme .list-group-item:last-child {
  border-bottom: none;
}

body.user-theme .list-group-item strong {
  color: #2c6a3f;
  font-size: 15px;
}

body.user-theme .list-group-item ul {
  margin-top: 6px;
  margin-bottom: 0;
  padding-left: 22px;
  color: #5a6358;
}

body.user-theme .list-group-item ul li {
  padding: 2px 0;
}

/* ---------- Images inside panels ---------- */
body.user-theme .panel-body .img-responsive {
  border-radius: 6px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
body.user-theme .site-footer {
  margin-top: 60px;
  padding: 30px 15px 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(31, 58, 43, 0.08);
  color: #5a6358;
  font-size: 13px;
}

body.user-theme .site-footer a {
  color: #2c6a3f;
}

body.user-theme .site-footer .footer-brand {
  font-weight: 600;
  color: #2c6a3f;
  letter-spacing: 0.05em;
}

body.user-theme .site-footer .footer-line {
  margin: 4px 0;
}

body.user-theme .site-footer .label-primary {
  display: inline-block;
  margin-bottom: 6px;
}

/* ---------- Booking page ---------- */
body.user-theme .booking-page {
  padding-bottom: 40px;
}

body.user-theme .booking-intro {
  max-width: 720px;
  margin: 0 auto 22px;
  text-align: center;
}

body.user-theme .booking-intro h2 {
  margin: 8px 0 10px;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
  color: #1f3a2b;
}

body.user-theme .booking-intro p {
  margin: 0;
  color: #5a6358;
}

body.user-theme .booking-window {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background-color: #fff5e1;
  color: #7a4a10;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(216, 168, 90, 0.18);
}

body.user-theme .booking-window {
  display: flex;
  width: fit-content;
}

body.user-theme .booking-window__label {
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.user-theme .booking-window__range {
  font-variant-numeric: tabular-nums;
}

/* ---------- Calendar tweaks (fullcalendar) ---------- */
body.user-theme #calendar {
  margin-top: 6px;
  padding: 26px 24px 22px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 28px rgba(31, 58, 43, 0.10);
}

body.user-theme #calendar .fc-toolbar {
  margin-bottom: 18px;
}

body.user-theme #calendar .fc-toolbar h2 {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 700;
  color: #1f3a2b;
  letter-spacing: 0;
}

body.user-theme #calendar .fc button {
  height: auto;
  padding: 7px 14px;
  border: 1px solid #d6cdb4;
  border-radius: 6px;
  background: #fffdf8;
  background-image: none;
  box-shadow: none;
  color: #2c6a3f;
  font-weight: 600;
  text-shadow: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

body.user-theme #calendar .fc button:hover,
body.user-theme #calendar .fc button:focus {
  background: #f5efdc;
  border-color: #c8a85f;
  color: #2c6a3f;
  outline: none;
}

body.user-theme #calendar .fc button:active,
body.user-theme #calendar .fc-state-active,
body.user-theme #calendar .fc-state-down {
  background: #2c6a3f;
  border-color: #285a35;
  color: #ffffff;
  box-shadow: none;
}

body.user-theme #calendar .fc-state-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

body.user-theme #calendar .fc-button-group > * {
  margin: 0 4px 0 0;
}

body.user-theme #calendar .fc-button-group > :last-child {
  margin-right: 0;
}

body.user-theme #calendar .fc-icon:after {
  color: #2c6a3f;
  font-weight: 700;
}

body.user-theme #calendar .fc-day-header {
  padding: 10px 0;
  border-color: transparent;
  background-color: #f7f4ec;
  color: #2c6a3f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.user-theme #calendar .fc-unthemed th,
body.user-theme #calendar .fc-unthemed td,
body.user-theme #calendar .fc-unthemed thead,
body.user-theme #calendar .fc-unthemed tbody,
body.user-theme #calendar .fc-unthemed .fc-row,
body.user-theme #calendar .fc-unthemed .fc-divider,
body.user-theme #calendar .fc-unthemed .fc-popover {
  border-color: #ece8db;
}

body.user-theme #calendar .fc-day-number {
  padding: 8px 10px 4px;
  color: #3b4a3f;
  font-weight: 600;
}

body.user-theme #calendar .fc-other-month {
  background-color: #fafaf5;
}

body.user-theme #calendar .fc-other-month .fc-day-number {
  color: #b6bdb1;
}

body.user-theme #calendar .fc-unthemed .fc-today {
  background-color: rgba(122, 161, 119, 0.14);
}

body.user-theme #calendar .fc-today .fc-day-number {
  color: #2c6a3f;
}

body.user-theme #calendar .fc-event,
body.user-theme #calendar .fc-event-dot {
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(216, 168, 90, 0.22);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

body.user-theme #calendar .fc-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(216, 168, 90, 0.3);
}

body.user-theme #calendar .fc-event .fc-content {
  white-space: normal;
}

body.user-theme #calendar .booking-event {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  width: 100%;
  white-space: nowrap;
}

body.user-theme #calendar .booking-event__count {
  font-size: 14px;
  font-weight: 800;
}

body.user-theme #calendar .fc-day-grid-event {
  margin: 2px 4px 0;
}

/* ---------- Misc ---------- */
body.user-theme .text-center .btn + .btn {
  margin-left: 6px;
}

body.user-theme #loading {
  text-align: center;
  padding: 12px;
  color: #5a6358;
  font-style: italic;
}

/* ---------- Camping homepage ---------- */
body.user-theme .home-hero {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1170px;
  min-height: 480px;
  margin: 92px auto 0;
  overflow: hidden;
  border-radius: 8px;
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(31, 58, 43, 0.12);
}

body.user-theme .home-hero__media,
body.user-theme .home-hero__overlay {
  position: absolute;
  inset: 0;
}

body.user-theme .home-hero__media {
  background-image: url("../images/home/hero-camping2.jpg");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

body.user-theme .home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(19, 38, 27, 0.82) 0%, rgba(19, 38, 27, 0.58) 40%, rgba(19, 38, 27, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 27, 20, 0.48) 0%, rgba(16, 27, 20, 0.04) 45%);
}

body.user-theme .home-hero .container {
  position: relative;
  width: 100%;
  min-height: 480px;
}

body.user-theme .home-hero__content {
  max-width: 560px;
  padding-top: 110px;
}

body.user-theme .home-hero__eyebrow,
body.user-theme .home-section-title span,
body.user-theme .home-kicker {
  display: inline-block;
  color: #d8a85a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.user-theme .home-hero h1 {
  margin: 12px 0 16px;
  color: #ffffff;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: 0;
}

body.user-theme .home-hero p {
  max-width: 470px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

body.user-theme .home-hero__actions .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

body.user-theme .home-hero__actions .btn-default {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

body.user-theme .home-hero__actions .btn-default:hover,
body.user-theme .home-hero__actions .btn-default:focus {
  background-color: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.66);
  color: #ffffff;
}

body.user-theme .home-page .page-header {
  margin-top: 22px;
}

body.user-theme .home-section-title {
  max-width: 720px;
  margin: 8px auto 24px;
  text-align: center;
}

body.user-theme .home-section-title h2 {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.user-theme .home-feature-grid {
  margin-bottom: 30px;
}

body.user-theme .home-feature-card {
  height: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 8px 28px rgba(31, 58, 43, 0.10);
}

body.user-theme .home-feature-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

body.user-theme .home-feature-card__body {
  padding: 20px 20px 22px;
}

body.user-theme .home-feature-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: 0;
}

body.user-theme .home-feature-card p {
  margin-bottom: 0;
  color: #5a6358;
}

body.user-theme .home-map-panel .panel-body {
  padding: 0;
}

body.user-theme .home-map-panel .row {
  margin-left: 0;
  margin-right: 0;
}

body.user-theme .home-map-panel [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

body.user-theme .home-map-image {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: 0;
  object-fit: contain;
  background-color: #f7f4ec;
}

body.user-theme .home-map-hotspot-wrap {
  position: relative;
}

body.user-theme .home-map-hotspot-layer {
  position: absolute;
  inset: 0;
}

body.user-theme .home-map-hotspot {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-radius: 50%;
  background: #2f8f45;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.user-theme .home-map-hotspot:hover,
body.user-theme .home-map-hotspot:focus {
  transform: translate(-50%, -50%) scale(1.14);
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.35);
  outline: none;
}

body.user-theme .home-map-hotspot:after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(47, 143, 69, 0.42);
}

body.user-theme .home-map-photo-modal .modal-body {
  text-align: center;
}

body.user-theme .home-map-photo-modal__image {
  margin: 0 auto;
  max-height: 70vh;
}

body.user-theme .home-map-photo-modal__caption {
  margin: 12px 0 0;
  color: #4b5347;
}

body.user-theme .home-map-photo-modal__thumbs {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

body.user-theme .home-map-photo-thumb {
  width: 72px;
  height: 54px;
  border: 2px solid #d5dfd0;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

body.user-theme .home-map-photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.user-theme .home-map-photo-thumb.is-active {
  border-color: #2f8f45;
}

body.user-theme .home-map-photo-modal__disclaimer {
  margin: 12px 0 0;
  font-size: 13px;
  color: #6e776a;
}

body.user-theme .home-intro-copy {
  padding: 38px 34px 30px;
}

body.user-theme .home-intro-copy h2 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.user-theme .home-intro-copy p {
  color: #5a6358;
}

body.user-theme .home-check-list {
  margin: 18px 0 24px;
  padding-left: 0;
  list-style: none;
}

body.user-theme .home-check-list li {
  position: relative;
  padding: 6px 0 6px 28px;
  color: #3b4a3f;
}

body.user-theme .home-check-list li:before {
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e6f0e4;
  color: #2c6a3f;
  content: "✓";
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

body.user-theme .home-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.75fr);
  gap: 16px;
  margin-bottom: 28px;
}

body.user-theme .home-gallery img {
  display: block;
  width: 100%;
  object-fit: cover;
}

body.user-theme .home-gallery__large,
body.user-theme .home-gallery__stack img {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 26px rgba(31, 58, 43, 0.11);
}

body.user-theme .home-gallery__large img {
  height: 360px;
}

body.user-theme .home-gallery__stack {
  display: grid;
  gap: 16px;
}

body.user-theme .home-gallery__stack img {
  height: 172px;
}

body.user-theme .home-rules {
  margin: 36px 0 12px;
}

body.user-theme .home-rules .home-section-title {
  margin-bottom: 28px;
}

body.user-theme .home-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

body.user-theme .home-rule-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 22px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 28px rgba(31, 58, 43, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.user-theme .home-rule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(31, 58, 43, 0.14);
}

body.user-theme .home-rule-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: #e6f0e4;
  font-size: 22px;
  line-height: 1;
}

body.user-theme .home-rule-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 0;
  color: #1f3a2b;
}

body.user-theme .home-rule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.user-theme .home-rule-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: #5a6358;
  font-size: 14.5px;
  line-height: 1.65;
}

body.user-theme .home-rule-list li:before {
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d8a85a;
  content: "";
}

/* ---------- About page ---------- */
body.user-theme .about-page {
  padding-bottom: 40px;
}

body.user-theme .about-hero,
body.user-theme .about-review-summary,
body.user-theme .about-section,
body.user-theme .about-cta {
  margin-bottom: 28px;
}

body.user-theme .about-hero {
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 8px 28px rgba(31, 58, 43, 0.09);
}

body.user-theme .about-hero .row {
  margin-left: 0;
  margin-right: 0;
}

body.user-theme .about-hero [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

body.user-theme .about-hero__copy {
  padding: 46px 42px;
}

body.user-theme .about-hero__copy h1 {
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.user-theme .about-hero__copy p {
  color: #5a6358;
  font-size: 16px;
}

body.user-theme .about-hero__actions {
  margin-top: 24px;
}

body.user-theme .about-hero__actions .btn + .btn {
  margin-left: 8px;
}

body.user-theme .about-hero__image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

body.user-theme .about-review-summary {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.45fr);
  gap: 16px;
}

body.user-theme .about-rating-card,
body.user-theme .about-review-points,
body.user-theme .about-highlight-card,
body.user-theme .about-copy-block,
body.user-theme .about-cta {
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 6px 24px rgba(31, 58, 43, 0.08);
}

body.user-theme .about-rating-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
}

body.user-theme .about-rating-card__score {
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f8a5a 0%, #2c6a3f 100%);
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 82px;
  text-align: center;
}

body.user-theme .about-rating-card h2,
body.user-theme .about-copy-block h2,
body.user-theme .about-cta h2 {
  margin-top: 0;
  letter-spacing: 0;
}

body.user-theme .about-rating-card p,
body.user-theme .about-review-points span,
body.user-theme .about-highlight-card p,
body.user-theme .about-copy-block p,
body.user-theme .about-cta p {
  color: #5a6358;
}

body.user-theme .about-review-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}

body.user-theme .about-review-points > div {
  padding: 26px 22px;
  border-right: 1px solid #ece8db;
}

body.user-theme .about-review-points > div:last-child {
  border-right: none;
}

body.user-theme .about-review-points strong {
  display: block;
  margin-bottom: 8px;
  color: #2c6a3f;
  font-size: 16px;
}

body.user-theme .about-review-points span {
  display: block;
}

body.user-theme .about-highlight-grid {
  margin-top: 20px;
}

body.user-theme .about-highlight-card {
  min-height: 100%;
  margin-bottom: 24px;
  overflow: hidden;
}

body.user-theme .about-highlight-card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

body.user-theme .about-highlight-card h3 {
  margin: 20px 20px 8px;
  font-size: 20px;
  letter-spacing: 0;
}

body.user-theme .about-highlight-card p {
  margin: 0;
  padding: 0 20px 22px;
}

body.user-theme .about-copy-block {
  min-height: 100%;
  padding: 30px 28px;
}

body.user-theme .about-note-block {
  background-color: #fbf8ef;
}

body.user-theme .about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
}

body.user-theme .about-cta p {
  margin-bottom: 0;
}

/* ---------- Traffic page ---------- */
body.user-theme .traffic-page {
  padding-bottom: 40px;
}

body.user-theme .traffic-hero,
body.user-theme .traffic-section {
  margin-bottom: 28px;
}

body.user-theme .traffic-hero {
  padding: 42px 38px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24, 43, 31, 0.88) 0%, rgba(24, 43, 31, 0.62) 58%, rgba(24, 43, 31, 0.18) 100%),
    url("../images/home/mountain-camp.jpg") center/cover no-repeat;
  color: #ffffff;
  box-shadow: 0 8px 28px rgba(31, 58, 43, 0.12);
}

body.user-theme .traffic-hero h1 {
  max-width: 620px;
  margin-top: 10px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0;
}

body.user-theme .traffic-hero p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

body.user-theme .traffic-hero__actions {
  margin-top: 24px;
}

body.user-theme .traffic-hero__actions .btn + .btn {
  margin-left: 8px;
}

body.user-theme .traffic-hero__actions .btn-default {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
}

body.user-theme .traffic-hero__actions .btn-default:hover,
body.user-theme .traffic-hero__actions .btn-default:focus {
  background-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

body.user-theme .traffic-card,
body.user-theme .traffic-supply,
body.user-theme .traffic-place-card,
body.user-theme .traffic-note-block,
body.user-theme .traffic-time-card {
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 6px 24px rgba(31, 58, 43, 0.08);
}

body.user-theme .traffic-card {
  min-height: 100%;
  margin-bottom: 24px;
  padding: 28px 24px;
}

body.user-theme .traffic-card__number {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background-color: #e6f0e4;
  color: #2c6a3f;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
}

body.user-theme .traffic-card h2,
body.user-theme .traffic-section-title h2,
body.user-theme .traffic-place-card h3,
body.user-theme .traffic-note-block h2,
body.user-theme .traffic-time-card h2 {
  margin-top: 0;
  letter-spacing: 0;
}

body.user-theme .traffic-card p,
body.user-theme .traffic-section-title p,
body.user-theme .traffic-supply-item span,
body.user-theme .traffic-place-card p,
body.user-theme .traffic-time-row span {
  color: #5a6358;
}

body.user-theme .traffic-section-title {
  max-width: 760px;
  margin-bottom: 22px;
}

body.user-theme .traffic-supply {
  padding: 30px 28px;
}

body.user-theme .traffic-supply-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid #ece8db;
  border-radius: 8px;
}

body.user-theme .traffic-supply-item {
  padding: 22px 18px;
  border-right: 1px solid #ece8db;
  background-color: #fffdf8;
}

body.user-theme .traffic-supply-item:last-child {
  border-right: none;
}

body.user-theme .traffic-supply-item strong {
  display: block;
  margin-bottom: 8px;
  color: #2c6a3f;
  font-size: 16px;
}

body.user-theme .traffic-supply-item span {
  display: block;
}

body.user-theme .traffic-place-card {
  min-height: 100%;
  margin-bottom: 24px;
  padding: 26px 24px;
  border-left: 4px solid #d8a85a;
}

body.user-theme .traffic-place-card h3 {
  color: #2c6a3f;
  font-size: 20px;
}

body.user-theme .traffic-place-card p {
  margin-bottom: 0;
}

body.user-theme .traffic-note-block,
body.user-theme .traffic-time-card {
  min-height: 100%;
  padding: 30px 28px;
}

body.user-theme .traffic-time-row {
  padding: 16px 0;
  border-top: 1px solid #ece8db;
}

body.user-theme .traffic-time-row:first-of-type {
  margin-top: 12px;
}

body.user-theme .traffic-time-row strong {
  display: block;
  margin-bottom: 4px;
  color: #2c6a3f;
}

body.user-theme .traffic-time-row span {
  display: block;
}

/* Smooth links throughout the user theme */
body.user-theme a {
  transition: color 0.18s ease;
}

/* ---------- Dark theme ---------- */
body.user-theme.user-theme-dark {
  color: #d8e0d5;
  background-color: #111713;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(88, 131, 92, 0.18) 0, transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(173, 140, 78, 0.10) 0, transparent 45%);
}

body.user-theme.user-theme-dark h1,
body.user-theme.user-theme-dark h2,
body.user-theme.user-theme-dark h3,
body.user-theme.user-theme-dark h4,
body.user-theme.user-theme-dark h5,
body.user-theme.user-theme-dark h6 {
  color: #eff5ec;
}

body.user-theme.user-theme-dark .navbar-default {
  background-color: rgba(20, 27, 22, 0.94);
  border-bottom-color: rgba(220, 232, 216, 0.10);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .navbar-default .navbar-nav > li > a {
  color: #d8e0d5 !important;
}

body.user-theme.user-theme-dark .navbar-default .navbar-nav > li > a:hover,
body.user-theme.user-theme-dark .navbar-default .navbar-nav > li > a:focus {
  color: #b9deb7 !important;
  background-color: rgba(122, 161, 119, 0.16);
}

body.user-theme.user-theme-dark .navbar-default .navbar-toggle {
  border-color: rgba(216, 224, 213, 0.24);
}

body.user-theme.user-theme-dark .navbar-default .navbar-toggle:hover,
body.user-theme.user-theme-dark .navbar-default .navbar-toggle:focus {
  background-color: rgba(122, 161, 119, 0.14);
}

body.user-theme.user-theme-dark .navbar-default .navbar-toggle .icon-bar {
  background-color: #d8e0d5;
}

body.user-theme.user-theme-dark .navbar-brand img.brand {
  filter: brightness(0.94) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}

body.user-theme.user-theme-dark .dropdown-menu {
  background-color: #18211b;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.40);
}

body.user-theme.user-theme-dark .dropdown-menu > li > a {
  color: #d8e0d5;
}

body.user-theme.user-theme-dark .dropdown-menu > li > a:hover,
body.user-theme.user-theme-dark .dropdown-menu > li > a:focus {
  background-color: #223025;
  color: #b9deb7;
}

body.user-theme.user-theme-dark .breadcrumb,
body.user-theme.user-theme-dark #loading,
body.user-theme.user-theme-dark .site-footer,
body.user-theme.user-theme-dark .list-group-item ul {
  color: #aeb9aa;
}

body.user-theme.user-theme-dark .breadcrumb a,
body.user-theme.user-theme-dark a,
body.user-theme.user-theme-dark .site-footer a {
  color: #9dcf9b;
}

body.user-theme.user-theme-dark .breadcrumb a:hover,
body.user-theme.user-theme-dark a:hover {
  color: #c8e8c4;
}

body.user-theme.user-theme-dark .breadcrumb .active,
body.user-theme.user-theme-dark .control-label,
body.user-theme.user-theme-dark .table > thead > tr > th {
  color: #e7eee4;
}

body.user-theme.user-theme-dark .panel,
body.user-theme.user-theme-dark #calendar,
body.user-theme.user-theme-dark .modal-content {
  background-color: #18211b;
  color: #d8e0d5;
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .panel-default > .panel-heading {
  background: linear-gradient(135deg, #253527 0%, #1d2b20 100%);
  color: #e7eee4;
}

body.user-theme.user-theme-dark .panel-success > .panel-heading,
body.user-theme.user-theme-dark .label-primary {
  background: linear-gradient(135deg, #3f7448 0%, #285a35 100%);
  color: #ffffff;
}

body.user-theme.user-theme-dark .panel .panel {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

body.user-theme.user-theme-dark .btn-default {
  background-color: #202b24;
  border-color: #3b4c3f;
  color: #e7eee4;
}

body.user-theme.user-theme-dark .btn-default:hover,
body.user-theme.user-theme-dark .btn-default:focus {
  background-color: #29372d;
  border-color: #5c755f;
  color: #c8e8c4;
}

body.user-theme.user-theme-dark .theme-mode-toggle {
  color: #d8e0d5;
}

body.user-theme.user-theme-dark .theme-mode-toggle:hover,
body.user-theme.user-theme-dark .theme-mode-toggle:focus {
  color: #b9deb7;
}

body.user-theme.user-theme-dark .form-control {
  background-color: #121915;
  border-color: #3b4c3f;
  color: #e7eee4;
}

body.user-theme.user-theme-dark .form-control:focus {
  background-color: #17211a;
  border-color: #7aa177;
  box-shadow: 0 0 0 3px rgba(122, 161, 119, 0.22);
}

body.user-theme.user-theme-dark .form-control[disabled],
body.user-theme.user-theme-dark .form-control[readonly],
body.user-theme.user-theme-dark fieldset[disabled] .form-control {
  background-color: #202820;
  color: #9aa69a;
}

body.user-theme.user-theme-dark .table > thead > tr > th {
  background-color: #202b24;
  border-bottom-color: #3b4c3f;
}

body.user-theme.user-theme-dark .table > tbody > tr > td,
body.user-theme.user-theme-dark .table > tbody > tr > th,
body.user-theme.user-theme-dark .list-group-item {
  border-color: #2d3b31;
}

body.user-theme.user-theme-dark .table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.035);
}

body.user-theme.user-theme-dark .table-hover > tbody > tr:hover {
  background-color: #223025;
}

body.user-theme.user-theme-dark .table-bordered {
  border-color: #2d3b31;
}

body.user-theme.user-theme-dark .alert-info {
  background-color: #172632;
  color: #b9d7e8;
}

body.user-theme.user-theme-dark .alert-success {
  background-color: #182a1d;
  color: #bfe0bd;
}

body.user-theme.user-theme-dark .alert-warning {
  background-color: #312819;
  color: #ead5a6;
}

body.user-theme.user-theme-dark .alert-danger {
  background-color: #311d1d;
  color: #efc1c1;
}

body.user-theme.user-theme-dark .list-group-item strong,
body.user-theme.user-theme-dark .site-footer .footer-brand {
  color: #b9deb7;
}

body.user-theme.user-theme-dark .site-footer {
  background-color: rgba(20, 27, 22, 0.78);
  border-top-color: rgba(220, 232, 216, 0.10);
}

body.user-theme.user-theme-dark .fc-unthemed .fc-content,
body.user-theme.user-theme-dark .fc-unthemed .fc-divider,
body.user-theme.user-theme-dark .fc-unthemed .fc-list-heading td,
body.user-theme.user-theme-dark .fc-unthemed .fc-list-view,
body.user-theme.user-theme-dark .fc-unthemed .fc-popover,
body.user-theme.user-theme-dark .fc-unthemed .fc-row,
body.user-theme.user-theme-dark .fc-unthemed tbody,
body.user-theme.user-theme-dark .fc-unthemed td,
body.user-theme.user-theme-dark .fc-unthemed th,
body.user-theme.user-theme-dark .fc-unthemed thead {
  border-color: #2d3b31;
}

body.user-theme.user-theme-dark .fc-unthemed .fc-today {
  background-color: rgba(122, 161, 119, 0.16);
}

body.user-theme.user-theme-dark .fc-unthemed .fc-popover,
body.user-theme.user-theme-dark .fc-unthemed .fc-list-heading td {
  background-color: #18211b;
}

body.user-theme.user-theme-dark #calendar .fc-toolbar h2 {
  color: #e7eee4;
}

body.user-theme.user-theme-dark #calendar .fc button {
  background: #202b24;
  border-color: #3b4c3f;
  color: #c8e8c4;
}

body.user-theme.user-theme-dark #calendar .fc button:hover,
body.user-theme.user-theme-dark #calendar .fc button:focus {
  background: #29372d;
  border-color: #5c755f;
  color: #d8f0d4;
}

body.user-theme.user-theme-dark #calendar .fc button:active,
body.user-theme.user-theme-dark #calendar .fc-state-active,
body.user-theme.user-theme-dark #calendar .fc-state-down {
  background: #3f7448;
  border-color: #285a35;
  color: #ffffff;
}

body.user-theme.user-theme-dark #calendar .fc-icon:after {
  color: #c8e8c4;
}

body.user-theme.user-theme-dark #calendar .fc-day-header {
  background-color: #202b24;
  color: #b9deb7;
}

body.user-theme.user-theme-dark #calendar .fc-day-number {
  color: #d8e0d5;
}

body.user-theme.user-theme-dark #calendar .fc-other-month {
  background-color: #141c17;
}

body.user-theme.user-theme-dark #calendar .fc-other-month .fc-day-number {
  color: #5a6358;
}

body.user-theme.user-theme-dark #calendar .fc-today .fc-day-number {
  color: #b9deb7;
}

body.user-theme.user-theme-dark .booking-intro h2 {
  color: #e7eee4;
}

body.user-theme.user-theme-dark .booking-intro p {
  color: #aeb9aa;
}

body.user-theme.user-theme-dark .booking-window {
  background-color: rgba(216, 168, 90, 0.14);
  color: #ead5a6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .ui-widget-content {
  background: #18211b;
  border-color: #2d3b31;
  color: #d8e0d5;
}

body.user-theme.user-theme-dark .ui-widget-header {
  background: #202b24;
  border-color: #3b4c3f;
  color: #e7eee4;
}

body.user-theme.user-theme-dark .home-feature-card {
  background-color: #18211b;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .home-feature-card p,
body.user-theme.user-theme-dark .home-intro-copy p {
  color: #aeb9aa;
}

body.user-theme.user-theme-dark .home-check-list li {
  color: #d8e0d5;
}

body.user-theme.user-theme-dark .home-check-list li:before {
  background-color: #253527;
  color: #b9deb7;
}

body.user-theme.user-theme-dark .home-gallery__large,
body.user-theme.user-theme-dark .home-gallery__stack img {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

body.user-theme.user-theme-dark .home-rule-card {
  background-color: #18211b;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .home-rule-card:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

body.user-theme.user-theme-dark .home-rule-card__icon {
  background-color: #253527;
}

body.user-theme.user-theme-dark .home-rule-card h3 {
  color: #e7eee4;
}

body.user-theme.user-theme-dark .home-rule-list li {
  color: #aeb9aa;
}

body.user-theme.user-theme-dark .about-hero,
body.user-theme.user-theme-dark .about-rating-card,
body.user-theme.user-theme-dark .about-review-points,
body.user-theme.user-theme-dark .about-highlight-card,
body.user-theme.user-theme-dark .about-copy-block,
body.user-theme.user-theme-dark .about-cta {
  background-color: #18211b;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .about-note-block {
  background-color: #202719;
}

body.user-theme.user-theme-dark .about-hero__copy p,
body.user-theme.user-theme-dark .about-rating-card p,
body.user-theme.user-theme-dark .about-review-points span,
body.user-theme.user-theme-dark .about-highlight-card p,
body.user-theme.user-theme-dark .about-copy-block p,
body.user-theme.user-theme-dark .about-cta p {
  color: #aeb9aa;
}

body.user-theme.user-theme-dark .about-review-points > div {
  border-right-color: #2d3b31;
}

body.user-theme.user-theme-dark .traffic-card,
body.user-theme.user-theme-dark .traffic-supply,
body.user-theme.user-theme-dark .traffic-place-card,
body.user-theme.user-theme-dark .traffic-note-block,
body.user-theme.user-theme-dark .traffic-time-card {
  background-color: #18211b;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
}

body.user-theme.user-theme-dark .traffic-card p,
body.user-theme.user-theme-dark .traffic-section-title p,
body.user-theme.user-theme-dark .traffic-supply-item span,
body.user-theme.user-theme-dark .traffic-place-card p,
body.user-theme.user-theme-dark .traffic-time-row span {
  color: #aeb9aa;
}

body.user-theme.user-theme-dark .traffic-card__number,
body.user-theme.user-theme-dark .traffic-supply-item {
  background-color: #253527;
}

body.user-theme.user-theme-dark .traffic-supply-grid,
body.user-theme.user-theme-dark .traffic-supply-item,
body.user-theme.user-theme-dark .traffic-time-row {
  border-color: #2d3b31;
}

/* Mobile fine-tuning */
@media (max-width: 768px) {
  body.user-theme .home-hero {
    width: calc(100% - 24px);
    min-height: 360px;
    margin-top: 72px;
  }

  body.user-theme .home-hero .container {
    min-height: 360px;
  }

  body.user-theme .home-hero__content {
    padding: 58px 2px 34px;
  }

  body.user-theme .home-hero h1 {
    font-size: 34px;
  }

  body.user-theme .home-hero p {
    max-width: 320px;
    font-size: 16px;
    line-height: 1.65;
  }

  body.user-theme .home-hero__overlay {
    background:
      linear-gradient(90deg, rgba(19, 38, 27, 0.86) 0%, rgba(19, 38, 27, 0.60) 100%),
      linear-gradient(0deg, rgba(16, 27, 20, 0.50) 0%, rgba(16, 27, 20, 0.08) 55%);
  }

  body.user-theme .page-header {
    margin-top: 80px;
  }

  body.user-theme .home-page .page-header {
    margin-top: 18px;
  }

  body.user-theme .panel-body {
    padding: 18px 14px;
  }

  body.user-theme .navbar-default .navbar-nav > .active > a {
    margin: 4px 8px;
  }

  body.user-theme .home-section-title h2,
  body.user-theme .home-intro-copy h2 {
    font-size: 22px;
  }

  body.user-theme .home-feature-card img {
    height: 150px;
  }

  body.user-theme .home-map-image {
    height: auto;
  }

  body.user-theme .home-map-hotspot {
    width: 20px;
    height: 20px;
  }

  body.user-theme .home-intro-copy {
    padding: 22px 18px 24px;
  }

  body.user-theme .home-gallery {
    grid-template-columns: 1fr;
  }

  body.user-theme .home-gallery__large img,
  body.user-theme .home-gallery__stack img {
    height: 170px;
  }

  body.user-theme .home-rules {
    margin-top: 28px;
  }

  body.user-theme .home-rules-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.user-theme .home-rule-card {
    padding: 22px 18px 20px;
  }

  body.user-theme .booking-intro h2 {
    font-size: 22px;
  }

  body.user-theme #calendar {
    padding: 16px 12px 14px;
  }

  body.user-theme #calendar .fc-toolbar h2 {
    font-size: 18px;
  }

  body.user-theme #calendar .fc button {
    padding: 6px 10px;
    font-size: 13px;
  }

  body.user-theme #calendar .fc-day-header {
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  body.user-theme #calendar .fc-event,
  body.user-theme #calendar .fc-event-dot {
    padding: 1px 2px;
    font-size: 12px;
  }

  body.user-theme #calendar .fc-event .fc-content {
    overflow: visible;
    text-align: center;
  }

  body.user-theme #calendar .fc-day-grid-event {
    margin: 2px 1px 0;
  }

  body.user-theme #calendar .booking-event {
    gap: 1px;
  }

  body.user-theme #calendar .booking-event--available .booking-event__label {
    display: none;
  }

  body.user-theme #calendar .booking-event__count {
    font-size: 13px;
    line-height: 1.15;
  }

  body.user-theme .about-hero__copy {
    padding: 26px 20px;
  }

  body.user-theme .about-hero__copy h1 {
    font-size: 26px;
  }

  body.user-theme .about-hero__actions .btn {
    margin-bottom: 8px;
  }

  body.user-theme .about-hero__actions .btn + .btn {
    margin-left: 0;
  }

  body.user-theme .about-hero__image img {
    height: 190px;
  }

  body.user-theme .about-review-summary,
  body.user-theme .about-review-points {
    grid-template-columns: 1fr;
  }

  body.user-theme .about-rating-card {
    align-items: flex-start;
    padding: 22px 18px;
  }

  body.user-theme .about-rating-card__score {
    width: 64px;
    height: 64px;
    font-size: 24px;
    line-height: 64px;
  }

  body.user-theme .about-review-points > div {
    padding: 20px 18px;
    border-right: none;
    border-bottom: 1px solid #ece8db;
  }

  body.user-theme .about-review-points > div:last-child {
    border-bottom: none;
  }

  body.user-theme .about-highlight-card img {
    height: 150px;
  }

  body.user-theme .about-copy-block {
    margin-bottom: 18px;
    padding: 24px 18px;
  }

  body.user-theme .about-cta {
    display: block;
    padding: 24px 18px;
  }

  body.user-theme .about-cta .btn {
    margin-top: 18px;
  }

  body.user-theme .traffic-hero {
    padding: 30px 20px;
  }

  body.user-theme .traffic-hero h1 {
    font-size: 26px;
  }

  body.user-theme .traffic-hero__actions .btn {
    margin-bottom: 8px;
  }

  body.user-theme .traffic-hero__actions .btn + .btn {
    margin-left: 0;
  }

  body.user-theme .traffic-card,
  body.user-theme .traffic-supply,
  body.user-theme .traffic-place-card,
  body.user-theme .traffic-note-block,
  body.user-theme .traffic-time-card {
    padding: 24px 18px;
  }

  body.user-theme .traffic-supply-grid {
    grid-template-columns: 1fr;
  }

  body.user-theme .traffic-supply-item {
    border-right: none;
    border-bottom: 1px solid #ece8db;
  }

  body.user-theme .traffic-supply-item:last-child {
    border-bottom: none;
  }

  body.user-theme .traffic-note-block {
    margin-bottom: 18px;
  }

}
