/*--Details--*/
.det-page {
  padding: 48px 0;
}

/* Header */
.det-header {
  background: linear-gradient(135deg, #e7f5ff 0%, #1971c2b0 50%, #1971c2 100%);
  padding: 56px 0 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.det-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.det-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.det-header__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.det-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.det-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.det-breadcrumb a:hover {
  color: #fff;
}
.det-breadcrumb__sep {
  opacity: 0.4;
}

/* Layout */
.det-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1024px) {
  .det-layout {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.det-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.det-card__heading {
  font-size: 13px;
  font-weight: 700;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f3f5;
  display: flex;
  align-items: center;
  gap: 8px;
}
.det-card__heading-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.det-card__heading-icon--blue {
  background: #e7f5ff;
  color: #1971c2;
}
.det-card__heading-icon--green {
  background: #ebfbee;
  color: #2f9e44;
}
.det-card__heading-icon--orange {
  background: #fff4e6;
  color: #e8590c;
}
.det-card__heading-icon--purple {
  background: #f3f0ff;
  color: #6741d9;
}

/* Gallery */
.det-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.det-gallery__main {
  grid-column: 1 / -1;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.det-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.det-gallery__main:hover img {
  transform: scale(1.03);
}
.det-gallery__thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  position: relative;
}
.det-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.det-gallery__thumb:hover img {
  transform: scale(1.05);
}
.det-gallery__more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
}
.det-gallery__hidden {
  display: none;
}

/* Description */
.det-description {
  font-size: 15px;
  line-height: 1.75;
  color: #495057;
}

/* Distances */
.det-dist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
@media (max-width: 600px) {
  .det-dist-grid {
    grid-template-columns: 1fr;
  }
}
.det-dist-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background 0.1s;
}
.det-dist-row:hover {
  background: #f8f9fa;
}
.det-dist-label {
  font-size: 13px;
  color: #868e96;
  display: flex;
  align-items: center;
  gap: 7px;
}
.det-dist-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dee2e6;
  flex-shrink: 0;
}
.det-dist-value {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  background: #f1f3f5;
  padding: 2px 10px;
  border-radius: 20px;
}

/* Pills */
.det-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.det-pill {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #f1f3f5;
  color: #495057;
  border: 1px solid #dee2e6;
}
.det-pill--blue {
  background: #e7f5ff;
  color: #1864ab;
  border-color: #a5d8ff;
}
.det-pill--green {
  background: #ebfbee;
  color: #2b8a3e;
  border-color: #8ce99a;
}
.det-pill--purple {
  background: #f3f0ff;
  color: #5f3dc4;
  border-color: #b197fc;
}
.det-pill--orange {
  background: #fff4e6;
  color: #d9480f;
  border-color: #ffc078;
}

/* Sidebar info table */
.det-info-table {
  width: 100%;
  border-collapse: collapse;
}
.det-info-table tr {
  border-bottom: 1px solid #f1f3f5;
}
.det-info-table tr:last-child {
  border-bottom: none;
}
.det-info-table td {
  padding: 10px 4px;
  font-size: 14px;
  vertical-align: middle;
}
.det-info-table .det-info-key {
  color: #868e96;
  width: 45%;
  font-size: 13px;
}
.det-info-table .det-info-val {
  color: #212529;
  font-weight: 600;
  text-align: right;
}
.det-info-price {
  font-size: 20px;
  font-weight: 700;
  color: #1971c2;
}

/* Contact button */
.det-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px;
  background: #1971c2;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    transform 0.1s;
  margin-top: 16px;
}
.det-contact-btn:hover {
  background: #1864ab;
  color: #fff;
  transform: translateY(-1px);
}
.det-contact-btn:active {
  transform: scale(0.99);
}

/* Sidebar sticky */
.det-sidebar {
  position: sticky;
  top: 24px;
}

/* No photos */
.det-no-photos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: #f8f9fa;
  border-radius: 12px;
  color: #adb5bd;
  font-size: 14px;
  gap: 10px;
}
.det-no-photos-icon {
  font-size: 36px;
  opacity: 0.4;
}

