.services-plugin .services-hours-settings .form-label {
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.services-plugin .services-hours-table th,
.services-plugin .services-hours-table td {
  vertical-align: middle;
}

.services-plugin .services-stat-cards .stat-panel {
  margin-bottom: 0;
}

.services-plugin .services-dashboard-table .services-btn-view {
  color: #fff;
}

.services-plugin .services-dashboard-table .services-btn-view:hover {
  color: #fff;
  opacity: 0.92;
}

.services-plugin .services-pricing-mode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.services-plugin .services-pricing-mode-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  min-height: 100%;
}

.services-plugin .services-pricing-mode-card:hover {
  border-color: #2c5364;
  box-shadow: 0 4px 12px rgba(44, 83, 100, 0.1);
}

.services-plugin .services-pricing-mode-card.is-selected {
  border-color: #2c5364;
  background: #f0f7fa;
  box-shadow: 0 4px 12px rgba(44, 83, 100, 0.12);
}

.services-plugin .services-pricing-mode-card__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.services-plugin .services-pricing-mode-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef3f7;
  color: #2c5364;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.services-plugin .services-pricing-mode-card.is-selected .services-pricing-mode-card__icon {
  background: #2c5364;
  color: #fff;
}

.services-plugin .services-pricing-mode-card__title {
  font-weight: 600;
  font-size: 15px;
  color: #212529;
}

.services-plugin .services-pricing-mode-card__desc {
  font-size: 13px;
  color: #6c757d;
  line-height: 1.4;
}

.services-plugin .services-content-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}

.services-plugin .services-content-tabs__scroll {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.services-plugin .services-content-tabs__scroll::-webkit-scrollbar {
  display: none;
}

.services-plugin .services-content-tabs__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-plugin .services-content-tabs__list > li {
  float: none !important;
  flex: 0 0 auto;
}

.services-plugin .services-content-tabs__list > li > a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  padding: 12px 14px;
  font-size: 13px;
}

@media (min-width: 768px) {
  .services-plugin .services-content-tabs__list > li > a {
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .services-plugin .services-content-tabs__list > li > a {
    padding: 16px 18px;
    font-size: 15px;
  }
}

.services-plugin .services-content-tabs__action {
  flex: 0 0 auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  align-self: center;
  padding: 8px 10px 8px 4px;
  white-space: nowrap;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  background: inherit;
}

body.night-mode .services-plugin .services-content-tabs__action {
  border-left-color: var(--card-dark-divider);
}

.services-plugin .service-description img,
.services-plugin .services-detail-description img {
  max-width: 100%;
  height: auto;
}

.services-plugin #services-form .form-label {
  display: block;
  margin-bottom: 0.375rem;
}

.services-plugin #services-form .form-control[type="file"] {
  padding: 0.45rem 0.75rem;
  line-height: 1.5;
}

.services-plugin .services-form-section {
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.services-plugin .services-form-section__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #fafbfc;
  border-bottom: 1px solid #e8ecf0;
}

.services-plugin .services-form-section__head--split {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.services-plugin .services-form-section__head > i,
.services-plugin .services-form-section__head .fa {
  font-size: 18px;
  color: #2c5364;
  margin-top: 2px;
  flex-shrink: 0;
}

.services-plugin .services-form-section__body {
  padding: 18px;
}

.services-plugin .services-form-section__body .row {
  margin-left: 0;
  margin-right: 0;
}

.services-plugin .services-form-thumb {
  max-height: 100px;
  display: block;
}

.services-plugin .services-package-item {
  border: 1px solid #e8ecf0;
  border-left: 3px solid #2c5364;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 12px;
  background: #fafbfc;
}

.services-plugin .services-package-item:last-child {
  margin-bottom: 0;
}

.services-plugin .services-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  grid-auto-flow: dense;
}

.services-plugin .services-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f6f8;
  min-height: 140px;
  aspect-ratio: 4 / 3;
}

.services-plugin .services-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.services-plugin .services-gallery__item:hover img {
  transform: scale(1.03);
}

