#sun-editor-open {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 2147483000;
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 11px 14px;
  background: #1f4f3d;
  color: #fff;
  font: 600 13px Arial, sans-serif;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  cursor: pointer;
}

body.sun-editor-enabled #sun-editor-open {
  display: flex;
}

body.sun-editor-active {
  padding-left: min(480px, 94vw);
}

#sun-editor {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 2147483001;
  width: min(480px, 94vw);
  display: none;
  flex-direction: column;
  background: #fff;
  color: #1b1b1b;
  border-right: 1px solid #ddd;
  box-shadow: 12px 0 40px rgba(0, 0, 0, .12);
  font: 14px Arial, sans-serif;
}

body.sun-editor-active #sun-editor {
  display: flex;
}

.sun-editor-head {
  padding: 14px 16px;
  background: #1f4f3d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sun-editor-title {
  font-size: 15px;
  font-weight: 700;
}

.sun-editor-subtitle {
  margin-top: 2px;
  font-size: 12px;
  opacity: .75;
}

.sun-editor-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 7px;
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.sun-editor-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #e7e2d8;
}

.sun-editor-tab {
  padding: 11px 8px;
  border: 0;
  border-right: 1px solid #eee;
  background: #faf8f4;
  color: #555;
  font: 700 12px Arial, sans-serif;
  cursor: pointer;
}

.sun-editor-tab.active {
  background: #fff;
  color: #1f4f3d;
  box-shadow: inset 0 -3px 0 #2f8a65;
}

.sun-editor-body {
  overflow: auto;
  padding: 14px 16px 18px;
}

.sun-editor-pane {
  display: none;
}

.sun-editor-pane.active {
  display: block;
}

.sun-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #e7e2d8;
  background: #faf8f4;
}

.sun-editor-btn {
  border: 1px solid #2f6b54;
  border-radius: 7px;
  background: #fff;
  color: #1f4f3d;
  padding: 9px 11px;
  font: 700 12px Arial, sans-serif;
  cursor: pointer;
}

.sun-editor-btn.primary {
  background: #1f4f3d;
  color: #fff;
}

.sun-editor-btn:disabled {
  opacity: .55;
  cursor: wait;
}

.sun-editor-row {
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid #ebe5da;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 79, 61, .06);
}

.sun-editor-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.sun-editor-label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #1f4f3d;
}

.sun-editor-row-head .sun-editor-label {
  margin-bottom: 0;
  line-height: 1.35;
}

.sun-editor-mini-btn {
  flex: 0 0 auto;
  border: 1px solid #d7eadf;
  border-radius: 999px;
  background: #f4fbf6;
  color: #1f4f3d;
  padding: 5px 9px;
  font: 700 11px Arial, sans-serif;
  cursor: pointer;
}

.sun-editor-mini-btn:disabled {
  opacity: .45;
  cursor: default;
}

.sun-editor-input,
.sun-editor-textarea,
.sun-editor-select {
  width: 100%;
  border: 1px solid #ddd7cc;
  border-radius: 7px;
  padding: 10px 11px;
  background: #fff;
  color: #1b1b1b;
  font: 13px Arial, sans-serif;
}

.sun-editor-textarea {
  min-height: 86px;
  resize: vertical;
  line-height: 1.45;
}

.sun-editor-note {
  margin: 0 0 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.45;
}

.sun-editor-status {
  min-height: 22px;
  padding: 0 16px 12px;
  background: #faf8f4;
  color: #1f4f3d;
  font-size: 12px;
}

.sun-image-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  margin-bottom: 0;
}

.sun-image-row img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid #ddd;
}

.sun-video-row {
  display: grid;
  gap: 8px;
}

body.sun-editor-active [data-sun-edit-key]:hover,
body.sun-editor-active img[data-sun-image-key]:hover,
body.sun-editor-active iframe[data-sun-video-key]:hover {
  outline: 2px dashed #2f8a65;
  outline-offset: 3px;
}

.sunshine-video-slot {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #102f24;
}

.sunshine-video-slot iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  border: 0;
}

.sunshine-video-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(16, 47, 36, .92), rgba(31, 79, 61, .86));
  color: #fff;
  font: 700 1.25rem Arial, sans-serif;
  text-align: center;
  pointer-events: none;
}

.sunshine-video-slot.has-video .sunshine-video-placeholder-text {
  display: none;
}

.sun-contact-title {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.08;
  white-space: nowrap;
}