/* Read-only calendar */
.det-cal {
  width: 100%;
}
.det-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.det-cal-nav {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  transition: background 0.15s;
  line-height: 1;
}
.det-cal-nav:hover {
  background: #e9ecef;
}
.det-cal-month {
  font-size: 14px;
  font-weight: 700;
  color: #212529;
  text-transform: capitalize;
}
.det-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.det-cal-dow {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #adb5bd;
  text-transform: uppercase;
  padding: 4px 0 8px;
  letter-spacing: 0.05em;
}
.det-cal-day {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 7px;
  color: #495057;
  cursor: default;
  position: relative;
}
.det-cal-day.det-today {
  font-weight: 700;
  color: #1971c2;
  box-shadow: inset 0 0 0 1.5px #a5d8ff;
}
.det-cal-day.det-past {
  color: #ced4da;
}
.det-cal-day.det-full {
  background: #fff0f0;
  color: #c92a2a;
}
.det-cal-day.det-checkin {
  background: linear-gradient(to right, #d0ebff 50%, transparent 50%);
  border-radius: 7px 0 0 7px;
}
.det-cal-day.det-checkout {
  background: linear-gradient(to left, #d3f9d8 50%, transparent 50%);
  border-radius: 0 7px 7px 0;
}
.det-cal-day.det-checkin.det-checkout {
  background: linear-gradient(to right, #d0ebff 50%, #d3f9d8 50%);
  border-radius: 7px;
}
.det-cal-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f3f5;
}
.det-cal-legend__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #868e96;
}
.det-cal-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.det-cal-legend__dot--full {
  background: #fff0f0;
  border: 1px solid #ffc9c9;
}
.det-cal-legend__dot--checkin {
  background: linear-gradient(to right, #d0ebff 50%, #f1f3f5 50%);
  border: 1px solid #dee2e6;
}
.det-cal-legend__dot--checkout {
  background: linear-gradient(to left, #d3f9d8 50%, #f1f3f5 50%);
  border: 1px solid #dee2e6;
}
.det-cal-legend__dot--free {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
}

/* Units */
.det-units-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.det-unit-card {
  border: 1px solid #e9ecef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.det-unit-card:hover {
  border-color: #ced4da;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.det-unit-card__body {
  padding: 18px 20px;
}
.det-unit-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.det-unit-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.det-unit-card__price {
  font-size: 18px;
  font-weight: 700;
  color: #1971c2;
  white-space: nowrap;
  flex-shrink: 0;
}
.det-unit-card__specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.det-unit-card__spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: #495057;
  background: #f1f3f5;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 5px 12px;
}
.det-unit-card__spec-icon {
  font-size: 14px;
}
.det-unit-card__description {
  font-size: 14px;
  line-height: 1.65;
  color: #495057;
  margin: 0 0 14px;
}
.det-unit-card__equipment {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.det-unit-cal {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 4px;
}
.det-unit-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.det-unit-cal__title {
  font-size: 12px;
  font-weight: 700;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/*--profile */

.prof-header {
  background: linear-gradient(135deg, #e7f5ff 0%, #1971c2b0 50%, #1971c2 100%);
  padding: 56px 0 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.prof-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.prof-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.prof-header__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.prof-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.prof-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.prof-breadcrumb a:hover {
  color: #fff;
}
.prof-breadcrumb__sep {
  opacity: 0.4;
}

.prof-page {
  padding: 24px 0 48px;
}
.prof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .prof-grid {
    grid-template-columns: 1fr;
  }
}

.prof-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  position: relative;
}
.prof-alert--danger {
  background: #fff0f0;
  border: 1px solid #ffc9c9;
  color: #c0392b;
}
.prof-alert--success {
  background: #f0fff4;
  border: 1px solid #b2f2bb;
  color: #2f9e44;
}
.prof-alert__close {
  margin-left: auto;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
}
.prof-alert__close:hover {
  opacity: 1;
}

.prof-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.prof-card--form {
  margin-bottom: 16px;
}
.prof-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f3f5;
}
.prof-card__title--section {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.prof-bill-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  text-decoration: none;
  color: #212529;
  font-size: 14px;
  font-weight: 500;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.prof-bill-link:hover {
  background: #e9ecef;
  border-color: #ced4da;
}
.prof-bill-icon {
  width: 28px;
  height: 28px;
}

.prof-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.prof-form-row--inline {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
}
@media (max-width: 600px) {
  .prof-form-row,
  .prof-form-row--inline {
    grid-template-columns: 1fr;
  }
}
.prof-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.prof-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.prof-input {
  padding: 9px 13px;
  font-size: 14px;
  border: 1px solid #dee2e6;
  border-radius: 9px;
  background: #fff;
  color: #212529;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.prof-input:focus {
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.15);
}
.prof-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.prof-textarea {
  resize: vertical;
  line-height: 1.65;
  min-height: 160px;
}
.prof-radio-group {
  display: flex;
  gap: 16px;
  padding: 9px 0;
}
.prof-radio {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #212529;
  cursor: pointer;
}
.prof-radio input[type="radio"] {
  accent-color: #339af0;
}

.prof-dist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) {
  .prof-dist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .prof-dist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.prof-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prof-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 13px;
  color: #495057;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.prof-check-pill input[type="checkbox"] {
  display: none;
}
.prof-check-pill:has(input:checked) {
  background: #e7f5ff;
  border-color: #74c0fc;
  color: #1971c2;
  font-weight: 500;
}
.prof-check-pill:hover {
  border-color: #adb5bd;
  background: #f1f3f5;
}
.prof-check-pill:has(input:checked):hover {
  background: #d0ebff;
}

.prof-file-input {
  font-size: 13px;
  color: #495057;
  margin-bottom: 10px;
}

.prof-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.preview-group-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dee2e6;
}
.preview-group-img img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  display: block;
}
.deleteImgBtn {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  line-height: 1;
}
.deleteImgBtn:hover {
  background: rgba(200, 0, 0, 0.8);
}