.services-plugin .services-gallery__item--video {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

@media (min-width: 768px) {
  .services-plugin .services-gallery__item:nth-child(6n+1),
  .services-plugin .services-gallery__item:nth-child(6n+4) {
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 280px;
  }
}

@media (max-width: 575px) {
  .services-plugin .services-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-plugin .services-gallery__item--video {
    grid-column: span 2;
  }
}

.services-plugin .services-form-panel {
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  background: #fafbfc;
  overflow: hidden;
}

.services-plugin .services-form-panel__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border-bottom: 1px solid #e8ecf0;
}

.services-plugin .services-form-panel.is-collapsed .services-form-panel__head {
  border-bottom: none;
}

.services-plugin .services-form-panel__head > i {
  font-size: 18px;
  color: #2c5364;
  flex-shrink: 0;
}

.services-plugin .services-form-panel__head-main {
  flex: 1;
  min-width: 0;
}

.services-plugin .services-form-panel__head-action {
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 8px;
}

.services-plugin .services-form-panel__head-action .form-check-input {
  width: 2.5em;
  height: 1.25em;
  cursor: pointer;
}

.services-plugin .services-form-panel__body {
  padding: 16px;
}

.services-plugin .services-region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.services-plugin .services-region-card {
  position: relative;
  display: block;
  margin: 0;
  padding: 14px 14px 14px 42px;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.services-plugin .services-region-card:hover {
  border-color: #2c5364;
  box-shadow: 0 4px 12px rgba(44, 83, 100, 0.1);
}

.services-plugin .services-region-card.is-selected {
  border-color: #2c5364;
  background: #f0f7fa;
  box-shadow: 0 4px 12px rgba(44, 83, 100, 0.12);
}

.services-plugin .services-region-card__input {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  margin: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
}

.services-plugin .services-region-card__check {
  position: absolute;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  border: 2px solid #ced4da;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 11px;
  background: #fff;
  transition: all 0.2s ease;
}

.services-plugin .services-region-card.is-selected .services-region-card__check {
  border-color: #2c5364;
  background: #2c5364;
  color: #fff;
}

.services-plugin .services-region-card__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.services-plugin .services-region-card__title {
  font-weight: 600;
  font-size: 15px;
  color: #212529;
}

.services-plugin .services-region-card__country {
  font-size: 13px;
  color: #495057;
}

.services-plugin .services-region-card__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.services-plugin .services-region-card__city {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  border-radius: 20px;
  background: #e9ecef;
  color: #495057;
}

.services-plugin .services-region-card.is-selected .services-region-card__city {
  background: #d6e8ef;
  color: #2c5364;
}

.services-plugin .services-country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  background: #fafbfc;
}

.services-plugin .services-country-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.services-plugin .services-country-option:hover {
  border-color: #2c5364;
}

.services-plugin .services-country-option:has(.services-country-option__input:checked) {
  border-color: #2c5364;
  background: #f0f7fa;
}

.services-plugin .services-country-option__input {
  margin: 0;
  flex-shrink: 0;
}

.services-plugin .services-country-option__label {
  font-size: 13px;
  line-height: 1.3;
}

/* Service detail page */
.services-plugin .services-detail-hero {
  background: #fff;
  overflow: hidden;
}

.services-plugin .services-detail-hero__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.services-plugin .services-detail-hero__thumb {
  position: relative;
  flex: 0 0 280px;
  width: 280px;
  min-height: 210px;
  align-self: stretch;
  background: #f1f5f7;
  border-right: 1px solid #e9ecef;
  overflow: hidden;
}

.services-plugin .services-detail-hero__thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-plugin .services-detail-hero__thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 42px;
  background: linear-gradient(135deg, #f8fafb 0%, #eef3f6 100%);
}

/* Explore / listing cards — 4:3 cover thumbnails */
.services-plugin .service-product-card .product-image,
.services-card-cover-wrap {
  position: relative;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.services-plugin .service-product-card .product-image img,
.services-card-cover-wrap .services-card-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-card-cover-wrap .services-card-cover {
  display: block;
}

.services-plugin .services-detail-hero__body {
  flex: 1 1 300px;
  min-width: 0;
  padding: 20px 24px;
}

.services-plugin .services-detail-hero__aside {
  flex: 0 0 240px;
  width: 100%;
  max-width: 260px;
  padding: 24px 24px 24px 0;
  display: flex;
  align-items: flex-start;
}

.services-plugin .services-detail-hero__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #868e96;
}

