/* Public styles placeholder for GutoListing. */

/* Auth tabs */
.el-auth-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}

.el-auth-tab {
	padding: 8px 12px;
	border: 1px solid #ccd0d4;
	background: #f6f7f7;
	cursor: pointer;
}

.el-auth-tab.is-active {
	background: #fff;
	border-bottom-color: #fff;
}

.el-auth-panel {
	display: none;
}

.el-auth-panel.is-active {
	display: block;
}

.el-auth-message {
	margin: 8px 0;
	padding: 8px 10px;
	border: 1px solid transparent;
	display: none;
  border-radius: 10px;
}

.el-auth-message.is-success {
  border-radius: 10px;
	display: block;
	border-color: #00a32a;
	color: #1d2327;
	background: #edfaef;
}

.el-auth-message.is-error {
	display: block;
	border-color: #d63638;
	color: #1d2327;
	background: #fcf4f3;
}


.el-add-listing__form {
  display: grid;
  gap: 16px;
  width: 100%;
}

.el-add-listing .el-dashboard__form-row textarea,
.el-add-listing .el-dashboard__form-row select {
  border: 1px solid #c3c4c7;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1.4;
}

.el-add-listing .el-dashboard__form-row textarea:focus,
.el-add-listing .el-dashboard__form-row select:focus {
  border-color: var(--el-primary-color);
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
  outline: none;
}

/* Add Listing shortcode wrapper */
.el-add-listing .el-add-listing__form{
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: auto;
  position: relative;
}

.el-dashboard-page .el-add-listing .el-add-listing__form {
  max-width: 100%;
  margin: 0;
  padding-right: 32px;
  width: auto;
}

.el-add-listing__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.el-add-listing__title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.el-add-listing__header h2 {
  margin-bottom: 0;
}

.el-add-listing__subhead {
  margin: 6px 0 0;
  color: #6b7280;
  font-size: 14px;
}

.el-add-listing__header .el-ai-generate-btn {
  position: static;
  margin: 0;
}

.el-ai-generate-btn--icon {
    width: 47px;
    height: 26px;
    justify-content: center;
}

.el-ai-generate-btn--icon i {
  width: 16px;
  height: 16px;
}

.el-add-listing h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  color: #111827;
}

.el-add-listing .el-dashboard__section {
  margin-top: 12px;
}

.el-add-listing .description {
  color: #6b7280;
  font-size: 13px;
  margin-top: 4px;
}
.el-container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.el-directory-type-selection {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.el-directory-type-selection__hint {
  margin: 0;
  font-size: 14px;
  color: #475569;
}

.el-directory-type-selection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.el-directory-type-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.el-directory-type-card:hover,
.el-directory-type-card:focus-visible {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.18);
}

.el-directory-type-card.is-active {
  border-color: var(--el-primary-color, #2563eb);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.25);
  transform: translateY(-1px);
}

.el-directory-type-card__name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.el-directory-type-card__slug {
  font-size: 14px;
  color: #475569;
}

.el-directory-type-card__meta {
  font-size: 12px;
  color: #6b7280;
}

.el-directory-type-select-wrapper {
  position: relative;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}


/* Cards */
.el-card-grid {
  --el-card-cols: auto-fit;
  display: grid;
  grid-template-columns: repeat(var(--el-card-cols), minmax(300px, 1fr));
  gap: 16px;
}

.el-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.el-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.el-card__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #f4f5f6;
  overflow: hidden;
  position: relative;
}

.el-card__thumb picture {
  display: block;
  width: 100%;
  height: 100%;
}

.el-card.is-compact .el-card__thumb {
  aspect-ratio: 16 / 9;
  height: 140px;
}

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

.el-card:hover .el-card__thumb img {
  transform: scale(1.04);
}

.el-card__thumb--placeholder {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, #f4f5f6, #f4f5f6 10px, #e5e7eb 10px, #e5e7eb 20px);
}

.el-card__body {
  padding: 12px 14px;
  flex: 1;
}

.el-card__title {
  margin: 0 0 6px;
  font-size: 16px;
}
.el-card__title a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: var(--el-dark-color);
}

.el-card__title a:hover {
  color: var(--el-primary-color);
}

.el-card__meta {
  margin: 0 0 6px;
  color: #6b7280;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-right: 10px;
}

.el-card__meta-view {
  float: right;
}

.el-card__reviews {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 6px;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 4px 8px;
  width: fit-content;
}

.el-card__reviews:hover {
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.35);
}

.el-card__reviews.is-empty {
  color: #9ca3af;
  background: transparent;
  border-color: transparent;
}

.el-card__reviews-stars .el-stars {
  display: inline-flex;
  gap: 2px;
}

.el-card__reviews-stars .el-star {
  font-size: 15px;
  color: #d1d5db;
}

.el-card__reviews-stars .el-star.is-filled {
  color: #fbbf24;
}