.prof-save-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
  margin-bottom: 24px;
}
.prof-save-btn {
  padding: 11px 32px;
  background: #1971c2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
}
.prof-save-btn:hover {
  background: #1864ab;
}
.prof-save-btn:active {
  transform: scale(0.98);
}

/* Calendar */
.my-calendar {
  width: 100%;
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.cal-nav-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  transition:
    background 0.15s,
    border-color 0.15s;
  line-height: 1;
}
.cal-nav-btn:hover {
  background: #e9ecef;
  border-color: #ced4da;
}
.cal-month-label {
  font-size: 15px;
  font-weight: 600;
  color: #212529;
  text-transform: capitalize;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.days-names > div {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: #adb5bd;
  text-transform: uppercase;
  padding: 4px 0 8px;
  letter-spacing: 0.05em;
}
.day {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  color: #212529;
  border: 1px solid transparent;
  transition:
    background 0.1s,
    border-color 0.1s;
}
.day:hover {
  background: #f1f3f5;
  border-color: #dee2e6;
}
.full {
  background: #fff0f0;
  color: #c92a2a;
  border-color: #ffc9c9;
  cursor: not-allowed;
}
.full:hover {
  background: #ffe3e3;
}
.check-in {
  background: linear-gradient(to right, #d0ebff 50%, transparent 50%);
  border-radius: 8px 0 0 8px;
}
.check-out {
  background: linear-gradient(to left, #d3f9d8 50%, transparent 50%);
  border-radius: 0 8px 8px 0;
}
.check-in.check-out {
  background: linear-gradient(to right, #d0ebff 50%, #d3f9d8 50%);
  border-radius: 8px;
}
.selected {
  border-color: #339af0 !important;
  box-shadow: 0 0 0 2px rgba(51, 154, 240, 0.25);
}
.in-range {
  background: #e7f5ff;
  border-radius: 0;
  border-color: transparent;
}
.cal-msg {
  padding: 10px 14px;
  border-radius: 9px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 500;
}
.cal-legend {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #f1f3f5;
}
.cal-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6c757d;
}
.cal-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}
.cal-legend__dot--full {
  background: #fff0f0;
  border: 1px solid #ffc9c9;
}
.cal-legend__dot--checkin {
  background: linear-gradient(to right, #d0ebff 50%, #f1f3f5 50%);
  border: 1px solid #dee2e6;
}
.cal-legend__dot--checkout {
  background: linear-gradient(to left, #d3f9d8 50%, #f1f3f5 50%);
  border: 1px solid #dee2e6;
}

/* Units */
.unit-count-badge {
  font-size: 12px;
  font-weight: 600;
  background: #e7f5ff;
  color: #1971c2;
  border: 1px solid #a5d8ff;
  border-radius: 20px;
  padding: 2px 12px;
  letter-spacing: 0;
  text-transform: none;
}
.unit-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px dashed #74c0fc;
  border-radius: 10px;
  color: #1971c2;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}
.unit-add-btn:hover {
  background: #e7f5ff;
  border-color: #339af0;
}
.unit-add-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.unit-card {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  background: #fafafa;
  transition: border-color 0.15s;
}
.unit-card:hover {
  border-color: #ced4da;
}
.unit-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.unit-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 4px;
}
.unit-card__specs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.unit-card__spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #495057;
  background: #f1f3f5;
  border-radius: 6px;
  padding: 3px 9px;
}
.unit-card__price {
  font-size: 14px;
  font-weight: 700;
  color: #1971c2;
  white-space: nowrap;
}
.unit-card__photos {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.unit-card__photo {
  width: 64px;
  height: 52px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid #dee2e6;
}
.unit-card__no-photo {
  width: 64px;
  height: 52px;
  border-radius: 7px;
  background: #f1f3f5;
  border: 1px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ced4da;
}
.unit-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}
.unit-card__btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.15s;
  white-space: nowrap;
}
.unit-card__btn--edit {
  background: #fff;
  border-color: #dee2e6;
  color: #495057;
}
.unit-card__btn--edit:hover {
  background: #f1f3f5;
}
.unit-card__btn--del {
  background: #fff;
  border-color: #ffc9c9;
  color: #c92a2a;
}
.unit-card__btn--del:hover {
  background: #fff0f0;
}

/* Modal */
.unit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.unit-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 92vh;
}
.unit-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f3f5;
}
.unit-modal__title {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.unit-modal__close {
  background: none;
  border: none;
  font-size: 22px;
  color: #868e96;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.15s;
}
.unit-modal__close:hover {
  color: #212529;
}
.unit-modal__body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}
.unit-modal__footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid #f1f3f5;
}
.unit-modal__cancel {
  padding: 9px 20px;
  border: 1px solid #dee2e6;
  border-radius: 9px;
  background: #fff;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.unit-modal__cancel:hover {
  background: #f1f3f5;
}
.unit-modal__save {
  padding: 9px 24px;
  border: none;
  border-radius: 9px;
  background: #1971c2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.unit-modal__save:hover {
  background: #1864ab;
}
.unit-modal__save:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.um-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .um-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.um-photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.um-photo-wrap {
  position: relative;
  width: 80px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dee2e6;
}
.um-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.um-photo-del {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.um-photo-del:hover {
  background: rgba(200, 0, 0, 0.85);
}
.um-new-preview {
  width: 80px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px dashed #74c0fc;
}
.um-msg--ok {
  background: #ebfbee;
  color: #2f9e44;
  border: 1px solid #8ce99a;
}
.um-msg--err {
  background: #fff0f0;
  color: #c92a2a;
  border: 1px solid #ffc9c9;
}
.um-cal {
  margin-top: 4px;
}

.um-cal-notice {
  font-size: 13px;
  color: #1864ab;
  background: #e7f5ff;
  border: 1px solid #a5d8ff;
  border-radius: 8px;
  padding: 9px 13px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Calendar delete mode toggle */
/* Dual month calendar */
.dual-cal {
  width: 100%;
}

/* Unit-calendar info banner */
.unit-cal-info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff9db;
  border: 1px solid #ffe066;
  border-radius: 14px;
  padding: 18px 22px;
}
.unit-cal-info-box__icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.unit-cal-info-box__text {
  font-size: 14px;
  color: #5c4a00;
  line-height: 1.6;
}
.unit-cal-info-box__text strong {
  color: #3d3000;
}
.dual-cal__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.dual-cal__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .dual-cal__months {
    grid-template-columns: 1fr;
  }
}
.dual-cal__month {
  min-width: 0;
}
.dual-cal__month-label {
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.cal-mode-btn {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dee2e6;
  color: #495057;
  transition: all 0.15s;
}
.cal-mode-btn:hover {
  background: #fff0f0;
  border-color: #ffc9c9;
  color: #c92a2a;
}
.cal-mode-btn.active {
  background: #fff0f0;
  border-color: #ffc9c9;
  color: #c92a2a;
}
.day.del-hover {
  background: #ffe3e3 !important;
  border-color: #ffc9c9 !important;
  cursor: pointer;
}

/*-- List page --*/

/* ── Listing page ─────────────────────────────────────────────── */

/* Header — same as det/prof */
.lst-header {
  background: linear-gradient(135deg, #e7f5ff 0%, #1971c2b0 50%, #1971c2 100%);
  padding: 56px 0 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.lst-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lst-header__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.lst-header__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.lst-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.lst-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.15s;
}
.lst-breadcrumb a:hover {
  color: #fff;
}
.lst-breadcrumb__sep {
  opacity: 0.4;
}

/* Page layout */
.lst-page {
  padding: 0 0 56px;
}
.lst-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 1024px) {
  .lst-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Sidebar ── */
.lst-sidebar {
  position: sticky;
  top: 24px;
}
.lst-sidebar-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.lst-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  cursor: pointer;
  user-select: none;
}
.lst-sidebar-header__title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
}
.lst-sidebar-header__icon {
  font-size: 16px;
}
.lst-filter-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  min-width: 22px;
  text-align: center;
}
.lst-filter-toggle {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.15s;
}
.lst-filter-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lst-sidebar-body {
  padding: 20px 22px;
}
.lst-sidebar-body.collapsed {
  display: none;
}

