.hslands-single-product-page {
  --hslands-border: #e6edf3;
  --hslands-card-bg: #ffffff;
  --hslands-card-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --hslands-text: #182433;
  --hslands-muted: #5f7086;
  --hslands-accent: #0ea5b5;
  --hslands-accent-dark: #0b7f90;
  --hslands-surface: #f6f9fc;
  color: var(--hslands-text);
}

.hslands-single-product-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 44px;
}

.hslands-single-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 312px;
  gap: 20px;
  align-items: start;
}

.hslands-single-product-main {
  min-width: 0;
}

.hslands-single-product-sidebar {
  position: sticky;
  top: 110px;
  min-width: 0;
}

.hslands-single-section,
.hslands-single-contact-card,
.hslands-single-sidebar-filters .hslands-archive-sidebar {
  background: var(--hslands-card-bg);
  border: 1px solid var(--hslands-border);
  border-radius: 20px;
  box-shadow: var(--hslands-card-shadow);
}

.hslands-single-gallery {
  background: var(--hslands-card-bg);
  border: 1px solid var(--hslands-border);
  border-radius: 22px;
  box-shadow: var(--hslands-card-shadow);
  overflow: hidden;
  margin-bottom: 18px;
}

.hslands-single-gallery__main {
  position: relative;
  background: #eef3f7;
  aspect-ratio: 16 / 10;
}

.hslands-single-gallery__main-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hslands-single-gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px;
  overflow-x: auto;
}

.hslands-single-gallery__thumb {
  flex: 0 0 78px;
  width: 78px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #eef3f7;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hslands-single-gallery__thumb.is-active {
  border-color: var(--hslands-accent);
}

.hslands-single-gallery__thumb:hover {
  transform: translateY(-1px);
}

.hslands-single-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hslands-single-section {
  padding: 20px 22px;
  margin-bottom: 18px;
}

.hslands-single-section__title {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--hslands-text);
}

.hslands-single-product-title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hslands-single-product-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--hslands-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hslands-single-product-address i {
  color: var(--hslands-accent);
  font-size: 15px;
  margin-top: 4px;
}

.hslands-single-product-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hslands-border);
}

.hslands-single-product-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hslands-single-product-stat__label {
  color: var(--hslands-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hslands-single-product-stat__value,
.hslands-single-product-stat__value .amount {
  color: var(--hslands-accent-dark);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.15;
  font-weight: 800;
}

.hslands-single-description {
  color: var(--hslands-text);
  font-size: 14px;
  line-height: 1.72;
}

.hslands-single-description p:last-child {
  margin-bottom: 0;
}

.hslands-single-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hslands-single-spec {
  display: flex;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--hslands-border);
  border-radius: 14px;
  background: var(--hslands-surface);
}

.hslands-single-spec i {
  color: var(--hslands-accent);
  font-size: 16px;
  margin-top: 2px;
}

.hslands-single-spec__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hslands-single-spec__label {
  color: var(--hslands-muted);
  font-size: 12px;
  font-weight: 600;
}

.hslands-single-spec__value {
  color: var(--hslands-text);
  font-size: 15px;
  font-weight: 700;
}

.hslands-single-map {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--hslands-border);
}

.hslands-single-map iframe {
  display: block;
  width: 100%;
  min-height: 340px;
  border: 0;
}

.hslands-single-contact-card {
  padding: 18px;
  margin-bottom: 18px;
}

.hslands-single-contact-card__seller {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--hslands-border);
}

.hslands-single-contact-card__avatar img,
.hslands-single-mobile-contact__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.hslands-single-contact-card__avatar {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 999px;
  border: 2px solid rgba(14, 165, 181, 0.18);
}

.hslands-single-contact-card__meta,
.hslands-single-mobile-contact__meta {
  min-width: 0;
}