.services-plugin .services-detail-hero__breadcrumb a {
  color: #2c5364;
  text-decoration: none;
  font-weight: 500;
}

.services-plugin .services-detail-hero__breadcrumb a:hover {
  text-decoration: underline;
}

.services-plugin .services-detail-hero__breadcrumb-sep {
  color: #ced4da;
}

.services-plugin .services-detail-hero__title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
  margin: 0 0 8px;
  font-weight: 700;
  color: #212529;
}

.services-plugin .services-detail-hero__lead {
  color: #6c757d;
  margin: 0 0 10px;
  line-height: 1.5;
  font-size: 14px;
}

.services-plugin .services-detail-hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #495057;
}

.services-plugin .services-detail-hero__meta-user,
.services-plugin .services-detail-hero__meta-page,
.services-plugin .services-detail-hero__meta-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.services-plugin .services-detail-hero__meta-user img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.services-plugin .services-detail-hero__meta-user:hover,
.services-plugin .services-detail-hero__meta-page:hover,
.services-plugin .services-detail-hero__meta-rating:hover {
  color: #2c5364;
}

.services-plugin .services-detail-hero__meta-dot {
  color: #ced4da;
}

.services-plugin .services-detail-hero__meta-rating .fa-star {
  color: #f0ad4e;
  font-size: 12px;
}

.services-plugin .services-detail-hero__meta-rating .fa-star-o {
  color: #ced4da;
  font-size: 12px;
}

.services-plugin .services-detail-hero__meta-rating.is-empty {
  color: #868e96;
}

.services-plugin .services-detail-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.services-plugin .services-detail-hero__tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  background: #f4f6f8;
  color: #495057;
  font-size: 12px;
  line-height: 1.4;
}

.services-plugin .services-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.services-plugin .services-dashboard-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}

.services-plugin .services-dashboard-actions .btn-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.services-plugin .services-dashboard-table td {
  vertical-align: middle;
}

.services-plugin .services-analytics-metric {
  height: 100%;
  padding: 14px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  background: #f8fafb;
}

.services-plugin .services-analytics-metric__value {
  font-size: 1.35rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.2;
}

.services-plugin .services-analytics-metric__label {
  font-size: 12px;
  font-weight: 600;
  color: #495057;
  margin-top: 4px;
}

.services-plugin .services-analytics-metric__hint {
  font-size: 11px;
  margin-top: 2px;
}

.services-plugin .services-request-card {
  border: 1px solid #e9ecef;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.services-plugin .services-request-card:hover {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.services-plugin .services-request-card__head {
  padding: 18px 18px 0;
}

.services-plugin .services-request-card__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.services-plugin .services-request-card__category {
  font-size: 12px;
  font-weight: 600;
  color: var(--link-color);
}

.services-plugin .services-request-card__title {
  font-size: 18px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.services-plugin .services-request-card__title a {
  color: inherit;
}

.services-plugin .services-request-card__excerpt {
  margin: 0;
  color: #6c757d;
  font-size: 13px;
  line-height: 1.5;
  min-height: 58px;
}

.services-plugin .services-request-card__body {
  padding: 14px 18px 0;
}

.services-plugin .services-request-card__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.services-plugin .services-request-card__facts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #495057;
}

.services-plugin .services-request-card__facts i {
  width: 14px;
  color: #8898a8;
  margin-top: 2px;
}

.services-plugin .services-request-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 18px;
  margin-top: 14px;
  border-top: 1px solid #eef1f4;
}

.services-plugin .services-request-success__icon {
  font-size: 56px;
  color: #2dce89;
}

.services-plugin .services-request-detail__title {
  line-height: 1.3;
}

.services-plugin .services-request-detail__aside .services-request-detail__stat + .services-request-detail__stat {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eef1f4;
}

.services-plugin .services-request-detail__stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8898a8;
  margin-bottom: 4px;
}