.sun-about-section {
  padding: 6rem 0;
  background: #fbfcf8;
}

.sun-about-section .row {
  row-gap: 2rem;
}

.sun-about-content {
  max-width: 640px;
}

.sun-about-content .mbr-section-title {
  color: #1f4f3d;
}

.sun-about-content .mbr-text {
  color: #263a31;
  font-size: 1.2rem;
  line-height: 1.65;
}

.sun-about-image {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 22px 60px rgba(31, 79, 61, .16);
}

.sun-about-image img {
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (max-width: 767px) {
  .sun-about-section {
    padding: 4rem 0;
  }

  .sun-about-content .mbr-text {
    font-size: 1.08rem;
  }
}

.sun-reviews-section {
  padding: 6rem 0;
  background: #edefeb;
}

.sun-reviews-section .mbr-section-title {
  color: #1f4f3d;
}

.sun-reviews-text {
  min-height: 260px;
  padding: 2.25rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 22px 60px rgba(31, 79, 61, .12);
}

.sun-reviews-text .mbr-text {
  color: #263a31;
  font-size: 1.18rem;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.sun-footer-legal {
  margin-top: .65rem;
  color: rgba(255, 255, 255, 0.64);
}

.sun-footer-legal a,
.sun-footer-legal span {
  color: rgba(255, 255, 255, 0.64) !important;
}

.sun-footer-legal a {
  text-decoration: none;
}

.sun-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.86) !important;
  text-decoration: underline;
}

.sun-legal-page {
  margin: 0;
  background: #edefeb;
  color: #263a31;
  font-family: 'Inter Tight', Arial, sans-serif;
}

.sun-legal-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.sun-legal-home {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #1f4f3d;
  font-weight: 700;
  text-decoration: none;
}

.sun-legal-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.sun-legal-tabs button {
  border: 1px solid rgba(31, 79, 61, .22);
  border-radius: 999px;
  padding: .55rem 1rem;
  background: #fff;
  color: #1f4f3d;
  font-weight: 800;
  cursor: pointer;
}

.sun-legal-tabs button.active {
  background: #1f4f3d;
  color: #fff;
}

.sun-legal-content {
  display: none;
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 22px 60px rgba(31, 79, 61, .12);
}

.sun-legal-content.active {
  display: block;
}

.sun-legal-content h1 {
  margin: 0 0 .7rem;
  color: #1f4f3d;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1;
}

.sun-legal-content h2 {
  margin: 2rem 0 .7rem;
  color: #1f4f3d;
  font-size: 1.35rem;
}

.sun-legal-content p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.68;
}

.sun-legal-content a {
  color: #1f4f3d;
  font-weight: 700;
}

.sun-legal-updated {
  color: #65766d;
  font-weight: 700;
}

@media (max-width: 767px) {
  .sun-legal-wrap {
    padding-top: 2rem;
  }

  .sun-legal-content {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}

@media (max-width: 767px) {
  .sun-reviews-section {
    padding: 4rem 0;
  }

  .sun-reviews-text {
    min-height: 220px;
    padding: 1.5rem;
  }

  .sun-reviews-text .mbr-text {
    font-size: 1.08rem;
  }
}

.sun-editor-highlight {
  outline: 3px solid #1f4f3d !important;
  outline-offset: 5px !important;
  box-shadow: 0 0 0 9px rgba(159, 232, 112, .35) !important;
}

.sun-lang-bar {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
  backdrop-filter: blur(14px);
  flex: 0 0 auto;
  margin-left: 1rem;
}

.sun-lang-bar button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 11px;
  background: transparent;
  color: #333;
  font: 700 12px Arial, sans-serif;
  cursor: pointer;
}

.sun-lang-bar button.active {
  background: #1f4f3d;
  color: #fff;
}

@media (max-width: 700px) {
  body.sun-editor-active {
    padding-left: 0;
  }

  #sun-editor {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
  }

  .sun-lang-bar {
    position: absolute;
    top: 17px;
    right: 104px;
    padding: 5px;
    gap: 4px;
  }

  .sun-lang-bar button {
    padding: 6px 9px;
    font-size: 11px;
  }
}

@media (min-width: 701px) and (max-width: 991px) {
  .sun-lang-bar {
    margin-left: auto;
    margin-right: 0.5rem;
    transform: scale(0.92);
    transform-origin: right center;
  }
}

@media (max-width: 420px) {
  .sun-lang-bar {
    right: 76px;
    transform: scale(0.86);
    transform-origin: right center;
  }
}