.lst-filter-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f3f5;
}
.lst-filter-section:last-of-type {
  border-bottom: none;
  margin-bottom: 12px;
}
.lst-filter-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lst-filter-section-title-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.lst-filter-section-title-icon--green {
  background: #ebfbee;
  color: #2f9e44;
}
.lst-filter-section-title-icon--blue {
  background: #e7f5ff;
  color: #1971c2;
}
.lst-filter-section-title-icon--orange {
  background: #fff4e6;
  color: #e8590c;
}
.lst-filter-section-title-icon--purple {
  background: #f3f0ff;
  color: #6741d9;
}

.lst-input {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  border: 1px solid #dee2e6;
  border-radius: 9px;
  background: #fff;
  color: #212529;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.lst-input:focus {
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.15);
}
.lst-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
  cursor: pointer;
}
.lst-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.lst-radio-group {
  display: flex;
  gap: 12px;
  padding: 4px 0;
}
.lst-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #212529;
  cursor: pointer;
}
.lst-radio input[type="radio"] {
  accent-color: #339af0;
}

.lst-pills-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lst-pill-check {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 12px;
  color: #495057;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.lst-pill-check input[type="checkbox"] {
  display: none;
}
.lst-pill-check:has(input:checked) {
  background: #e7f5ff;
  border-color: #74c0fc;
  color: #1971c2;
  font-weight: 600;
}
.lst-pill-check:hover {
  border-color: #adb5bd;
}