.services-plugin .services-request-detail__stat-value {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.services-plugin .services-request-card__meta > div + div {
  margin-top: 4px;
}

.services-plugin .services-offer-row:last-child {
  border-bottom: 0 !important;
}

.services-plugin .services-request-detail__description img {
  max-width: 100%;
  height: auto;
}

.services-plugin .services-request-attachment--image {
  display: block;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.services-plugin .services-request-attachment--file {
  display: block;
  color: inherit;
  text-decoration: none;
}

.services-plugin .services-request-attachment--file:hover {
  background: #f8f9fa;
}

.services-plugin .services-request-attachment__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.services-plugin .services-request-detail__description p:last-child {
  margin-bottom: 0;
}

.services-plugin .services-requests-nav {
  margin-bottom: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
}

.services-plugin .services-requests-nav::-webkit-scrollbar {
  display: none;
}

.services-plugin .services-requests-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  min-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-plugin .services-requests-nav__list > li {
  float: none !important;
  flex: 0 0 auto;
}

.services-plugin .services-requests-nav__list > li > a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 100%;
  padding: 10px 14px;
  font-size: 13px;
}

.services-plugin .services-detail-reviews__head {
  font-weight: 600;
}

.services-plugin .services-detail-review {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #f1f3f5;
}

.services-plugin .services-detail-review:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.services-plugin .services-detail-review__avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.services-plugin .services-detail-review__body {
  flex: 1;
  min-width: 0;
}

.services-plugin .services-detail-review__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.services-plugin .services-detail-review__author {
  font-weight: 600;
  color: #212529;
  text-decoration: none;
}

.services-plugin .services-detail-review__stars .fa-star {
  color: #f0ad4e;
  font-size: 12px;
}

.services-plugin .services-detail-review__stars .fa-star-o {
  color: #ced4da;
  font-size: 12px;
}

.services-plugin .services-detail-review__text {
  color: #495057;
  line-height: 1.55;
  font-size: 14px;
}

.services-plugin .services-review-stars {
  display: flex;
  gap: 4px;
}

.services-plugin .services-review-stars__btn {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  color: #ced4da;
  cursor: pointer;
}

.services-plugin .services-review-stars__btn .fa-star {
  color: #f0ad4e;
}

.services-plugin .services-review-stars__btn.is-active .fa-star-o,
.services-plugin .services-review-stars__btn:hover .fa-star-o {
  color: #f0ad4e;
}

.services-plugin .services-detail-pricebox {
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafb 0%, #f1f5f7 100%);
  border: 1px solid #e3e9ed;
  text-align: center;
}

.services-plugin .services-detail-pricebox__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
  margin-bottom: 6px;
}

.services-plugin .services-detail-pricebox__old {
  font-size: 14px;
  color: #adb5bd;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.services-plugin .services-detail-pricebox__amount {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #2c5364;
}

.services-plugin .services-detail-sidebar {
  position: sticky;
  top: 88px;
}

.services-plugin .services-detail-meta-block__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6c757d;
  margin-bottom: 8px;
}

.services-plugin .services-detail-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.services-plugin .services-detail-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f3f5;
  border: 1px solid #e9ecef;
  font-size: 12px;
  color: #495057;
  line-height: 1.4;
}

.services-plugin .services-detail-gallery {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.services-plugin .services-detail-gallery[data-count="1"] {
  grid-template-columns: 1fr;
}

.services-plugin .services-detail-gallery[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
}

.services-plugin .services-detail-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f6f8;
  aspect-ratio: 1 / 1;
}

.services-plugin .services-detail-gallery[data-count="1"] .services-detail-gallery__item {
  aspect-ratio: 16 / 10;
}

.services-plugin .services-detail-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.services-plugin .services-detail-gallery__item:hover img {
  transform: scale(1.04);
}

.services-plugin .services-detail-videos {
  display: grid;
  gap: 16px;
}

