/* ── Smooth scroll ────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
}
.fd-page *,
.fd-page *::before,
.fd-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fd-page {
  background-color: #f5f5f5;
  color: #2b373a;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif;
}
.fd-page a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.fd-page li {
  list-style: none;
}
.fd-page button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
}
.fd-page input,
.fd-page textarea {
  background: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
}
.fd-page img {
  max-width: 100%;
}
.fd-page strong {
  font-weight: 600;
}

/* ── Container ────────────────────────────────────────────────────── */
.fd-container {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 16px;
  width: 100%;
}
@media (min-width: 1200px) {
  .fd-container {
    padding: 0 20px;
  }
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.fd-hero {
  align-items: center;
  background: linear-gradient(90deg, #05e6aa, #1cbdf9);
  color: #fff;
  display: flex;
  height: 64px;
}
.fd-hero-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.fd-hero-title {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
@media (min-width: 768px) {
  .fd-hero-title {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .fd-hero-title {
    width: 100%;
  }
}

/* ── Breadcrumbs ──────────────────────────────────────────────────── */
.fd-breadcrumbs {
  align-items: center;
  display: none;
  justify-content: flex-end;
  width: 50%;
}
@media (min-width: 768px) {
  .fd-breadcrumbs {
    display: flex;
  }
}
.fd-breadcrumbs li {
  position: relative;
}
.fd-breadcrumbs li:not(:last-of-type) {
  margin-right: 12px;
  padding-right: 12px;
}
.fd-breadcrumbs li:not(:last-of-type)::after {
  aspect-ratio: 1/1;
  border-right: 2px solid #f9f9f9;
  border-top: 2px solid #f9f9f9;
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
}
.fd-breadcrumbs a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
.fd-breadcrumbs a::first-letter {
  text-transform: capitalize;
}

/* ── Layout ───────────────────────────────────────────────────────── */
.fd-content {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 40px;
  min-height: 100vh;
  padding-bottom: 40px;
  width: 100%;
}
@media (min-width: 1200px) {
  .fd-content {
    flex-direction: row;
  }
}

.fd-main {
  width: 100%;
}
@media (min-width: 1230px) {
  .fd-main {
    max-width: 816px;
  }
}

.fd-sidebar {
  align-self: stretch;
  max-width: 450px;
  min-width: 270px;
  width: 100%;
}
@media (min-width: 1024px) {
  .fd-sidebar {
    max-width: 356px;
  }
}

/* ── Post wrap ────────────────────────────────────────────────────── */
.fd-post-wrap {
  background-color: #fff;
  border: 1px solid #ebebeb;
  margin-bottom: 26px;
  padding: 15px 15px 25px;
}
@media (min-width: 767px) {
  .fd-post-wrap {
    border-radius: 8px;
  }
}

/* ── Article ──────────────────────────────────────────────────────── */
.fd-post-wrap > article,
.fd-article-body {
  padding: 0 4px;
}
@media (min-width: 768px) {
  .fd-post-wrap > article,
  .fd-article-body {
    padding: 0 16px;
  }
}
.fd-post-wrap > article h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 20px;
}
.fd-post-wrap > article p {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
}
.fd-post-wrap > article p:last-of-type {
  margin-bottom: 0;
}
.fd-post-wrap > article p::first-letter {
  text-transform: capitalize;
}

.fd-article-body h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 20px;
}
.fd-article-body h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 20px;
}
.fd-article-body p {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 20px;
}
.fd-article-body p:last-of-type {
  margin-bottom: 0;
}
.fd-article-body p::first-letter {
  text-transform: capitalize;
}
.fd-article-body ul,
.fd-article-body ol {
  margin: 10px 0 40px;
}
.fd-article-body ul li {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 8px;
  margin-left: 20px;
}
.fd-article-body ol li {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  list-style: decimal;
  margin-bottom: 8px;
  margin-left: 20px;
}
.fd-article-body ul li::first-letter,
.fd-article-body ol li::first-letter {
  text-transform: capitalize;
}
.fd-post-ad--inline {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 24px auto;
  max-width: 100%;
  overflow: hidden;
}
.fd-post-ad--inline > * {
  max-width: 100%;
}
.fd-post-ad--inline iframe {
  max-width: 100%;
}

/* ── Slider ───────────────────────────────────────────────────────── */
.fd-slider {
  margin: 42px 0;
  max-width: 930px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.fd-slider-track {
  position: relative;
  width: 100%;
}
.fd-slide {
  display: none;
  width: 100%;
}
.fd-slide.is-active {
  display: block;
}
.fd-slide-img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}
.fd-slide-placeholder {
  aspect-ratio: 836 / 484;
  background: linear-gradient(135deg, #f4f6f7, #eef2f3);
  border-radius: 8px;
  min-height: 220px;
  width: 100%;
}

.fd-slider-btn {
  aspect-ratio: 1/1;
  background-color: #2b373a !important;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  opacity: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.25s ease-in-out;
  width: 36px;
  z-index: 2;
}
.fd-slider-prev {
  left: 20px;
}
.fd-slider-next {
  right: 20px;
}
.fd-slider-btn::after {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  left: 50%;
  top: 50%;
  position: absolute;
}
.fd-slider-prev::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-30%, -50%) rotate(45deg);
}
.fd-slider-next::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-70%, -50%) rotate(45deg);
}
.fd-slider-btn:hover {
  opacity: 0.8;
}
.fd-slider-btn.is-disabled {
  cursor: auto;
  opacity: 0.1;
  pointer-events: none;
}
.fd-slider-ctas {
  align-items: center;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 72px);
  z-index: 3;
}
.fd-slider-cta {
  align-items: center;
  background-color: #00856f !important;
  border-radius: 4px;
  color: #fff !important;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
  white-space: nowrap;
}
.fd-slider-cta:hover {
  background-color: #00947b !important;
  color: #fff !important;
  text-decoration: none;
}
.fd-video-modal[hidden] {
  display: none;
}
.fd-video-modal {
  align-items: center;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 99999;
}
.fd-video-modal-content {
  background: #111;
  border-radius: 8px;
  max-width: 980px;
  position: relative;
  width: min(100%, 980px);
}
.fd-video-modal-close {
  align-items: center;
  background: #fff !important;
  border-radius: 50%;
  color: #2b373a !important;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: -14px;
  top: -14px;
  width: 38px;
  z-index: 2;
}
.fd-video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  width: 100%;
}
.fd-video-frame iframe,
.fd-video-frame video {
  background: #000;
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .fd-slider-ctas {
    bottom: 16px;
    gap: 8px;
    width: calc(100% - 48px);
  }
  .fd-slider-cta {
    font-size: 13px;
    min-height: 38px;
    padding: 0 12px;
  }
}