.lst-apply-btn {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}
.lst-apply-btn:hover {
  opacity: 0.92;
}
.lst-apply-btn:active {
  transform: scale(0.99);
}
.lst-clear-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #868e96;
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.15s;
}
.lst-clear-link:hover {
  color: #c92a2a;
}

/* ── Results area ── */
.lst-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.lst-results-count {
  font-size: 14px;
  color: #868e96;
}
.lst-results-count strong {
  color: #212529;
  font-size: 18px;
  font-weight: 700;
}

/* ── Object cards ── */
.lst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 900px) {
  .lst-grid {
    grid-template-columns: 1fr;
  }
}

.lst-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.15s,
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.lst-card:hover {
  border-color: #ced4da;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.lst-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f3f5;
}
.lst-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.lst-card:hover .lst-card__img {
  transform: scale(1.04);
}
.lst-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #dee2e6;
  background: #f8f9fa;
}

/* Category badge on image */
.lst-card__cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: #212529;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
/* Price badge on image */
.lst-card__price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #1971c2;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

.lst-card__body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.lst-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 1.3;
  text-decoration: none;
}
.lst-card__name:hover {
  color: #1971c2;
}

.lst-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.lst-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #868e96;
}
.lst-card__meta-sep {
  color: #dee2e6;
}

.lst-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.lst-card__tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 20px;
  background: #ebfbee;
  color: #2b8a3e;
  border: 1px solid #8ce99a;
}

.lst-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f3f5;
}
.lst-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #868e96;
}
.lst-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  background: #e7f5ff;
  color: #1971c2;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #a5d8ff;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}
.lst-card__cta:hover {
  background: #1971c2;
  color: #fff;
  border-color: #1971c2;
}

/* Tourist tax pill */
.lst-card__tax {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: #fff4e6;
  color: #d9480f;
  border: 1px solid #ffc078;
}