.services-plugin .services-detail-video {
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.services-plugin .services-detail-video__title {
  padding: 8px 12px;
  font-size: 13px;
  color: #6c757d;
  background: #f8f9fa;
}

.services-plugin .services-detail-documents {
  display: grid;
  gap: 8px;
}

.services-plugin .services-detail-document {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  text-decoration: none;
  color: #212529;
  background: #fafbfc;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.services-plugin .services-detail-document:hover {
  border-color: #2c5364;
  background: #f0f7fa;
  color: #212529;
}

.services-plugin .services-detail-document i {
  color: #2c5364;
}

.services-plugin .services-detail-packages {
  display: grid;
  gap: 12px;
}

.services-plugin .services-detail-package {
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}

.services-plugin .services-detail-package.is-default {
  border-color: #2c5364;
  box-shadow: 0 4px 14px rgba(44, 83, 100, 0.08);
}

.services-plugin .services-detail-package__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.services-plugin .services-detail-package__name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
}

.services-plugin .services-detail-package__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.services-plugin .services-detail-package__price {
  text-align: right;
  flex-shrink: 0;
}

.services-plugin .services-detail-package__price-current {
  display: block;
  font-weight: 700;
  color: #2c5364;
  white-space: nowrap;
}

.services-plugin .services-detail-package__price-old {
  display: block;
  font-size: 12px;
  color: #6c757d;
  text-decoration: line-through;
}

.services-plugin .services-detail-package__desc {
  margin: 10px 0 0;
  font-size: 13px;
  color: #6c757d;
  line-height: 1.45;
}

.services-plugin .services-detail-package__extras {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  border-top: 1px solid #eef1f4;
  padding-top: 10px;
}

.services-plugin .services-detail-package__extras li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 4px 0;
  color: #495057;
}

.services-plugin .services-detail-package__actions {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid #eef1f4;
}

@media (max-width: 991px) {
  .services-plugin .services-detail-sidebar {
    position: static;
  }

  .services-plugin .services-detail-hero__layout {
    flex-direction: column;
  }

  .services-plugin .services-detail-hero__thumb {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: unset;
    aspect-ratio: 4 / 3;
    align-self: auto;
    border-right: 0;
    border-bottom: 1px solid #e9ecef;
  }

  .services-plugin .services-detail-hero__body {
    padding: 20px;
  }

  .services-plugin .services-detail-hero__aside {
    flex: 1 1 100%;
    max-width: none;
    padding: 0 20px 20px;
  }
}

@media (max-width: 575px) {
  .services-plugin .services-detail-gallery,
  .services-plugin .services-detail-gallery[data-count="many"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-plugin .services-visibility-option {
  display: block;
  margin: 0;
  cursor: pointer;
}

.services-plugin .services-visibility-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.services-plugin .services-visibility-card {
  display: block;
  height: 100%;
  padding: 14px 16px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.services-plugin .services-visibility-option input:checked + .services-visibility-card {
  border-color: var(--bs-primary, #0d6efd);
  box-shadow: 0 0 0 1px var(--bs-primary, #0d6efd);
}

/* Booking wizard */
.services-plugin .services-booking-card {
  scroll-margin-top: 90px;
}

.services-plugin .services-booking-wizard__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 18px;
}

.services-plugin .services-booking-wizard__step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  background: #fff;
  color: #6c757d;
  text-align: left;
  transition: all 0.15s ease;
}

.services-plugin .services-booking-wizard__step:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.services-plugin .services-booking-wizard__step.is-active {
  border-color: #0d6efd;
  background: #f3f8ff;
  color: #0d6efd;
  box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.15);
}

.services-plugin .services-booking-wizard__step.is-done {
  border-color: #cfe2ff;
  color: #0d6efd;
}

.services-plugin .services-booking-wizard__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  background: #eef2f6;
  flex-shrink: 0;
}

.services-plugin .services-booking-wizard__step.is-active .services-booking-wizard__step-num,
.services-plugin .services-booking-wizard__step.is-done .services-booking-wizard__step-num {
  background: #0d6efd;
  color: #fff;
}

.services-plugin .services-booking-wizard__step-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.services-plugin .services-booking-wizard__panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-plugin .services-booking-wizard__panel {
  display: none;
  border: 1px solid #e8ecf0;
  border-radius: 12px;
  padding: 14px;
  background: #fafbfc;
  min-height: 280px;
}

.services-plugin .services-booking-wizard__panel.is-active {
  display: block;
}

@media (min-width: 992px) {
  .services-plugin .services-booking-wizard__panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-plugin .services-booking-wizard__panel {
    display: block;
    opacity: 0.45;
    pointer-events: none;
  }

  .services-plugin .services-booking-wizard__panel.is-unlocked {
    opacity: 1;
    pointer-events: auto;
  }

  .services-plugin .services-booking-wizard__panel.is-active {
    border-color: #0d6efd;
    box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.12);
  }
}