.el-card__reviews-score {
  font-weight: 700;
  color: var(--el-primary-color, #3b82f6);
}

.el-card__reviews-count {
  color: inherit;
}

.el-card__tax {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  position: absolute;
  top: 15px;
}

.el-card__badge {
  background: #eef2ff;
  color: #3730a3;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.el-card__excerpt {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
}

.el-card__footer {
  padding: 12px 14px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.el-card__footer .guto-listing-btn {
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 8px;
  box-shadow: none;
  gap: 0;
}
.el-card__meta svg {
  width: 18px;
}

.el-card__footer .guto-listing-btn-primary svg {
    margin-right: 0;
    width: 21px;
}

.el-card__footer .guto-listing-btn-primary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #d1d5db;
}

.el-card__footer .guto-listing-btn-primary:hover {
  background: #f8fafc;
  border-color: var(--el-primary-color, #3b82f6);
  color: var(--el-primary-color, #3b82f6);
}

.el-card__footer .guto-listing-btn i {
  width: 14px;
  height: 14px;
}

.el-card__price {
  margin: 6px 0 8px;
  font-size: 18px;
  color: var(--el-primary-color, #3b82f6);
  font-weight: 700;
  display: block;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  border: 1px solid #dbe3ff;
  border-radius: 8px;
  padding: 4px 8px;
  white-space: nowrap;
  width: fit-content;
}

.el-card__meta i,
.el-card__badge i {
  width: 14px;
  height: 14px;
  color: #3e64de;
}

.guto-listing-single-sidebar {
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guto-listing-single-sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 15px;
}

.el-listing-sidebar-author .el-author-mini {
  display: flex;
  gap: 12px;
  align-items: center;
}

.el-listing-sidebar-author .el-author-mini__avatar img {
  border-radius: 50%;
}

.el-listing-sidebar-author .el-author-mini__meta .el-author-mini__name {
  font-weight: 700;
  color: #0f172a;
}

.el-listing-sidebar-author .el-author-mini__meta .el-author-mini__since {
  color: #6b7280;
  font-size: 12px;
  margin: 4px 0 8px;
}

.el-listing-sidebar-section-preset h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #0f172a;
  padding-bottom: 10px;
}

.el-listing-sidebar-section-preset ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.el-listing-sidebar-section-preset li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #111827;
  justify-content: space-between;
}

.el-listing-sidebar-section-preset li .el-preset-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.el-icon-pill {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border: 1px solid #e5e7eb;
}

.el-icon-pill i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
}

.el-listing-sidebar-section-preset .el-label {
  font-weight: 600;
  color: #111827;
}

.el-listing-sidebar-section-preset .el-value {
  color: #111827;
  word-break: break-word;
  text-align: right;
}

.el-listing-sidebar-section-preset .el-value a {
  color: var(--el-primary-color);
  text-decoration: none;
}

.el-listing-sidebar-section-preset .el-value a:hover {
  text-decoration: underline;
}

.el-listing-contact-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.el-listing-contact-form input[type="text"],
.el-listing-contact-form input[type="email"],
.el-listing-contact-form textarea {
	width: -webkit-fill-available;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.el-listing-contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.el-listing-contact-form button {
  align-self: flex-start;
  background: var(--el-primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 6px 15px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.el-listing-contact-form button svg{
  width: 15px;
}

.el-listing-contact-form button:hover {
  background: var(--el-secondary-color);
}

.el-contact-choice {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  flex-wrap: wrap;
}

.el-contact-choice__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef2ff;
  border: 1px solid #e5e7eb;
  color: var(--el-primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.el-contact-choice__icon i,
.el-contact-choice__icon svg {
  width: 18px;
  height: 18px;
}

.el-contact-choice__meta {
  flex: 1 1 auto;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.el-contact-choice__label {
  font-weight: 600;
  color: #111827;
}

.el-contact-choice__value {
  color: #6b7280;
  font-size: 13px;
  word-break: break-word;
}

.el-contact-choice__action {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .el-contact-choice__action {
    width: 100%;
    justify-content: center;
  }
}

.el-listing-meta {
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.el-listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.el-listing-tags__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #0f172a;
}

.el-listing-tags__label i[data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--el-primary-color);
}

.el-listing-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.el-listing-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-size: 13px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.el-listing-tag:hover {
  background: #e2e8f0;
  border-color: #cbd5f5;
}

.el-listing-meta .el-meta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.4;
}

.el-listing-meta .el-meta-pill .el-icon-pill {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border: 1px solid #e5e7eb;
}

.el-listing-meta a {
  text-decoration: none;
  color: unset;
}

.el-listing-meta .el-meta-pill .el-icon-pill i[data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--el-primary-color);
}

.el-listing-meta .el-meta-label {
  font-weight: 600;
  color: #0f172a;
}

.el-listing-meta .el-meta-pill--expiry {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .el-listing-meta {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 6px;
  }

  .el-listing-meta .el-meta-pill {
    padding: 7px 8px;
  }
}

.el-listing-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 12px;
}

.el-listing-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #111827;
}

.el-listing-section ul {
  margin: 0;
  padding-left: 18px;
}

.el-listing-section li {
  margin: 6px 0;
  line-height: 1.5;
}

.el-listing-gallery {
  margin-top: 16px;
}

.el-listing-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.el-listing-gallery__item picture {
  display: block;
}

.el-slider {
  margin-bottom: 16px;
}
.el-slider__main {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.el-slider__slide {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.el-slider__slide.is-active {
  display: block;
  opacity: 1;
}
.el-slider__slide picture {
  display: block;
}
.el-slider__slide img {
	width: 100%;
    display: block;
    border-radius: 12px;
    height: 500px;
    object-fit: cover;
}
.el-slider__control {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.el-slider__control i[data-lucide] {
  width: 18px;
  height: 18px;
}
.el-slider__control.is-prev {
  left: 12px;
}
.el-slider__control.is-next {
  right: 12px;
}
.el-slider__control:hover {
  background: #fff;
}

.el-listing-map {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  height: 320px;
  background: #f8fafc;
}

.el-pagination {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.el-pagination__meta {
  margin-right: auto;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

.el-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 3px 4px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s ease;
}

.el-pagination .page-numbers:hover {
  border-color: var(--el-primary-color, #3b82f6);
  color: var(--el-primary-color, #3b82f6);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.12);
}

.el-pagination .page-numbers.current {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.el-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  box-shadow: none;
  color: #6b7280;
}

/* Listing filters */
.el-all-listings {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  grid-template-areas:
    "banner banner"
    "sidebar results";
  gap: 20px;
  align-items: start;
  transition: grid-template-columns 0.3s ease, column-gap 0.3s ease;
}

.el-all-listings > * {
  min-width: 0;
}

.el-all-listings.is-simple {
  display: block;
}

.el-all-listings.is-sidebar-collapsed {
  grid-template-columns: 0 1fr;
  column-gap: 0;
}

.el-listing-banner {
  grid-area: banner;
  background: linear-gradient(135deg, #f3f7ff 0%, #eef2ff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.el-listing-banner__fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.el-listing-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.el-listing-banner__clear {
  position: absolute;
  top: -18px;
  right: 16px;
}

.el-listing-filters {
  grid-area: sidebar;
  position: sticky;
  top: 24px;
  align-self: start;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform-origin: left top;
}

.el-all-listings.is-sidebar-collapsed .el-listing-filters {
  opacity: 0;
  transform: translateX(-12px);
  visibility: hidden;
  pointer-events: none;
  height: 100%;
}

.el-listing-filters__panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  position: relative;
}

.el-listing-filters__backdrop {
  display: none;
}

.el-listing-filters__mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.el-listing-filters__title {
  font-weight: 600;
  color: #0f172a;
}

.el-listing-filters__close {
  border: none;
  background: #f3f4f6;
  color: #111827;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.el-filters-modal-open {
  overflow: hidden;
}

.el-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
}

.el-filter-toggle i {
  width: 18px;
  height: 18px;
}

.el-listing-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.el-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e5e7eb;
}

.el-filter-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.el-filter-group--stacked {
  gap: 10px;
}

.el-filter-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.el-filter-control {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #0f172a;
}

.el-filter-control--stacked {
  gap: 4px;
}

.el-filter-control input,
.el-filter-control select,
.el-filter-group input,
.el-filter-group select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  width: -webkit-fill-available;
  background: #fff;
}

.el-location-search {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.el-location-search__input {
  width: 100%;
}

.el-location-search__list {
  list-style: none;
  margin: 0;
  padding: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.el-location-search.is-open .el-location-search__list {
  display: block;
  position: absolute;
  top: 40px;
  width: 100%;
  z-index: 9;
}

.el-location-search__item {
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  color: #0f172a;
}

.el-location-search__item:hover,
.el-location-search__item.is-selected {
  background: #eef2ff;
  color: #1d4ed8;
}

.el-location-search__item.is-hidden {
  display: none;
}

.el-location-search__item.is-empty {
  cursor: default;
  color: #94a3b8;
}

.el-filter-control input:focus,
.el-filter-control select:focus,
.el-filter-group input:focus,
.el-filter-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.el-listing-filters__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.el-listing-filters__actions--stacked {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.el-filter-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.el-filter-action i {
  width: 16px;
  height: 16px;
}

.el-filter-action:hover {
  border-color: var(--el-primary-color, #3b82f6);
  color: var(--el-primary-color, #3b82f6);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.12);
}

.el-listing-filters__actions--stacked .el-filter-action {
  width: 100%;
  justify-content: center;
}

.el-listing-results {
  grid-area: results;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.el-all-listings.is-loading .el-listing-results {
  opacity: 0.6;
  pointer-events: none;
}

.el-all-listings.is-loading .el-listing-results::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.el-all-listings.is-loading .el-listing-results::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 3px solid #e5e7eb;
  border-top-color: var(--el-primary-color, #3b82f6);
  border-radius: 50%;
  animation: el-spin 0.8s linear infinite;
  z-index: 2;
}

@keyframes el-spin {
  to {
    transform: rotate(360deg);
  }
}

.el-listing-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px 0;
}

.el-listing-results__meta {
  font-weight: 600;
  color: #0f172a;
}

.el-sidebar-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.el-sidebar-toggle i {
  width: 18px;
  height: 18px;
}

.el-empty-state {
  border: 1px dashed #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  background: #f8fafc;
  display: grid;
  gap: 16px;
}

.el-empty-state__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #0f172a;
}

.el-empty-state__content p {
  margin: 0 0 12px;
  color: #6b7280;
}

.el-empty-state__section h4 {
  margin: 0 0 8px;
  font-size: 15px;
  color: #111827;
}

.el-empty-state__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.el-empty-state__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.el-empty-state__tag:hover {
  border-color: var(--el-primary-color, #3b82f6);
  color: var(--el-primary-color, #3b82f6);
  box-shadow: 0 6px 14px rgba(59, 130, 246, 0.15);
}

.el-empty-state__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.el-empty-state__listing {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.el-empty-state__listing a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.el-empty-state__listing a:hover {
  color: var(--el-primary-color, #3b82f6);
}

.el-empty-state__meta {
  font-size: 12px;
  color: #6b7280;
}

.el-listing-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.el-sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.el-sort-control select {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
}

.el-sort-control select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.el-sort-control__apply {
  padding: 8px 12px;
}

.el-results-body {
  display: block;
}

.el-results-body.is-map-view {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 1.95fr);
  gap: 16px;
  align-items: start;
}

.el-card-grid.is-narrow {
  grid-template-columns: 1fr;
}

.el-results-map {
  width: 100%;
  position: sticky;
  top: 0;
  align-self: start;
}

.el-results-map .el-listing-map {
  height: 100vh;
  min-height: 100vh;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
}

.el-map-marker.leaflet-div-icon {
  background: transparent;
  border: 0;
}

.el-map-marker {
  color: var(--el-primary-color, #3b82f6);
  filter: drop-shadow(0 3px 6px rgba(15, 23, 42, 0.25));
}

.el-map-marker__pin {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
}

.el-map-marker.is-active {
  color: #dc2626;
  filter: drop-shadow(0 8px 12px rgba(220, 38, 38, 0.45));
}

.el-map-marker.is-active .el-map-marker__pin {
  animation: el-map-marker-bounce 0.6s ease-in-out infinite;
}

@keyframes el-map-marker-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.el-results-map__empty {
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  color: #6b7280;
}

.el-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.el-view-toggle__btn {
  width: 38px;
  height: 38px;
  border: 1px solid #d1d5db;
  background: #fff;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.el-view-toggle__btn i[data-lucide] {
  width: 18px;
  height: 18px;
}

.el-view-toggle__btn.is-active {
  border-color: var(--el-primary-color, #3b82f6);
  color: #0f172a;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.12);
  background: #eef2ff;
}

.el-view-toggle__btn:hover {
  border-color: var(--el-primary-color, #3b82f6);
}

.el-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.el-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #0f172a;
}

.el-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3b82f6;
}

.el-page-warp {
	padding-top: 50px;
	padding-bottom: 50px;
  max-width: 100%;
}

.el-page-warp.el-dashboard-page {
	padding-top: 24px;
	padding-bottom: 32px;
}

@media (max-width: 1440px) {
  .el-card-grid,
  .el-card-grid.is-narrow {
    --el-card-cols: auto-fit !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 1024px) {
  .el-all-listings {
    grid-template-columns: 1fr;
    grid-template-areas:
      "banner"
      "results";
  }

  .el-all-listings.is-sidebar-collapsed {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .el-all-listings.is-sidebar-collapsed .el-listing-filters {
    opacity: 1;
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .el-sidebar-toggle {
    display: none;
  }

  .el-listing-filters {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    padding: 0;
    background: transparent;
  }

  .el-listing-filters.is-open {
    display: block;
  }

  .el-listing-filters__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .el-listing-filters__panel {
    position: absolute;
    inset: 80px 0 0;
    max-height: calc(100vh - 96px);
    overflow: auto;
    border-radius: 0;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  }

  .el-listing-filters__mobile-header {
    display: flex;
    position: sticky;
    top: 0;
    background: #ffffff;
    padding-bottom: 8px;
    z-index: 1;
  }

  .el-filter-toggle {
    display: inline-flex;
  }

  .el-filter-toggle__label {
    display: none;
  }

  .el-listing-banner__actions {
    justify-content: flex-start;
  }

  .el-listing-results__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .el-listing-sort {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .el-results-body.is-map-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .el-results-map .el-listing-map {
    height: min(60vh, 420px);
  }

  .el-results-map {
    position: static;
    top: auto;
  }

  .el-results-body.is-map-view .el-results-map {
    order: -1;
  }

  .el-card-grid,
  .el-card-grid.is-narrow {
    --el-card-cols: auto-fit !important;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .el-filter-toggle__label {
    display: inline;
  }
}

@media (max-width: 768px) {
  .el-listing-banner {
    padding: 14px;
  }

  .el-listing-banner__fields {
    grid-template-columns: 1fr;
  }

  .el-listing-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .el-listing-banner__actions .guto-listing-btn {
    width: 100%;
    justify-content: center;
  }

  .el-listing-banner__clear {
    position: static;
    width: 100%;
  }

  .el-listing-results__header {
    gap: 10px;
  }

  .el-listing-sort {
    flex-direction: column;
    align-items: stretch;
  }

  .el-sort-control {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .el-sort-control select {
    width: 100%;
  }

  .el-view-toggle {
    width: 100%;
    justify-content: flex-start;
  }

  .el-results-map .el-listing-map {
    height: min(55vh, 360px);
  }

  .el-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .el-card__footer .guto-listing-btn {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .el-card-grid,
  .el-card-grid.is-narrow {
    grid-template-columns: 1fr;
  }

  .el-results-map .el-listing-map {
    height: min(50vh, 320px);
  }
}

.el-listing-section {
	margin-top: 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 20px;
}

.el-listing-section-reviews {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.el-reviews-block {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.el-reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  background: #f9fafb;
}

.el-reviews-summary__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #111827;
}

.el-reviews-summary__score {
  font-size: 32px;
  line-height: 1;
  color: #111827;
}

.el-reviews-summary__stars .el-stars {
  display: inline-flex;
  gap: 2px;
}

.el-stars .el-star {
  color: #d1d5db;
  font-size: 18px;
}

.el-stars .el-star.is-filled {
  color: #fbbf24;
}

.el-reviews-summary__count {
  color: #6b7280;
  font-size: 14px;
}

.el-reviews-summary__cta .guto-listing-btn {
  margin-left: auto;
}

.el-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.el-review-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}

.el-review-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.el-review-item__author {
  font-weight: 600;
  color: #111827;
}

.el-review-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 14px;
}

.el-review-item__stars .el-stars {
  display: inline-flex;
  gap: 2px;
}

.el-review-item__date {
  white-space: nowrap;
}

.el-review-item__content p {
  margin: 0 0 6px;
  color: #1f2937;
}

.el-review-reply {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
}

.el-review-reply__label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.el-review-reply-form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.el-review-reply-form textarea {
  min-height: 80px;
  border: 1px solid #c3c4c7;
  border-radius: 6px;
  padding: 12px 10px;
  font-size: 14px;
  line-height: 1.4;
  width: -webkit-fill-available;
}

button.guto-listing-btn.guto-listing-btn-ghost {
    width: min-content;
}

.el-review-item__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.el-review-photo {
  cursor: zoom-in;
}

.el-review-photo:focus {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.el-review-photo img {
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  display: block;
}

.el-review-photo picture {
  display: block;
}

body.el-review-photo-open {
  overflow: hidden;
}

.el-review-photo-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.el-review-photo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.el-review-photo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
}

.el-review-photo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 1600px);
  max-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.el-review-photo-modal__image {
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 12px;
  background: #0f172a;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.4);
}

.el-review-photo-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.el-review-photo-modal__close:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.el-reviews-pagination {
  margin-top: 12px;
  text-align: center;
}

.el-reviews-pagination .page-numbers {
  display: inline-block;
  padding: 6px 10px;
  margin: 0 2px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  color: #111827;
  text-decoration: none;
}

.el-reviews-pagination .page-numbers.current {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.el-reviews-pagination .page-numbers:hover {
  border-color: #9ca3af;
  color: #111827;
}

.el-dashboard {
  margin-top: 16px;
  min-width: 0;
}

.el-dashboard-nav {
  position: relative;
}

.el-dashboard-page .el-container {
  max-width: 100%;
  width: 100%;
  padding: 0 24px 24px;
  box-sizing: border-box;
  max-width: 100vw;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.el-dashboard-page .el-container > :not(.el-dashboard-nav) {
  grid-column: 2;
  min-width: 0;
}

.el-dashboard-page {
  overflow-x: hidden;
}

.el-dashboard-page .el-dashboard-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px;
}

.el-dashboard-page .el-dashboard-nav ul {
  margin: 0;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: visible;
}

.el-dashboard-page .el-dashboard-nav li {
  width: 100%;
}

.el-dashboard-page .el-dashboard-nav a {
  width: -webkit-fill-available;
  justify-content: flex-start;
}

.el-dashboard-page .el-dashboard-nav__spacer {
  display: none;
}

.el-dashboard-nav ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0 0 4px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.el-dashboard-nav li {
  margin: 0;
  flex: 0 0 auto;
}

.el-dashboard-nav a {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.el-dashboard-nav ul::-webkit-scrollbar {
  height: 6px;
}

.el-dashboard-nav ul::-webkit-scrollbar-track {
  background: transparent;
}

.el-dashboard-nav ul::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.2);
  border-radius: 999px;
}

.el-dashboard-nav li.is-active a {
  background: var(--el-primary-color);
  color: #fff;
  border-color: var(--el-primary-color);
}

.el-dashboard-nav i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
  background: #eef2ff;
  border-radius: 8px;
  padding: 4px;
}

.el-dashboard-nav__toggle {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
}

.el-dashboard-nav__toggle i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
  background: #eef2ff;
  border-radius: 8px;
  padding: 4px;
}

.el-dashboard-nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.el-dashboard-nav__spacer {
  flex: 1 1 auto;
}

body.el-dashboard-nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .el-dashboard-page .el-container {
    display: block;
    padding: 0 16px 24px;
  }

  .el-dashboard-page .el-dashboard-nav {
    position: relative;
    top: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .el-dashboard-nav {
    margin-bottom: 16px;
  }

  .el-dashboard-nav__toggle {
    display: inline-flex;
  }

  .el-dashboard-nav ul {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    padding: 20px 16px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    box-shadow: 10px 0 20px rgba(15, 23, 42, 0.12);
    transform: translateX(-105%);
    transition: transform 0.25s ease;
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .el-dashboard-nav a {
    width: 100%;
    justify-content: flex-start;
  }

  .el-dashboard-nav__spacer {
    display: none;
  }

  .el-dashboard-nav.is-open ul {
    transform: translateX(0);
    padding: 0 15px;
    padding-top: 20px;
  }

  .el-dashboard-nav.is-open .el-dashboard-nav__backdrop {
    display: block;
  }
}

.el-dashboard__messages {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.el-dashboard__message {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.el-dashboard__message-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

.el-dashboard__message.is-error {
  background: #fef2f2;
  border-color: #fecdd3;
  color: #991b1b;
}

.el-dashboard__message.is-success {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.el-dashboard-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.el-dashboard-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.el-dashboard-card__label {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 6px;
}

.el-dashboard-card__value {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.el-dashboard-card i[data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--el-primary-color);
  margin-right: 8px;
}

.el-dashboard-table {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  overflow-x: auto;
}

.el-dashboard-table__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.el-dashboard-table__header .guto-listing-btn,
.el-dashboard-actions .guto-listing-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
}

.el-dashboard-table i[data-lucide] {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  color: var(--el-primary-color);
}

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

.el-dashboard-table th,
.el-dashboard-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid #e5e7eb;
  word-break: break-word;
  white-space: normal;
}

.el-dashboard-table tr:last-child td {
  border-bottom: none;
}

.el-dashboard-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.el-dashboard-actions .guto-listing-btn {
  border-radius: 999px;
  padding: 6px 12px;
}

.el-dashboard-actions .guto-listing-btn.view-btn {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.el-dashboard-actions .guto-listing-btn.edit-btn {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #1d4ed8;
}

.el-dashboard-actions .guto-listing-btn.delete-btn {
  background: #fef2f2;
  border-color: #fecdd3;
  color: #b91c1c;
}

.el-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1f2937;
  font-size: 11px;
  border: 1px solid #e5e7eb;
}

.el-badge--sold {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.el-dashboard-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e0e7ff, #eef2ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.el-dashboard-table td .el-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 10px;
  font-size: 13px;
  border: 1px solid;
}

.el-dashboard-table td .el-badge-status + .el-badge-status {
  margin-left: 6px;
}

.el-dashboard-table td .el-badge-status i[data-lucide] {
  margin: 0;
  color: var(--el-primary-color);
}

.el-badge-status.status-publish {
  background: #ecfdf3;
  border-color: #bbf7d0;
  color: #166534;
}

.el-badge-status.status-pending {
  background: #fefce8;
  border-color: #fef08a;
  color: #854d0e;
}

.el-badge-status.status-draft {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #0f172a;
}

.el-badge-status.status-sold {
  background: #fee2e2;
  border-color: #fecaca;
  color: #991b1b;
}

.el-dashboard-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.el-dashboard-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}

.el-dashboard-section h3 i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
  background: #eef2ff;
  border-radius: 8px;
  padding: 4px;
}

.el-dashboard__form--two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 14px;
}

.el-dashboard__form--two-col .el-dashboard__form-row {
  margin-bottom: 0;
}

.el-dashboard__form-row.full-row {
  grid-column: 1 / -1;
}

/* Sign In / Sign Up */
.el-auth {
  background: #f9fafb;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  max-width: 600px;
  margin: auto;
}

.el-auth-alert {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #0f172a;
  margin-bottom: 12px;
}

.el-auth-alert.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.el-auth-tabs {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.el-auth-tab {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.el-auth-tab i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
  background: #eef2ff;
  border-radius: 8px;
  padding: 4px;
}

.el-auth-tab.is-active {
  background: var(--el-primary-color);
  color: #fff;
  border-color: var(--el-primary-color);
}

.el-auth-tab.is-active i[data-lucide] {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

.el-auth-social {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 12px;
}

.el-auth-social__label {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.el-auth-social__buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.el-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.el-social-btn:hover {
  border-color: var(--el-primary-color);
  color: var(--el-primary-color);
  background: #fff;
}

.el-social-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  background: #e5e7eb;
  color: #111827;
}

.el-social-btn--google .el-social-btn__icon {
  background: #f1f5f9;
  color: #ea4335;
}

.el-social-btn--facebook .el-social-btn__icon {
  background: #e7f0ff;
  color: #1877f2;
}

.el-recaptcha {
  margin: 10px 0;
}

/* Universal Search */
.el-universal-search {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.el-universal-search__header h2 {
  margin: 0 0 6px;
}

.el-universal-search__form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.el-universal-search__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.el-universal-search__bar input[type="search"] {
  flex: 1 1 280px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.el-universal-search__dropdown {
  display: none;
  margin-top: 10px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  max-height: 360px;
  overflow: auto;
}

.el-universal-search__dropdown.is-open {
  display: block;
}

.el-universal-search__dropdown.is-loading {
  display: block;
}

.el-us-suggestions {
  display: flex;
  flex-direction: column;
}

.el-us-suggestions__loading,
.el-us-suggestions__empty {
  padding: 16px;
  font-size: 14px;
  color: #6b7280;
}

.el-us-suggestions__group {
  border-top: 1px solid #f1f5f9;
  padding: 10px 14px 6px;
}

.el-us-suggestions__group:first-child {
  border-top: 0;
}

.el-us-suggestions__group--directories .el-us-suggestions__item {
  background: #f0f9ff;
}

.el-us-suggestions__group--categories .el-us-suggestions__item {
  background: #f0fdf4;
}

.el-us-suggestions__group--tags .el-us-suggestions__item {
  background: #fdf4ff;
}

.el-us-suggestions__group--listings .el-us-suggestions__item {
  background: #f8fafc;
}

.el-us-suggestions__heading {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.el-us-suggestions__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.el-us-suggestions__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #0f172a;
  text-decoration: none;
  background: #f8fafc;
  transition: background 0.2s ease;
}

.el-us-suggestions__item:hover,
.el-us-suggestions__item:focus {
  background: #eef2ff;
}

.el-us-suggestions__title {
  font-size: 14px;
  font-weight: 600;
}

.el-us-suggestions__meta {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
}

.el-us-suggestions__footer {
  border-top: 1px solid #e5e7eb;
  padding: 12px 14px;
  text-align: right;
}

.el-us-suggestions__view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--el-primary-color);
  text-decoration: none;
}

.el-universal-search__filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.el-universal-search__filters label {
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 6px;
}

.el-universal-search__filters select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #fff;
}

.el-filter--actions {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.el-universal-search__directory {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.el-universal-search__directory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.el-universal-search__count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6b7280;
}

.el-universal-search__category {
  margin-top: 12px;
}

.el-universal-search__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.el-universal-search__category-header h4 {
  margin: 0;
  font-size: 16px;
}

.el-universal-search__empty {
  background: #fff;
  border: 1px dashed #cbd5f5;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #6b7280;
}

.el-auth__panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.el-auth__panel h3 {
  margin: 0 0 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.el-auth__panel h3 i[data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
  background: #eef2ff;
  border-radius: 8px;
  padding: 4px;
}

.el-auth-form label {
  font-weight: 600;
  color: #0f172a;
}

.el-auth-form input[type="text"],
.el-auth-form input[type="email"],
.el-auth-form input[type="password"] {
  width: -webkit-fill-available;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 14px 12px;
  font-size: 14px;
  color: #111827;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.el-auth-password-field {
  position: relative;
  display: block;
}

.el-auth-password-field .el-auth-input {
  padding-right: 44px;
}

.el-auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.el-auth-password-toggle i[data-lucide] {
  width: 18px;
  height: 18px;
}

.el-auth-form input[type="text"]:focus,
.el-auth-form input[type="email"]:focus,
.el-auth-form input[type="password"]:focus {
  outline: none;
  border-color: var(--el-primary-color);
  box-shadow: 0 0 0 3px rgba(62, 100, 222, 0.15);
}

.el-auth-password-hint {
  font-size: 13px;
  color: #64748b;
  margin-top: -6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.el-auth-password-generate {
  border: 1px dashed #cbd5f5;
  background: #f8fafc;
  color: #1e293b;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
}

.el-auth-password-generate:hover {
  border-color: #94a3b8;
}

.el-tags-field {
  display: grid;
  gap: 10px;
}

.el-tags-field__selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 36px;
}

.el-tags-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef2ff;
  color: #1e293b;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.el-tags-chip__remove {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #64748b;
}

.el-tags-field__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.el-tags-field__input {
  flex: 1 1 auto;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  color: #111827;
  background: #fff;
}

.el-tags-field__add {
  border: 1px solid #cbd5f5;
  background: #f8fafc;
  color: #1e293b;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
}

.el-tags-field__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  max-height: 160px;
  overflow: auto;
}

.el-tags-option {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
}

.el-tags-empty {
  font-size: 12px;
  color: #94a3b8;
}

.el-auth__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.el-auth__actions .guto-listing-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
}

.el-auth__meta {
  font-size: 13px;
  color: #6b7280;
}

.el-auth__message {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  margin-bottom: 10px;
}
.el-auth .guto-listing-btn svg{
  margin-right: 6px;
}

.el-add-review-form {
  margin-top: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  background: #f9fafb;
}

.el-add-review-form .el-dashboard__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.el-add-review-form .el-dashboard__form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.el-add-review-form label {
  font-weight: 600;
  color: #0f172a;
}

.el-add-review-form select,
.el-add-review-form textarea,
.el-add-review-form input[type="file"] {
  width: -webkit-fill-available;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  color: #111827;
  background: #fff;
}

.el-add-review-form textarea {
  min-height: 120px;
  resize: vertical;
}

.el-add-review-form .guto-listing-btn {
  align-self: flex-start;
  padding: 10px 18px;
}

.el-single-content {
  margin-top: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
}

.el-single-content h1,
.el-single-content h2,
.el-single-content h3,
.el-single-content h4,
.el-single-content h5,
.el-single-content h6 {
  color: #0f172a;
  margin-top: 1em;
  margin-bottom: 0.6em;
  line-height: 1.2;
}

.el-single-content p {
  margin: 0 0 1em;
  color: #111827;
  line-height: 1.7;
}

.el-single-content ul,
.el-single-content ol {
  padding-left: 1.2em;
  margin: 0 0 1em;
  color: #111827;
}

.el-single-content li {
  margin-bottom: 6px;
}

.el-single-content a {
  color: var(--el-primary-color);
  text-decoration: underline;
}

.el-single-content blockquote {
  margin: 1em 0;
  padding: 12px 16px;
  border-left: 4px solid var(--el-primary-color);
  background: #f8fafc;
  color: #0f172a;
}

.el-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.el-single-content table th,
.el-single-content table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
  text-align: left;
}

.el-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.el-single-header {
	position: relative;
}

.el-listing-sidebar-section-preset {
	margin-bottom: 30px;
  position: relative;
}

.el-listing-sidebar-section-preset:last-child {
	margin-bottom: 0;
}

.el-listing-sidebar-section-preset::before {
    content: "";
    background: #d2e0ff;
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -30px;
    border-radius: 50%;
}
.el-listing-sidebar-section-preset:last-child::before {
    display: none;
}
.el-value-with-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.el-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
}

.el-mini-btn i[data-lucide] {
  width: 14px;
  height: 14px;
  color: var(--el-primary-color);
}

.el-mini-btn.el-copy-email:hover {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.el-mini-btn.el-visit-site:hover {
  background: #ecfdf3;
  border-color: #bbf7d0;
}

.el-tooltip {
  position: absolute;
  background: #111827;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translate(-50%, -8px);
  pointer-events: none;
}

.el-favorite-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #111827;
  border-radius: 999px;
  padding: 6px 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.el-favorite-toggle svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.el-favorite-toggle.is-favorited {
  background: #fef3c7;
  border-color: #f59e0b;
  color: #92400e;
}

.el-favorite-toggle.is-favorited i {
  color: #d97706;
}

.el-favorite-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.el-favorite-toggle.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.el-card__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.el-card__quick-view {
    position: absolute;
    bottom: 12px;
    right: 10px;
    z-index: 2;
}

.el-quick-view-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.el-quick-view-toggle i {
  width: 18px;
  height: 18px;
}

.el-quick-view-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--el-primary-color, #3b82f6);
  color: var(--el-primary-color, #3b82f6);
}

.el-card {
  position: relative;
}

.el-fav-label {
  display: none;
}

/* Quick view modal */
.el-quick-view-open {
  overflow: hidden;
}

.el-quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.el-quick-view-modal.is-open {
  display: block;
}

.el-quick-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
}

.el-quick-view-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100% - 32px));
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.el-quick-view-panel:focus {
  outline: none;
}

.el-quick-view-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.el-quick-view-close i {
  width: 18px;
  height: 18px;
}

.el-quick-view-media {
  background: #f3f4f6;
  min-height: 260px;
}

.el-quick-view-image,
.el-quick-view-placeholder {
  width: 100%;
  height: 100%;
}

.el-quick-view-image {
  object-fit: cover;
  display: block;
}

.el-quick-view-placeholder {
  background: repeating-linear-gradient(45deg, #f4f5f6, #f4f5f6 10px, #e5e7eb 10px, #e5e7eb 20px);
}

.el-quick-view-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.el-quick-view-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.el-quick-view-category {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
}

.el-quick-view-featured {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
}

.el-quick-view-title {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.el-quick-view-rating {
  margin: 0;
  color: #64748b;
  font-size: 13px;
}

.el-quick-view-excerpt {
  margin: 0;
  color: #6b7280;
}

.el-quick-view-meta {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
}

.el-quick-view-price {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}

.el-quick-view-details {
  display: grid;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid #e5e7eb;
}

.el-quick-view-detail {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #334155;
}

.el-quick-view-detail__label {
  color: #6b7280;
  min-width: 80px;
}

.el-quick-view-detail__value {
  color: #0f172a;
  text-decoration: none;
  text-align: right;
  word-break: break-word;
}

.el-quick-view-detail__value:hover {
  color: var(--el-primary-color, #3b82f6);
}

.el-quick-view-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.el-quick-view-link {
  margin-left: auto;
}

.el-quick-view-favorite .el-favorite-toggle {
  border-radius: 10px;
  padding: 8px;
}

@media (max-width: 768px) {
  .el-quick-view-panel {
    grid-template-columns: 1fr;
  }

  .el-quick-view-media {
    min-height: 200px;
  }
}

/* AI modal */
.el-ai-generate-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    border: none;
    color: #0f5be3;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    bottom: -5px;
}

.el-add-form-title {
    margin-bottom: 7px;
}

.el-ai-generate-btn svg {
  width: 18px;
}

.el-ai-generate-btn:hover {
  transform: translateY(-1px);
}

.el-ai-generate-btn i {
  width: 16px;
  height: 16px;
}

.el-ai-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.el-ai-modal[hidden] {
  display: none;
}

.el-ai-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.el-ai-modal__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 520px;
  margin: 8% auto 0;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.el-ai-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.el-ai-tip {
  color: #6b7280;
  margin-top: 4px;
  margin-bottom: 12px;
}

.el-ai-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.el-ai-status {
  margin-top: 10px;
  font-size: 13px;
}

.el-ai-status.is-error {
  color: #dc2626;
}

.el-ai-status.is-success {
  color: #16a34a;
}

.el-ai-status.is-loading {
  color: #2563eb;
}

/* Author profile */
.el-author-profile {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.el-author-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.el-author-avatar img {
  border-radius: 50%;
  border: 3px solid #eef2ff;
}

.el-author-meta h2 {
  margin: 0;
  font-size: 22px;
  color: #0f172a;
}

.el-author-username {
  color: #6b7280;
  margin-top: 4px;
}

.el-author-joined {
  color: #4b5563;
  font-size: 13px;
  margin-top: 6px;
  margin-bottom: 6px;
}

.el-author-stats {
  display: flex;
  gap: 14px;
}

.el-author-stat {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.el-author-stat strong {
  display: block;
  font-size: 18px;
  color: #0f172a;
}

.el-author-stat span {
  font-size: 12px;
  color: #6b7280;
}

.el-author-stat svg {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--el-primary-color), #6f8af7);
  padding: 8px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.el-author-body {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.el-author-about,
.el-author-contact {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
}

.el-author-about h3,
.el-author-contact h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.el-author-about h3 svg,
.el-author-contact h3 svg,
.el-author-listings h3 svg {
  width: 18px;
  height: 18px;
  color: var(--el-primary-color);
}

.el-author-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #374151;
}

.el-author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #eef2ff;
  color: var(--el-primary-color);
  margin-right: 6px;
}

.el-author-social a i, .el-author-social a svg {
  width: 16px;
  height: 16px;
}

.el-author-social .el-x-svg-i svg path {
  fill: var(--el-primary-color);
}

.el-author-listings {
  margin-top: 40px;
}

.el-author-listings h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* All authors */
.el-authors {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.el-authors-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.el-authors-header h2 {
  margin: 0;
  font-size: 20px;
  color: #0f172a;
}

.el-authors-count {
  font-size: 12px;
  color: #6b7280;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  padding: 6px 10px;
  border-radius: 999px;
}

.el-author-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.el-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  background: #f9fafb;
}

.el-author-card__avatar img {
  border-radius: 50%;
  border: 2px solid #eef2ff;
}

.el-author-card__name {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: #0f172a;
}

.el-author-card__name a {
  text-decoration: none;
  color: inherit;
}

.el-author-card__role {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.el-author-card__meta {
  font-size: 13px;
  color: #374151;
  margin-bottom: 10px;
}

.el-author-card__actions .guto-listing-btn {
  padding: 8px 14px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .el-author-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .el-author-stats {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .el-authors-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .el-author-card {
    flex-direction: column;
    text-align: center;
  }

  .el-author-card__actions .guto-listing-btn {
    width: 100%;
  }
}

.el-single-actions {
  margin: 8px 0 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1024px) {
  .el-single-thumb img,
  .el-slider__slide img {
    height: 420px;
  }
  h1.el-single-title {
    font-size: 23px;
  }
}

@media (max-width: 768px) {
  .el-single-title-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .el-single-actions {
    position: static;
  }

  .el-slider__control {
    top: 18%;
  }

  .el-single-thumb img,
  .el-slider__slide img {
    height: 320px;
  }

  .el-listing-meta {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .guto-listing-single-sidebar {
    position: static;
    margin-top: 18px;
    padding: 16px;
  }

  .el-listing-sidebar-section-preset li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .el-listing-sidebar-section-preset .el-value {
    text-align: left;
  }

  .el-listing-map {
    height: 260px;
  }

  .el-single-content {
    padding: 16px;
  }

  .el-slider__control {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .el-single-thumb img,
  .el-slider__slide img {
    height: 240px;
  }

  .el-single-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .el-single-share__links {
    flex-wrap: wrap;
  }

  .el-slider__control {
    width: 32px;
    height: 32px;
  }
}

.el-auth-form .el-auth-terms-label {
  font-weight: normal;
}


/* Dashboard */
.el-dashboard {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.el-dashboard__header h2 {
  margin: 0 0 4px;
}

.el-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.el-dashboard__stat {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.el-dashboard__stat strong {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.el-dashboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.el-dashboard__section {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.el-dashboard__section h3 {
  margin-top: 0;
}

.el-dashboard__table {
  width: 100%;
  border-collapse: collapse;
}

.el-dashboard__table table {
  width: 100%;
}

.el-dashboard__card_table .widefat {
    margin: 0;
    border: none;
    width: 100%;
}

.el-dashboard__table th,
.el-dashboard__table td {
  padding: 10px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}

@media (max-width: 768px) {
  .el-dashboard__table,
  .el-dashboard-table table,
  .el-dashboard__card_table table {
    display: block;
    width: 100%;
  }

  .el-dashboard__table thead,
  .el-dashboard-table table thead,
  .el-dashboard__card_table table thead {
    display: none;
  }

  .el-dashboard__table tbody,
  .el-dashboard-table table tbody,
  .el-dashboard__card_table table tbody {
    display: block;
  }

  .el-dashboard__table tr,
  .el-dashboard-table table tr,
  .el-dashboard__card_table table tr {
    display: block;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    background: #ffffff;
  }

  .el-dashboard__table td,
  .el-dashboard-table table td,
  .el-dashboard__card_table table td {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border: none;
  }

  .el-dashboard__table td::before,
  .el-dashboard-table table td::before,
  .el-dashboard__card_table table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #475569;
    flex: 0 0 40%;
  }

  .el-dashboard__table td[data-label=""]::before,
  .el-dashboard-table table td[data-label=""]::before,
  .el-dashboard__card_table table td[data-label=""]::before {
    content: "";
  }

  .el-dashboard-actions {
    justify-content: flex-start;
  }
}

.el-dashboard__form {
  display: grid;
  gap: 12px;
}

.el-dashboard__form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.el-dashboard__form-row input, .el-dashboard__form-row textarea {
  border: 1px solid #c3c4c7;
  border-radius: 6px;
  padding: 10px 10px;
  font-size: 14px;
  line-height: 1.4;
  width: -webkit-fill-available;
}
#el-custom-fields-wrap .el-dashboard__form-row {
    margin-bottom: 20px;
}

.el-dashboard__form-row input:focus {
  border-color: var(--el-primary-color);
  box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.15);
  outline: none;
}

.el-dashboard__messages {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.el-dashboard__messages[data-el-toast="1"] {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(92vw, 360px);
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.el-dashboard__messages[data-el-toast="1"].is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.el-dashboard__messages[data-el-toast="1"].is-hiding {
  opacity: 0;
  transform: translateY(12px);
}

.el-dashboard__messages[data-el-toast="1"] .el-dashboard__message {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.el-dashboard__messages[data-el-toast="1"] .el-dashboard__message::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.9));
  animation: el-toast-progress var(--el-toast-duration, 3000ms) linear forwards;
}

.el-dashboard__messages[data-el-toast="1"] .el-dashboard__message.is-error::after {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.95), rgba(248, 113, 113, 0.95));
}

.el-dashboard__messages[data-el-toast="1"] .el-dashboard__message.is-success::after {
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.95), rgba(74, 222, 128, 0.95));
}

@keyframes el-toast-progress {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .el-dashboard__messages[data-el-toast="1"] {
    transition: none;
    transform: none;
  }
  .el-dashboard__messages[data-el-toast="1"] .el-dashboard__message::after {
    animation: none;
  }
}

.el-dashboard__message {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  background: #f9fafb;
}

.el-dashboard__message.is-success {
  border-color: #2ac72a;
  background: #f0fff4;
  color: #166534;
}

.el-dashboard__message.is-error {
  border-color: #c0392b;
  background: #fff0f0;
  color: #861b1b;
}

.el-dashboard-profile-image img {
    border-radius: 10px;
}
p.description.el-dashboard__form-row.full-row {
    margin-top: 4px;
    font-size: 14px;
    font-style: italic;
}

.el-dashboard-profile-image.el-dashboard__form-row.full-row {
    margin-bottom: 20px;
}


.el-add-listing .el-dashboard__form-row label {
  font-weight: bold;
}

.el-ai-modal #el-ai-prompt{
    display: block;
    width: -webkit-fill-available;
    border-color: #dbdbdb;
    border-radius: 10px;
    padding: 15px 0px 15px 15px;
}

.el-single-thumb img {
    border-radius: 12px;
    height: 500px;
    object-fit: cover;
    width: 100%;
    border: 1px solid #e5e7eb;
}

.el-single-thumb picture {
    display: block;
}

.el-single-title-area {
  position: relative;
}

.el-single-badges {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.el-single-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.el-single-share__label {
  font-size: 13px;
  color: #6b7280;
}

.el-single-share__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.el-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #111827;
  text-decoration: none;
  transition: all 0.2s ease;
}

.el-share-link:hover {
  background: var(--el-primary-color);
  border-color: var(--el-primary-color);
  color: #ffffff;
}

.el-share-link i,
.el-share-link svg {
  width: 16px;
  height: 16px;
}

.el-dashboard__form-row.full-row h4 {
    margin-bottom: 0;
}
.el-dashboard__form-row label {
    font-weight: 500;
}

.el-author-listings .el-page-warp{
  padding-top: 10px;
}

.guto-listing-btn-ghost-2 svg {
    width: 15px;
    position: relative;
    bottom: -7px;
    margin-right: 5px;
}
.guto-listing-btn-ghost-2 {
    text-decoration: none;
    color: #fff;
    background: var(--el-primary-color);
    padding: 8px 13px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.2s ease;
}
.guto-listing-btn-ghost-2:hover {
  background-color: var(--el-secondary-color);
}

.el-filter-control span.el-label {
    font-weight: 600;
}
.el-filter-group span.el-label {
    font-weight: 600;
}


/* Pricing plans shortcode */
.el-pricing-plans {
	margin: 20px auto 40px;
}

.el-pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 18px;
	align-items: stretch;
}

.el-pricing-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.el-pricing-card:hover {
	transform: translateY(-4px);
	border-color: #cbd5e1;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.el-pricing-card.is-current {
	border-color: #60a5fa;
	box-shadow: 0 16px 36px rgba(59, 130, 246, 0.18);
}

.el-pricing-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.el-pricing-card__title {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.el-pricing-card__header h3 {
	margin: 0;
	font-size: 18px;
	color: #0f172a;
}

.el-pricing-card__badge {
	background: #e0f2fe;
	color: #075985;
	border-radius: 999px;
	padding: 4px 10px;
	font-size: 12px;
	font-weight: 600;
}

.el-pricing-card__price {
	font-size: 28px;
	font-weight: 700;
	color: #0f172a;
	text-align: right;
}

.el-pricing-card__price small {
	display: block;
	font-size: 13px;
	color: #64748b;
	font-weight: 500;
}

.el-pricing-card__divider {
	height: 1px;
	background: #e5e7eb;
	border-radius: 999px;
}

.el-pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
	color: #1f2937;
	font-size: 14px;
}

.el-pricing-card__features li {
	display: flex;
	align-items: center;
	gap: 8px;
  margin-bottom: 15px;
}

.el-pricing-card__features li i {
	width: 16px;
	height: 16px;
	color: #3b82f6;
}

.el-pricing-card__icon.is-muted {
	color: #9ca3af;
}

.el-pricing-card__actions {
	margin-top: auto;
}

.el-pricing-card .guto-listing-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 10px;
	font-weight: 600;
	text-align: center;
	box-shadow: none;
	width: min-content;
}

.el-pricing-card .guto-listing-btn i {
	width: 16px;
	height: 16px;
}

@media (max-width: 575.98px) {
	.el-pricing-card {
		padding: 16px;
	}
}

/* Dashboard plan cards */
.el-dashboard__card .el-current-plan {
	padding: 8px 6px 4px;
}

.el-dashboard__card .el-current-plan h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.el-dashboard__card .el-current-plan p {
	margin: 0 0 12px;
	color: #4b5563;
	line-height: 1.5;
}

.el-dashboard__card .el-current-plan ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 6px;
}

.el-dashboard__card .el-current-plan ul li {
	padding: 9px 11px;
	border: 1px dashed #e5e7eb;
	border-radius: 8px;
	background: #f9fafb;
	color: #111827;
	display: flex;
	align-items: center;
	gap: 8px;
}

.el-plan-purchases .widefat {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.el-plan-purchases .widefat thead th {
	background: linear-gradient(135deg, #eef2ff, #f8fafc);
}

.el-plan-purchases .widefat tbody tr:nth-child(odd) {
	background: #fcfdff;
}

.el-plan-purchases .widefat tbody tr:hover {
	background: #f4f7fb;
}

.el-plan-purchases .widefat td,
.el-plan-purchases .widefat th {
	padding: 12px 14px;
}

.el-plan-purchases .widefat td code {
	background: #f3f4f6;
	padding: 3px 6px;
	border-radius: 6px;
}

.el-plan-purchases .widefat .button-primary {
	border-radius: 8px;
	box-shadow: 0 8px 18px rgba(34, 113, 177, 0.2);
}

.el-dashboard__card_table {
	padding: 0;
	overflow: hidden;
}

.el-dashboard__card_table .el-dashboard__header {
	padding: 16px 18px 10px;
	margin: 0;
	border-bottom: 1px solid #e5e7eb;
}

.el-dashboard__header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.el-dashboard__card_table .widefat {
	margin: 0;
	border: none;
}

.el-dashboard__card_table .widefat td,
.el-dashboard__card_table .widefat th {
	padding: 12px 16px;
  text-align: left;
}

/* Match dashboard table buttons to listings table */
.el-dashboard__table .button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 12px;
	height: 34px;
	border-radius: 8px;
	box-shadow: none;
	text-decoration: none;
}

.el-dashboard__table .button:hover {
	transform: translateY(-1px);
}

.el-dashboard__table .button.button-primary {
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-color: #1d4ed8;
	color: #fff;
	box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

.el-dashboard-warp {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.el-dashboard__card .el-current-plan p strong {
    color: green;
}

input#el-use-featured {
    margin-left: 0;
    width: auto;
}

span.el-card__badge.el-card__badge--featured {
    position: relative;
    bottom: 32px;
    margin-right: 0;
    left: 10px;
    font-size: 13px;
}

span.el-card__badge.el-card__badge--sold {
    position: relative;
    bottom: 32px;
    left: 16px;
    background: #fee2e2;
    color: #991b1b;
    font-size: 12px;
}

span.el-card__badge.el-card__badge--featured + span.el-card__badge.el-card__badge--sold {
    left: 28px;
}

span.el-card__badge.el-card__badge--status {
    position: relative;
    bottom: 32px;
    left: 16px;
    font-size: 12px;
}

span.el-card__badge.el-card__badge--sold + span.el-card__badge.el-card__badge--status {
    left: 32px;
}

span.el-card__badge.el-card__badge--featured + span.el-card__badge.el-card__badge--sold + span.el-card__badge.el-card__badge--status {
    left: 46px;
}

span.el-card__badge.el-card__badge--status.el-card__badge--open {
    background: #dcfce7;
    color: #166534;
}

span.el-card__badge.el-card__badge--status.el-card__badge--closed {
    background: #fef2f2;
    color: #991b1b;
}

.el-business-hours {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.el-business-hours__options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.el-business-hours__timezone label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.el-business-hours__timezone select {
    width: 100%;
    max-width: 320px;
}

.el-business-hours__days {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.el-business-hours__days .el-business-hours__day {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    border: 1px dashed #e2e8f0;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
}

.el-business-hours__day-label {
    font-weight: 600;
    min-width: 100px;
}

.el-business-hours__day-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.el-business-hours__time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.el-business-hours__time input[type="time"] {
    min-width: 120px;
}

.el-business-hours__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.el-business-hours__list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e5e7eb;
}

.el-business-hours__list .el-business-hours__day {
    font-weight: 600;
}

.el-business-hours__time {
    color: #374151;
}

.el-business-hours__timezone-note {
    margin-top: 8px;
    font-size: 12px;
    color: #6b7280;
}

.el-business-hours__always {
    font-weight: 600;
}

@media (max-width: 768px) {
    .el-business-hours__days .el-business-hours__day {
        flex-direction: column;
        align-items: flex-start;
    }

    .el-business-hours__time {
        width: 100%;
        flex-wrap: wrap;
    }
}

.el-filter-group .el-checkbox-list {
    height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.el-page-warp--listings .el-container{
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box;
}

.el-hero-banner__actions button.guto-listing-btn.guto-listing-btn-primary.el-hero-banner__submit {
    height: 43px;
    top: 18px;
    position: relative;
}

/* Live chat UI */
.el-live-chat {
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 22px;
	background: #f3f5fb;
	box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
	overflow: hidden;
	max-width: 100%;
}

.el-live-chat__layout {
	display: grid;
	grid-template-columns: 320px 1fr;
	min-height: 620px;
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.el-live-chat__sidebar {
	padding: 22px;
	background: #f1f3f9;
	border-right: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
}

.el-live-chat-search {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.el-live-chat-search__label {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(15, 23, 42, 0.75);
}

.el-live-chat-search__field {
	display: flex;
	gap: 8px;
}

.el-live-chat-search__input {
	flex: 1;
	min-height: 44px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 12px;
	padding: 0 16px;
	font: inherit;
	background: #fff;
}

.el-live-chat-search__input:focus {
	outline: 0;
	border-color: var(--el-primary-color, #2563eb);
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.el-live-chat__search-results {
	background: #fff;
	padding: 12px 14px;
	border-radius: 14px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	min-height: 72px;
	font-size: 0.9rem;
	color: rgba(15, 23, 42, 0.75);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.el-live-chat__search-hint {
	margin: 0;
}

.el-live-chat__search-item {
	width: 100%;
	background: transparent;
	border: 0;
	border-radius: 12px;
	padding: 10px;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.el-live-chat__search-item:hover {
	background: rgba(37, 99, 235, 0.08);
}

.el-live-chat__search-item strong {
	display: block;
}

.el-live-chat__search-item span {
	font-size: 0.75rem;
	color: rgba(15, 23, 42, 0.5);
}

.el-live-chat__conversation-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 420px;
	overflow-y: auto;
	padding-right: 4px;
}

.el-live-chat__conversation {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 12px;
	padding: 12px 14px;
	align-items: center;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.06);
	cursor: pointer;
	color: inherit;
	text-align: left;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.el-live-chat__conversation:hover {
	border-color: rgba(37, 99, 235, 0.35);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
	transform: translateY(-1px);
}

.el-live-chat__conversation.is-active {
	border-color: var(--el-primary-color, #2563eb);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18);
}

.el-live-chat__conversation-avatar {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #1f2937;
}

.el-live-chat__conversation-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.el-live-chat__conversation-content {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.el-live-chat__conversation-snippet {
	font-size: 0.82rem;
	color: rgba(15, 23, 42, 0.65);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	display: inline-block;
	max-width: 100%;
}

.el-live-chat__conversation-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	min-width: 48px;
}

.el-live-chat__conversation-time {
	font-size: 0.75rem;
	color: rgba(15, 23, 42, 0.5);
}

.el-live-chat__conversation-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--el-primary-color, #2563eb);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	line-height: 1;
}

.el-live-chat__main {
	display: flex;
	flex-direction: column;
	background: #fff;
	min-width: 0;
}

.el-live-chat__header {
	padding: 20px 28px;
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	background: #ffffff;
}

.el-live-chat__header h1 {
	font-size: 1.5rem;
	margin: 0;
}

.el-live-chat__partner {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--el-primary-color, #2563eb);
}

.el-live-chat__body {
	padding: 0;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.el-live-chat__messages {
	padding: 18px 24px 16px;
	background: linear-gradient(180deg, #f7f9fe 0%, #eef2fb 100%);
	min-height: 380px;
	max-height: 520px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.el-live-chat__message {
	display: flex;
	width: 100%;
	align-items: flex-end;
}

.el-live-chat__message--user {
	justify-content: flex-end;
}

.el-live-chat__message-content {
	max-width: 78%;
	padding: 12px 16px;
	border-radius: 16px 16px 16px 6px;
	background: #fff;
	color: #111;
	position: relative;
	line-height: 1.5;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
	border: 1px solid rgba(15, 23, 42, 0.06);
	text-align: left;
	word-break: break-word;
}

.el-live-chat__message-content p {
	margin: 0;
}

.el-live-chat__message--support .el-live-chat__message-content,
.el-live-chat__message--partner .el-live-chat__message-content {
	background: #eef2ff;
	color: #0f172a;
	border-color: rgba(37, 99, 235, 0.25);
}

.el-live-chat__message--user .el-live-chat__message-content {
	background: var(--el-primary-color, #2563eb);
	color: #fff;
	border-radius: 16px 16px 6px 16px;
}

.el-live-chat__message--support .el-live-chat__message-content::after,
.el-live-chat__message--partner .el-live-chat__message-content::after,
.el-live-chat__message--user .el-live-chat__message-content::after {
	content: '';
	position: absolute;
	bottom: 6px;
	width: 10px;
	height: 10px;
	background: inherit;
}

.el-live-chat__message--support .el-live-chat__message-content::after,
.el-live-chat__message--partner .el-live-chat__message-content::after {
	left: -3px;
	border-bottom-left-radius: 10px;
	transform: rotate(45deg);
}

.el-live-chat__message--user .el-live-chat__message-content::after {
	right: -3px;
	border-bottom-right-radius: 10px;
	transform: rotate(-45deg);
}

.el-live-chat__message-time {
	display: block;
	font-size: 0.75rem;
	color: rgba(15, 23, 42, 0.6);
	margin-top: 8px;
}

.el-live-chat__message--user .el-live-chat__message-time {
	color: rgba(255, 255, 255, 0.8);
}

.el-live-chat__message.is-pending .el-live-chat__message-content {
	opacity: 0.7;
}

.el-live-chat__status {
	min-height: 20px;
	padding: 0 24px;
	font-size: 0.9rem;
	color: var(--el-warning-color, #f59e0b);
}

.el-live-chat__status.is-info {
	color: var(--el-primary-color, #2563eb);
}

.el-live-chat__status.is-error {
	color: var(--el-warning-color, #f59e0b);
}

.el-live-chat__form {
	display: flex;
	gap: 12px;
	padding: 16px 24px 22px;
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	align-items: flex-end;
	background: #fff;
}

.el-live-chat__form textarea {
	flex: 1;
	min-height: 72px;
	border-radius: 12px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	background: #fff;
	padding: 12px 16px;
	resize: vertical;
	font: inherit;
}

.el-live-chat__form textarea:focus {
	outline: 0;
	border-color: var(--el-primary-color, #2563eb);
	box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

.el-live-chat__form button {
	padding: 14px 24px;
	border-radius: 12px;
	align-self: stretch;
	flex-shrink: 0;
}

.el-live-chat__empty {
	padding: 12px 16px;
	border-radius: 12px;
	background: #fff;
	color: rgba(15, 23, 42, 0.8);
	border: 1px dashed rgba(15, 23, 42, 0.2);
}

@media (max-width: 960px) {
	.el-live-chat__layout {
		grid-template-columns: 1fr;
	}

	.el-live-chat__sidebar {
		border-right: none;
		border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	}

	.el-live-chat__header,
	.el-live-chat__messages,
	.el-live-chat__status,
	.el-live-chat__form {
		padding-left: 16px;
		padding-right: 16px;
	}

	.el-live-chat__form {
		flex-direction: column;
		align-items: stretch;
	}

	.el-live-chat__form button {
		width: 100%;
	}
}

/* Announcements */
.el-announcements {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.el-announcements__header h2 {
	margin: 0 0 6px;
	font-size: 1.5rem;
}

.el-announcements__header p {
	margin: 0;
	color: rgba(15, 23, 42, 0.6);
}

.el-announcements__list {
	display: grid;
	gap: 16px;
}

.el-announcements__empty {
	padding: 24px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	color: rgba(15, 23, 42, 0.65);
}

.el-announcement {
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.08);
	padding: 18px 20px;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.el-announcement__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

.el-announcement__header h3 {
	margin: 0;
	font-size: 1.1rem;
}

.el-announcement__date {
	font-size: 0.85rem;
	color: rgba(15, 23, 42, 0.5);
	white-space: nowrap;
}

.el-announcement__message {
	margin-top: 10px;
	color: rgba(15, 23, 42, 0.85);
}

.el-announcement__message p:last-child {
	margin-bottom: 0;
}

.el-announcement__footer {
	margin-top: 12px;
	font-size: 0.85rem;
	color: rgba(15, 23, 42, 0.55);
}
.el-dashboard__form-row input[type="checkbox"] {
    width: unset;
}

div#el-preset-fields-wrap .el-dashboard__form-row {
    padding-bottom: 20px;
}