/* Empty state */
.lst-empty {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px dashed #dee2e6;
  color: #868e96;
}
.lst-empty__icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}
.lst-empty__title {
  font-size: 18px;
  font-weight: 700;
  color: #495057;
  margin: 0 0 6px;
}
.lst-empty__sub {
  font-size: 14px;
}

/* Pagination */
.lst-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.lst-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: #495057;
  text-decoration: none;
  transition: all 0.15s;
}
.lst-page-btn:hover {
  background: #f1f3f5;
  border-color: #ced4da;
  color: #212529;
}
.lst-page-btn.active {
  background: #1971c2;
  border-color: #1971c2;
  color: #fff;
}
.lst-page-dots {
  font-size: 13px;
  color: #adb5bd;
  padding: 0 4px;
}

/* Mobile filter toggle */
.lst-mobile-filter-btn {
  display: none;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 1024px) {
  .lst-mobile-filter-btn {
    display: flex;
  }
  .lst-sidebar {
    position: static;
  }
  .lst-sidebar-body {
    display: none;
  }
  .lst-sidebar-body.mobile-open {
    display: block;
  }
}

/*-- season-profile --*/
.season-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.season-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  transition: border-color 0.15s;
}
.season-row:hover {
  border-color: #ced4da;
}
.season-row__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.season-row__info {
  flex: 1;
  min-width: 0;
}
.season-row__name {
  font-size: 13px;
  font-weight: 700;
  color: #212529;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.season-row__dates {
  font-size: 11px;
  color: #868e96;
  margin-top: 1px;
}
.season-row__price {
  font-size: 13px;
  font-weight: 700;
  color: #1971c2;
  white-space: nowrap;
  flex-shrink: 0;
}
.season-row__actions {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.season-btn {
  padding: 4px 10px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.15s;
}
.season-btn--edit {
  background: #fff;
  border-color: #dee2e6;
  color: #495057;
}
.season-btn--edit:hover {
  background: #f1f3f5;
}
.season-btn--del {
  background: #fff;
  border-color: #ffc9c9;
  color: #c92a2a;
}
.season-btn--del:hover {
  background: #fff0f0;
}
.season-form {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}
.season-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 500px) {
  .season-form__grid {
    grid-template-columns: 1fr;
  }
}
.season-form__actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}
.season-form__save {
  padding: 8px 18px;
  background: #1971c2;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.season-form__save:hover {
  background: #1864ab;
}
.season-form__cancel {
  padding: 8px 14px;
  background: #fff;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.season-form__cancel:hover {
  background: #f1f3f5;
}
.season-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #fff;
  border: 1.5px dashed #74c0fc;
  border-radius: 9px;
  color: #1971c2;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s;
  width: 100%;
  justify-content: center;
  margin-bottom: 4px;
}
.season-add-btn:hover {
  background: #e7f5ff;
  border-color: #339af0;
}
.season-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f3f5;
}
.season-legend__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #495057;
  font-weight: 500;
}
.season-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  flex-shrink: 0;
}
/* Season dot on calendar day */
.day.season-day {
  position: relative;
}
.day.season-day::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--season-color, #339af0);
}
.day[data-season-tip]:hover::before {
  content: attr(data-season-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #212529;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 100;
  pointer-events: none;
}

/* ── Season display (detail page) ─────────────────────────────── */
.det-season-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}
.det-season-list__title {
  font-size: 11px;
  font-weight: 700;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.det-season-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 9px;
  border: 1px solid #e9ecef;
}
.det-season-row__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}
.det-season-row__name {
  font-size: 13px;
  font-weight: 600;
  color: #212529;
  flex: 1;
}
.det-season-row__dates {
  font-size: 11px;
  color: #868e96;
  white-space: nowrap;
}
.det-season-row__price {
  font-size: 13px;
  font-weight: 700;
  color: #1971c2;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Season dot on calendar day */
.det-cal-day.det-season {
  position: relative;
}
.det-cal-day.det-season::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--det-season-color, #339af0);
}
.det-cal-day[data-season-tip]:hover {
  z-index: 10;
}
.det-cal-day[data-season-tip]:hover::before {
  content: attr(data-season-tip);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: #212529;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 5px;
  white-space: nowrap;
  z-index: 100;
  pointer-events: none;
}
/* Inquiry button & modal */
.det-unit-inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 11px 16px;
  background: #1971c2;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
}
.det-unit-inquiry-btn:hover {
  background: #1864ab;
  transform: translateY(-1px);
}
.inq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.inq-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  max-height: 92vh;
  overflow: hidden;
}
.inq-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #f1f3f5;
}
.inq-modal__title {
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  margin: 0;
}
.inq-modal__close {
  background: none;
  border: none;
  font-size: 22px;
  color: #868e96;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.inq-modal__close:hover {
  color: #212529;
}
.inq-modal__body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}
.inq-modal__footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  padding: 16px 24px;
  border-top: 1px solid #f1f3f5;
}
.inq-modal__cancel {
  padding: 9px 20px;
  border: 1px solid #dee2e6;
  border-radius: 9px;
  background: #fff;
  color: #495057;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.inq-modal__cancel:hover {
  background: #f1f3f5;
}
.inq-modal__send {
  padding: 9px 24px;
  border: none;
  border-radius: 9px;
  background: #1971c2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.inq-modal__send:hover {
  background: #1864ab;
}
.inq-modal__send:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.inq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 500px) {
  .inq-grid {
    grid-template-columns: 1fr;
  }
}
.inq-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.inq-group--full {
  grid-column: 1/-1;
}
.inq-label {
  font-size: 12px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.inq-input {
  padding: 9px 13px;
  font-size: 14px;
  border: 1px solid #dee2e6;
  border-radius: 9px;
  background: #fff;
  color: #212529;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  width: 100%;
}
.inq-input:focus {
  border-color: #4dabf7;
  box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.15);
}
.inq-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}
.inq-notice {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
}
.inq-notice--ok {
  background: #ebfbee;
  color: #2f9e44;
  border: 1px solid #8ce99a;
}
.inq-notice--err {
  background: #fff0f0;
  color: #c92a2a;
  border: 1px solid #ffc9c9;
}
/* Unit photo strip */
.det-unit-card__photos {
  display: flex;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
  gap: 3px;
}
.det-unit-card__photos--empty {
  align-items: center;
  justify-content: center;
}
.det-unit-card__photo-main {
  flex: 1;
  min-width: 0;
  display: block;
  overflow: hidden;
}
.det-unit-card__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.det-unit-card__photo-main:hover img {
  transform: scale(1.04);
}
.det-unit-card__photo-thumb {
  flex: 0 0 100px;
  display: block;
  overflow: hidden;
  position: relative;
}
.det-unit-card__photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.det-unit-card__photo-thumb:hover img {
  transform: scale(1.06);
}
.det-unit-card__photo-more {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
/* ═══════════════════════════════════════════════
   HOME PAGE  —  matches det/prof/lst design system
═══════════════════════════════════════════════ */

/* ── Hero ── */
.home-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #e7f5ff 0%, #1971c2b0 50%, #1971c2 100%);
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.home-hero__pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 72px 0 56px;
}
.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}
.home-hero__title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.home-hero__title span {
  color: #a3f7c5;
}
.home-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 36px;
  line-height: 1.65;
  max-width: 520px;
}