.hslands-single-contact-card__name,
.hslands-single-mobile-contact__name {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hslands-single-contact-card__role,
.hslands-single-mobile-contact__role {
  margin-top: 4px;
  color: var(--hslands-muted);
  font-size: 12px;
}

.hslands-single-contact-card__actions {
  display: grid;
  gap: 10px;
}

.hslands-single-contact-card__actions.is-single-action {
  grid-template-columns: 1fr;
}

.hslands-single-contact-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hslands-single-contact-card__button:hover,
.hslands-single-mobile-contact__button:hover {
  transform: translateY(-1px);
}

.hslands-single-contact-card__button--ghost {
  border: 1px solid #cad7e2;
  color: var(--hslands-text);
  background: #fff;
}

.hslands-single-contact-card__button-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: #edf6ff;
  color: #0d5fd2;
  font-size: 11px;
  font-weight: 800;
}

.hslands-single-contact-card__button--solid {
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, #0d8aa0 0%, #11b4bf 100%);
  box-shadow: 0 16px 28px rgba(14, 165, 181, 0.2);
}

.hslands-single-sidebar-filters .hslands-archive-sidebar {
  padding: 0;
  box-shadow: var(--hslands-card-shadow);
}

.hslands-single-sidebar-filters .hslands-archive-filter,
.hslands-single-sidebar-filters .hslands-archive-locations {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hslands-single-sidebar-filters .hslands-archive-filter {
  margin-bottom: 0;
  border-bottom: 1px solid var(--hslands-border);
}

.hslands-single-sidebar-filters .hslands-archive-locations {
  margin-bottom: 0;
}

.hslands-single-section--related .row {
  margin-left: -8px;
  margin-right: -8px;
}

.hslands-single-product-page .product-small.box .box-image > div:first-child,
.hslands-single-product-page .hslands-product-item .hslands-product-card__media {
  height: 190px;
}

.hslands-single-mobile-contact {
  display: none;
}

@media (max-width: 1199px) {
  .hslands-single-product-grid {
    grid-template-columns: minmax(0, 1fr) 292px;
    gap: 18px;
  }

  .hslands-single-section {
    padding: 18px;
  }

  .hslands-single-specs {
    grid-template-columns: 1fr;
  }

  .hslands-single-contact-card__name {
    font-size: 17px;
  }
}

@media (max-width: 849px) {
  .hslands-single-product-shell {
    width: min(100%, calc(100% - 20px));
    padding: 14px 0 110px;
  }

  .hslands-single-product-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hslands-single-product-sidebar,
  .hslands-single-sidebar-filters {
    display: none;
  }

  .hslands-single-gallery,
  .hslands-single-section {
    border-radius: 16px;
    margin-bottom: 12px;
  }

  .hslands-single-gallery__main {
    aspect-ratio: 4 / 3;
  }

  .hslands-single-gallery__thumbs {
    gap: 6px;
    padding: 8px;
  }

  .hslands-single-gallery__thumb {
    flex-basis: 64px;
    width: 64px;
    height: 50px;
    border-radius: 10px;
  }

  .hslands-single-section {
    padding: 14px;
  }

  .hslands-single-section__title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .hslands-single-product-title {
    font-size: 22px;
  }

  .hslands-single-product-address {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hslands-single-product-stats {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .hslands-single-product-stat__value,
  .hslands-single-product-stat__value .amount {
    font-size: 18px;
  }

  .hslands-single-description {
    font-size: 13px;
    line-height: 1.65;
  }

  .hslands-single-map iframe {
    min-height: 220px;
  }

  .hslands-single-mobile-contact {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--hslands-border);
    box-shadow: 0 -8px 30px rgba(15, 23, 42, 0.08);
  }

  .hslands-single-mobile-contact__seller {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .hslands-single-mobile-contact__avatar {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    overflow: hidden;
    border-radius: 999px;
    border: 2px solid rgba(14, 165, 181, 0.15);
  }

  .hslands-single-mobile-contact__name {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hslands-single-mobile-contact__role {
    margin-top: 2px;
    font-size: 11px;
  }

  .hslands-single-mobile-contact__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hslands-single-mobile-contact__actions.is-single-action {
    grid-template-columns: 1fr;
  }

  .hslands-single-mobile-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 13px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hslands-single-mobile-contact__button--ghost {
    border: 1px solid #cad7e2;
    background: #fff;
    color: var(--hslands-text);
  }

  .hslands-single-mobile-contact__button--solid {
    background: linear-gradient(135deg, #0d8aa0 0%, #11b4bf 100%);
    color: #fff;
  }
}