.services-plugin .services-booking-wizard__summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

.services-plugin .services-booking-wizard__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e9ecef;
}

.services-plugin .services-booking-widget {
  border: none;
  padding: 0;
  background: transparent;
}

/* Booking calendar */
.services-plugin .services-booking-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.services-plugin .services-booking-cal__title {
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  flex: 1;
}

.services-plugin .services-booking-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
}

.services-plugin .services-booking-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.services-plugin .services-booking-cal__day {
  aspect-ratio: 1;
  border: none;
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #212529;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.services-plugin .services-booking-cal__day.is-empty {
  background: transparent;
}

.services-plugin .services-booking-cal__day.is-disabled {
  color: #ced4da;
  background: #f1f3f5;
  cursor: not-allowed;
}

.services-plugin .services-booking-cal__day.is-available:hover {
  background: #e7f1ff;
  color: #0d6efd;
}

.services-plugin .services-booking-cal__day.is-selected {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

.services-plugin .services-booking-cal__loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 16px;
  color: #6c757d;
  font-size: 13px;
}

.services-plugin .services-booking-slots__label {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
}

.services-plugin .services-booking-slots__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.services-plugin .services-booking-slot-chip {
  border: 1px solid #dee2e6;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  transition: all 0.15s ease;
}

.services-plugin .services-booking-slot-chip:hover {
  border-color: #0d6efd;
  color: #0d6efd;
}

.services-plugin .services-booking-slot-chip.is-selected {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

@media (max-width: 991.98px) {
  .services-plugin .services-booking-wizard__panels {
    grid-template-columns: 1fr;
  }

  .services-plugin .services-booking-wizard__panel {
    min-height: auto;
  }
}

/* Order detail */
.services-plugin .services-order-detail__hero {
  padding: 24px;
}

.services-plugin .services-order-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
}

.services-plugin .services-order-detail__amount-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 16px;
  text-align: right;
}

.services-plugin .services-order-detail__amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
}

.services-plugin .services-order-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.services-plugin .services-order-timeline__step {
  position: relative;
  flex: 1 1 120px;
  min-width: 110px;
  padding-top: 18px;
  text-align: center;
}

.services-plugin .services-order-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #dee2e6;
  margin: 0 auto 8px;
}

.services-plugin .services-order-timeline__step.is-done .services-order-timeline__dot {
  background: #198754;
}

.services-plugin .services-order-timeline__step.is-current .services-order-timeline__dot {
  background: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

.services-plugin .services-order-timeline__label {
  font-size: 12px;
  color: #6c757d;
}

.services-plugin .services-order-timeline__step.is-current .services-order-timeline__label {
  color: #0d6efd;
  font-weight: 600;
}

.services-plugin .services-order-card {
  background: #fff;
}

.services-plugin .services-resolution-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-plugin .services-resolution-message {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  background: #fff;
  max-width: 84%;
}

.services-plugin .services-resolution-message.is-system {
  background: #f8f9fa;
  border-style: dashed;
  margin-left: auto;
  margin-right: auto;
  max-width: 92%;
}

.services-plugin .services-resolution-message.is-own {
  margin-left: auto;
  background: #f3f8ff;
  border-color: #d9e9ff;
}

.services-plugin .services-resolution-message.is-other {
  margin-right: auto;
  background: #f9fafb;
}

.services-plugin .services-resolution-message.is-admin {
  background: #fff9ef;
  border-color: #ffe5b4;
}

.services-plugin .services-resolution-message__head {
  margin-bottom: 6px;
}

.services-plugin .services-resolution-message__text {
  white-space: pre-wrap;
  word-break: break-word;
}

.services-plugin .services-resolution-page .btn-danger,
.services-plugin .services-order-detail .btn-danger {
  color: #fff !important;
}