/* ── Search form ── */
.home-search-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.home-search-card__title {
  font-size: 13px;
  font-weight: 700;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.home-search-card__title-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #03a84e;
}
.hs-row {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}
.hs-row--2 {
  grid-template-columns: 1fr 1fr;
}
.hs-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.hs-row--submit {
  grid-template-columns: 1fr 1fr 1fr auto;
}
@media (max-width: 640px) {
  .hs-row--2,
  .hs-row--3,
  .hs-row--submit {
    grid-template-columns: 1fr;
  }
}
.hs-label {
  font-size: 10px;
  font-weight: 700;
  color: #868e96;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}
.hs-input {
  width: 100%;
  padding: 10px 13px;
  font-size: 14px;
  border: 1.5px solid #dee2e6;
  border-radius: 10px;
  background: #fff;
  color: #212529;
  outline: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.hs-input:focus {
  border-color: #03a84e;
  box-shadow: 0 0 0 3px rgba(3, 168, 78, 0.12);
}
.hs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
  cursor: pointer;
}
.hs-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    opacity 0.15s,
    transform 0.1s;
  align-self: flex-end;
  height: 42px;
}
.hs-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.hs-submit:active {
  transform: scale(0.98);
}

/* ── Stats bar ── */
.home-stats {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 20px 0;
}
.home-stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.home-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 32px;
  border-right: 1px solid #e9ecef;
  gap: 2px;
}
.home-stat:last-child {
  border-right: none;
}
.home-stat__num {
  font-size: 26px;
  font-weight: 800;
  color: #03a84e;
  line-height: 1;
}
.home-stat__label {
  font-size: 12px;
  color: #868e96;
  font-weight: 500;
}
@media (max-width: 600px) {
  .home-stat {
    padding: 8px 18px;
    border-right: none;
  }
}