/* ── Section title ────────────────────────────────────────────────── */
.fd-section-title {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .fd-section-title {
    padding: 10px 20px;
  }
}
.fd-section-title h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.8;
  text-transform: inherit;
}
.fd-section-title h2::first-letter {
  text-transform: capitalize;
}

/* ── Version container ────────────────────────────────────────────── */
@media (min-width: 636px) {
  .fd-version-container {
    padding: 0 16px;
  }
}

.fd-version-wrap {
  align-items: center;
  border-bottom: 1px solid #ebebeb;
  color: #666;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  padding: 15px 20px 15px 2px;
}
@media (min-width: 636px) {
  .fd-version-wrap {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .fd-version-wrap {
    padding: 15px 20px 15px 15px;
  }
}
.fd-version-wrap:last-of-type {
  border-bottom: 0;
  margin-bottom: 10px;
}

.fd-version-header {
  color: #2b373a;
  display: none;
  font-weight: 600;
}
@media (min-width: 768px) {
  .fd-version-header {
    display: flex;
  }
}
.fd-version-header div {
  display: inline-block;
}
.fd-version-header div::first-letter {
  text-transform: capitalize;
}
.fd-version-header .fd-ver-release {
  font-size: 16px;
}

/* Version list scroll */
.fd-version-list {
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.fd-version-list.is-expanded {
  max-height: 600px !important;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .fd-version-list.is-expanded {
    max-height: 800px !important;
  }
}

/* Version columns */
.fd-ver-release {
  display: flex;
  font-size: 14px;
  width: 100%;
}
@media (min-width: 636px) {
  .fd-ver-release {
    flex-direction: column;
    width: 15%;
  }
}
.fd-ver-date-wrap {
  display: flex;
}
@media (min-width: 636px) {
  .fd-ver-date-wrap {
    flex-direction: column;
  }
}
.fd-ver-date {
  display: flex;
  gap: 4px;
}
.fd-ver-year {
  margin-left: 6px;
}
@media (min-width: 636px) {
  .fd-ver-year {
    margin-left: 10px;
  }
}

.fd-ver-info {
  padding-right: 24px;
  width: 100%;
}
@media (min-width: 636px) {
  .fd-ver-info {
    width: 60%;
  }
}

.fd-ver-info-item {
  align-items: center;
  display: flex;
}
.fd-ver-info-item:not(:last-child) {
  margin-bottom: 4px;
}
.fd-ver-info-item span {
  display: inline-block;
}
.fd-ver-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-right: 12px;
  max-width: 80px;
  text-transform: inherit;
  width: 100%;
}
.fd-ver-data {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fd-ver-dls {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  width: 100%;
}
@media (min-width: 636px) {
  .fd-ver-dls {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .fd-ver-dls {
    justify-content: flex-end;
  }
}

/* Version download buttons */
.fd-ver-dl-btn {
  align-items: center;
  display: flex;
  flex-direction: column;
  max-width: max-content;
  min-width: 50px;
  position: relative;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  color: inherit;
}
.fd-ver-dl-icon {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #00856f;
  border-radius: 10%;
  color: #f7fdfc;
  display: flex;
  height: 30px;
  justify-content: center;
  margin-bottom: 10px;
  max-width: 30px;
}
.fd-ver-dl-size {
  color: #666;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Tooltip — JS-driven, appended to body to avoid clipping */
.fd-tooltip-bubble {
  background-color: #2b373a;
  border-radius: 4px;
  color: #fff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 12px;
  font-weight: 500;
  opacity: 0;
  padding: 5px 10px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 999999;
}
.fd-tooltip-bubble.fd-tooltip-visible {
  opacity: 1;
}
.fd-tooltip-bubble::after {
  border: 5px solid transparent;
  border-top-color: #2b373a;
  content: "";
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}

/* Show More button */
.fd-version-cta {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  margin: 32px auto;
  position: relative;
  text-transform: inherit;
  width: max-content;
}
.fd-version-cta::after {
  border-bottom: 2px solid #2b373a;
  border-bottom-left-radius: 2px;
  border-left: 2px solid #2b373a;
  content: "";
  display: inline-block;
  height: 5px;
  width: 5px;
  position: absolute;
  right: -14px;
  top: 10px;
  transform: rotate(-45deg);
}

/* ── Comment form ─────────────────────────────────────────────────── */
.fd-comment-form-wrap {
  border-radius: 8px;
  padding: 12px 0 20px;
}
@media (min-width: 768px) {
  .fd-comment-form-wrap {
    padding: 12px 20px 20px;
  }
}
.fd-comment-form-title {
  color: #2b373a;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}
.fd-comment-form-wrap > p {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}
.fd-comment-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.fd-form-group {
  align-items: center;
  gap: 4px;
  display: flex;
}
.fd-form-field {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}
.fd-form-field label {
  color: #666;
  font-size: 12px;
  font-weight: 500;
}
.fd-comment-form input {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  min-height: 42px;
  padding: 0 12px;
  transition: border-color 0.25s ease;
  width: 100%;
}
.fd-comment-form input:focus {
  border-color: #00856f;
  outline: none;
}
.fd-comment-form textarea {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100px;
  padding: 12px;
  resize: vertical;
  transition: border-color 0.25s ease;
  width: 100%;
}
.fd-comment-form textarea:focus {
  border-color: #00856f;
  outline: none;
}

/* Feedback & Reply state */
.fd-feedback {
  border-radius: 4px;
  font-size: 14px;
  margin-top: 12px;
  padding: 8px 12px;
}
.fd-feedback.is-success {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.fd-feedback.is-error {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.fd-reply-state {
  align-items: center;
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  color: #2b373a;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-top: 12px;
  padding: 8px 12px;
}
.fd-reply-state button {
  color: #00856f;
  font-size: 14px;
  font-weight: 600;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.fd-btn-primary {
  align-items: center;
  background-color: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
  justify-content: center;
  line-height: 1;
  padding: 14px 28px;
  text-align: center;
  text-transform: capitalize;
  transition: background-color 0.25s ease-in-out;
  white-space: nowrap;
}
.fd-btn-primary:hover {
  background-color: var(--color-primary-hover) !important;
}
.fd-btn-primary.is-loading {
  opacity: 0.65;
  pointer-events: none;
}
.fd-comment-form .fd-btn-primary {
  align-self: flex-start;
}
.fd-load-more-btn {
  display: flex;
  margin: 40px auto 0;
}
.fd-btn-text {
  display: inline-block;
}

/* Submit icon: smaller (14px) */
.fd-submit-icon {
  align-items: center;
  display: flex;
}
.fd-submit-icon .fd-icon {
  --fd-icon-size: 14px;
  height: 14px;
  min-width: 14px;
  max-width: 14px;
}

/* Submit spinner — hidden by default, shown during is-loading */
.fd-submit-spinner {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: #fff;
  display: none;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}
.fd-btn-primary.is-loading .fd-submit-spinner {
  animation: fd-spin 0.65s linear infinite;
  display: inline-block;
}
@keyframes fd-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Icon base */
.fd-icon {
  --fd-icon-size: 20px;
  align-items: center;
  color: inherit;
  display: flex;
  fill: currentColor;
  height: var(--fd-icon-size);
  justify-content: center;
  max-width: var(--fd-icon-size);
  min-width: var(--fd-icon-size);
  width: 100%;
}

/* ── Comments list ────────────────────────────────────────────────── */
.fd-comment-list {
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-top: 24px;
  padding: 12px 0;
}
.fd-no-comments {
  color: #666;
  font-size: 14px;
}

/* Comment node */
.fd-comment-inner {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  padding: 0 10px 0 0;
}
@media (min-width: 768px) {
  .fd-comment-inner {
    gap: 24px;
    padding: 0 24px;
  }
}
.fd-avatar {
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 44px;
}
.fd-avatar-placeholder {
  align-items: center;
  background-color: #ececec;
  border-radius: 50%;
  color: #666;
  display: inline-flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.fd-comment-details {
  flex-grow: 1;
}
.fd-comment-head {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fd-comment-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fd-comment-meta h3 {
  color: #2b373a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}
.fd-comment-ts {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.fd-reply-btn {
  color: #666;
  font-size: 16px;
  font-weight: 500;
}
.fd-comment-body p {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  word-break: break-word;
}
.fd-comment-replies {
  border-left: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-left: 32px;
  margin-top: 24px;
  padding-left: 16px;
}
@media (min-width: 768px) {
  .fd-comment-replies {
    margin-left: 56px;
    padding-left: 24px;
  }
}

/* ── Widget ───────────────────────────────────────────────────────── */
.fd-widget {
  background-color: #fff;
  border: 1px solid #ebebeb;
  flex-grow: 1;
  margin-bottom: 26px;
  padding: 20px 20px 26px;
  position: relative;
}
@media (min-width: 768px) {
  .fd-widget {
    border-radius: 8px;
    padding: 20px 26px 26px;
  }
}
.fd-widget-header {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 16px;
  padding-bottom: 22px;
}
.fd-widget-header h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

/* Mobile download card: visible on mobile, hidden on desktop (≥768px) */
.fd-dl-mobile {
  display: block;
}
@media (min-width: 768px) {
  .fd-dl-mobile {
    display: none;
  }
}

/* Desktop download card: hidden on mobile, visible on desktop (≥768px) */
.fd-dl-desktop {
  display: none;
}
@media (min-width: 768px) {
  .fd-dl-desktop {
    display: block;
  }
}

/* Generic md-none (product info, etc.) */
.fd-md-none {
  display: none;
}
@media (min-width: 768px) {
  .fd-md-none {
    display: block;
  }
}

/* ── Download widget ──────────────────────────────────────────────── */
.fd-dl-size {
  align-items: center;
  display: flex;
  font-size: 48px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.fd-dl-size span {
  font-size: 23px;
  margin-left: 4px;
}
.fd-dl-ratings {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.fd-ratings-showcase {
  align-items: center;
  display: flex;
  font-size: 12px;
  line-height: 1;
  margin-right: 14px;
}
.fd-rate-avg {
  background-color: #8a6700;
  border-bottom-left-radius: 12px;
  border-top-left-radius: 12px;
  color: #fff;
  margin-right: 4px;
  padding: 1px 8px 2px;
}
.fd-rate-count {
  border-bottom-right-radius: 12px;
  border-right: 1px solid #8a6700;
  border-top-right-radius: 12px;
  color: #8a6700;
  padding: 1px 8px 2px;
}
.fd-stars {
  align-items: center;
  display: inline-flex;
  gap: 4px;
  max-width: max-content;
}
.fd-star {
  --star-size: 16px;
  cursor: default;
  height: 16px;
  min-width: 16px;
  width: 16px;
}
.fd-star svg {
  height: 16px;
  width: 16px;
}
.fd-rating-stars {
  gap: 2px;
}
.fd-rating-star {
  align-items: center;
  color: #cfcfcf;
  display: inline-flex;
  height: 18px;
  justify-content: center;
  padding: 0;
  width: 18px;
}
.fd-rating-star svg {
  display: block;
  height: 18px;
  width: 18px;
}
.fd-rating-star .fd-star-left,
.fd-rating-star .fd-star-right {
  fill: #cfcfcf;
  transition: fill 0.12s ease;
}
.fd-rating-star.is-filled .fd-star-left,
.fd-rating-star.is-filled .fd-star-right,
.fd-rating-star.is-half .fd-star-left,
.fd-rating-star.is-preview .fd-star-left,
.fd-rating-star.is-preview .fd-star-right {
  fill: #f4b400;
}
.fd-rating-star[disabled] {
  cursor: default;
  opacity: 0.7;
}
.fd-rating-stars.is-submitting .fd-rating-star {
  pointer-events: none;
}
.fd-rating-error {
  color: #b42318;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin: -12px 0 18px;
  text-align: center;
}

.fd-filter-options {
  display: flex;
  flex-direction: column;
  /* max-height: 300px;
	overflow-y: auto; */
  padding-right: 12px;
}
.fd-filter-options::-webkit-scrollbar {
  width: 4px;
}
.fd-filter-options::-webkit-scrollbar-thumb {
  background-color: #a9a9a9;
  outline: none;
}

/* Radio option row */
.fd-form-group {
  align-items: flex-start;
  display: flex;
  margin-bottom: 14px;
}
.fd-custom-radio {
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  height: 18px;
  margin-top: 4px;
  max-width: 18px;
  position: relative;
  width: 18px;
}
.fd-custom-radio input {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.fd-custom-radio span {
  background-color: #f5f5f5;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.25s ease-in-out;
  width: 100%;
}
.fd-custom-radio input:checked ~ span {
  background-color: #00d7b3;
  border-color: #00d7b3;
}
.fd-custom-radio span::after {
  background-color: #fff;
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease-in-out;
  width: 7px;
}
.fd-custom-radio input:checked ~ span::after {
  opacity: 1;
}
.fd-form-group label {
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  padding-left: 14px;
  width: 100%;
}

/* Direct Download button (dark) */
.fd-direct-dl-btn {
  align-items: center;
  background-color: #2b373a !important;
  border: 1px solid #2b373a !important;
  border-radius: 4px;
  color: #fff !important;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
  justify-content: center;
  line-height: 1;
  margin-top: 4px;
  min-height: 42px;
  padding: 14px 28px;
  transition: background-color 0.25s ease;
  width: 100%;
}
.fd-direct-dl-btn:hover {
  background-color: #3b4a4e !important;
  border-color: #3b4a4e !important;
}

/* Instant / fast download button (orange) */
.fd-fast-dl-btn {
  align-items: center;
  background-color: #fca120 !important;
  border-radius: 4px;
  color: #fff !important;
  display: flex;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 600;
  gap: 12px;
  justify-content: center;
  line-height: 1;
  margin: 12px 0 0;
  max-width: 288px;
  min-height: 42px;
  padding: 0 12px;
  transition: background-color 0.25s ease;
  width: 100%;
}
.fd-fast-dl-btn:hover {
  background-color: #f99200 !important;
}
.fd-fast-dl-icon {
  align-items: center;
  display: flex;
  position: relative;
}
.fd-beta {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-left: 6px;
}

.fd-other-buttons {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.fd-torrent-btn {
  align-items: center;
  background-color: #00856f;
  border-radius: 4px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  height: 42px;
  justify-content: center;
  line-height: 1;
  min-width: 230px;
  padding: 0 0 0 12px;
  width: 100%;
}
@media (min-width: 1024px) {
  .fd-torrent-btn {
    min-width: 210px;
  }
}
@media (min-width: 1044px) {
  .fd-torrent-btn {
    min-width: 230px;
  }
}
.fd-torrent-btn:hover {
  background-color: #00947b;
}
.fd-torrent-link {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 12px;
  justify-content: center;
  width: 100%;
}
.fd-copy-btn {
  align-items: center;
  background-color: var(--color-primary-hover) !important;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  display: flex;
  flex-shrink: 0;
  height: 42px;
  justify-content: center;
  max-width: 42px;
  width: 42px;
}
.fd-link-light {
  align-items: center;
  color: var(--color-primary) !important;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  line-height: 1.6;
  margin: 16px auto 0;
  text-align: center;
  width: max-content;
}
/* ── Torrent copy button — loading state ──────────────────────── */
.fd-copy-btn {
  position: relative;
}
.fd-copy-btn[disabled] {
  cursor: default;
}
.fd-copy-btn.fd-torrent-copy .fd-icon {
  transition:
    transform 0.2s,
    opacity 0.2s;
  position: relative;
  z-index: 1;
}
.fd-copy-btn.fd-torrent-copy.is-loading .fd-icon {
  opacity: 0.3;
  transform: scale(0.55);
}
.fd-copy-spinner {
  position: absolute;
  inset: 4px;
  width: auto;
  height: auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-top-color: #fff;
  pointer-events: none;
  z-index: 2;
  will-change: transform;
  visibility: hidden;
  opacity: 0;
}
.fd-copy-btn.fd-torrent-copy.is-loading .fd-copy-spinner {
  visibility: visible;
  opacity: 1;
  animation: fd-spin 0.65s linear infinite;
}

/* ── Product info ─────────────────────────────────────────────────── */
.fd-info-item {
  border-bottom: 1px solid #ebebeb;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.fd-info-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  min-width: 110px;
  text-transform: capitalize;
}
.fd-info-data {
  color: #666;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  text-align: right;
  word-break: break-all;
}
.fd-info-link {
  color: #00856f;
}
.fd-info-langs span:not(:last-of-type)::after {
  content: ", ";
}

/* ── Related products ─────────────────────────────────────────────── */
.fd-related-card {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}
.fd-related-card:last-child {
  margin-bottom: 0;
}
.fd-related-icon {
  aspect-ratio: 1/1;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 0;
  margin: auto 0;
  overflow: hidden;
  padding: 5px;
  position: relative;
  width: 62px;
}
.fd-related-icon img {
  height: auto;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translateY(-50%) translateX(-50%);
  width: auto;
}
.fd-related-placeholder {
  align-items: center;
  background-color: #f1f1f1;
  border-radius: 4px;
  color: #bbb;
  display: flex;
  height: 52px;
  justify-content: center;
  width: 100%;
}
.fd-related-details {
  max-width: 230px;
  padding-top: 2px;
  width: 72%;
}
.fd-related-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fd-related-cat {
  color: var(--color-primary) !important;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 5px;
}
.fd-related-size {
  align-items: center;
  display: flex;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.fd-related-size span {
  font-size: 13px;
  text-transform: uppercase;
}

/* ── Post tags ────────────────────────────────────────────────── */
.fd-tags-widget {
  padding: 4px 4px 4px;
}
@media (min-width: 768px) {
  .fd-tags-widget {
    padding: 4px 4px 4px;
  }
}
.fd-tags-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  padding: 10px 0;
}
.fd-tag-link {
  color: var(--color-primary) !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  margin-right: 4px;
  text-transform: inherit;
}
.fd-tag-link::after {
  content: ",";
}
.fd-tag-link:hover {
  text-decoration: underline;
}
.fd-tag-link:last-child::after {
  content: none;
}

/* ── Share buttons ─────────────────────────────────────────────── */
.fd-page .single-post-share {
  border-top: 1px solid #ebebeb;
  margin: 28px 16px 0;
  padding-top: 20px;
}
.fd-page .single-post-share-title {
  color: #2b373a;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 14px;
}
.fd-page .single-post-share-buttons {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fd-page .single-post-share-button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  color: #fff !important;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
  transition:
    filter 0.15s ease,
    transform 0.15s ease;
}
.fd-page .single-post-share-button:hover {
  filter: brightness(0.95);
  text-decoration: none;
  transform: translateY(-1px);
}
.fd-page .single-post-share-button-icon {
  display: block;
  fill: currentColor;
  height: 20px;
  width: 20px;
}
.fd-page .single-post-share-button--facebook {
  background: #1877f2;
}
.fd-page .single-post-share-button--x {
  background: #111;
}
.fd-page .single-post-share-button--linkedin {
  background: #0a66c2;
}
.fd-page .single-post-share-button--reddit {
  background: #ff4500;
}
.fd-page .single-post-share-button--whatsapp {
  background: #22a75a;
}
.fd-page .single-post-share-button--copy {
  background: #2b373a;
}
.fd-page .single-post-share-copy-status-copied {
  background: #0f9d58;
}
.fd-page .single-post-share-copy-status-error {
  background: #b42318;
}
.fd-page .single-post-share-copy-icon {
  fill: none !important;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
  width: 19px;
}
@media (max-width: 767px) {
  .fd-page .single-post-share {
    margin: 24px 4px 0;
  }
}
@media (max-width: 480px) {
  .fd-page .single-post-share-button {
    flex: 1 1 calc(50% - 5px);
    min-width: 130px;
  }
}