/* ── Section shared ── */
.home-section {
  padding: 64px 0;
}
.home-section--alt {
  background: #f8f9fa;
}
.home-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.home-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ebfbee;
  color: #2b8a3e;
  border: 1px solid #8ce99a;
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.home-section__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #212529;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}
.home-section__sub {
  font-size: 15px;
  color: #868e96;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}
.home-section__cta-row {
  text-align: center;
  margin-top: 36px;
}
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition:
    opacity 0.15s,
    transform 0.1s;
}
.home-cta-btn:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-1px);
}
.home-cta-btn--outline {
  background: transparent;
  border: 2px solid #03a84e;
  color: #03a84e;
}
.home-cta-btn--outline:hover {
  background: #03a84e;
  color: #fff;
}

/* ── Featured cards ── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.15s,
    box-shadow 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.feat-card:hover {
  border-color: #ced4da;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.feat-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f3f5;
}
.feat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.feat-card:hover .feat-card__img {
  transform: scale(1.06);
}
.feat-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #dee2e6;
  background: #f8f9fa;
}
.feat-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(4px);
  color: #212529;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.feat-card__featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.feat-card__price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #1971c2;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.feat-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.feat-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 1.3;
}
.feat-card__meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #868e96;
  flex-wrap: wrap;
}
.feat-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.feat-card__tag {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 20px;
  background: #ebfbee;
  color: #2b8a3e;
  border: 1px solid #8ce99a;
}
.feat-card__footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.feat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #1971c2;
  text-decoration: none;
  padding: 6px 12px;
  background: #e7f5ff;
  border: 1px solid #a5d8ff;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
}
.feat-card__cta:hover {
  background: #1971c2;
  color: #fff;
  border-color: #1971c2;
}

/* ── Categories grid ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 14px;
  text-decoration: none;
  color: #212529;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}
.cat-card:hover {
  border-color: #03a84e;
  background: #f0fdf4;
  color: #1a6b2e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 168, 78, 0.1);
}
.cat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ebfbee;
  border: 1px solid #8ce99a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.2s;
}
.cat-card:hover .cat-card__icon {
  background: #d3f9d8;
}
.cat-card__count {
  font-size: 11px;
  color: #868e96;
  font-weight: 500;
}

/* ── How it works ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.how-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}
.how-card__num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #03a84e, #1a6b2e);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(3, 168, 78, 0.3);
}
.how-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #ebfbee;
  border: 1px solid #8ce99a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}
.how-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 8px;
}
.how-card__desc {
  font-size: 13px;
  color: #868e96;
  line-height: 1.6;
  margin: 0;
}

/* ── Banner CTA ── */
.home-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e7f5ff 0%, #1971c2b0 50%, #1971c2 100%);
  padding: 64px 0;
  text-align: center;
}
.home-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.home-banner__pattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-banner__inner {
  position: relative;
  z-index: 2;
}
.home-banner__sub {
  font-size: 13px;
  font-weight: 700;
  color: #a3f7c5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.home-banner__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 28px;
  letter-spacing: -0.5px;
}
.home-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.home-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s;
}
.home-banner__btn--white {
  background: #fff;
  color: #163e16;
}
.home-banner__btn--white:hover {
  background: #f0fdf4;
  color: #163e16;
}
.home-banner__btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.home-banner__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}
.home-banner__btn img {
  height: 24px;
  width: auto;
}

/* ── Logo slider ── */
.home-logos {
  padding: 32px 0;
  background: #fff;
  border-top: 1px solid #f1f3f5;
  border-bottom: 1px solid #f1f3f5;
}

/* ── News cards ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.15s,
    box-shadow 0.2s,
    transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: #ced4da;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.news-card__img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f1f3f5;
}
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__img {
  transform: scale(1.04);
}
.news-card__body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-card__tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #2b8a3e;
  background: #ebfbee;
  border: 1px solid #8ce99a;
  border-radius: 20px;
  padding: 2px 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.news-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 1.4;
}
.news-card__cta {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  color: #1971c2;
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid #f1f3f5;
}
