.modal-dialog {
    pointer-events: unset;
}
.path-comment .inline__links {
    display: none;
}

/* ============================================================
   Homepage: Stats Bar
   ============================================================ */
.dc-stats-bar {
  background: #fff;
  border-top: 3px solid var(--primary-color, #ed485b);
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 0;
  position: relative;
  z-index: 10;
}

.dc-stats-bar .dc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}

.dc-stats-bar .col-lg-3:last-child .dc-stat-item {
  border-right: none;
}

.dc-stats-bar .dc-stat-icon {
  width: 40px;
  height: 40px;
  color: var(--primary-color, #ed485b);
  margin-bottom: 10px;
}

.dc-stats-bar .dc-stat-icon svg {
  width: 100%;
  height: 100%;
}

.dc-stats-bar .dc-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  line-height: 1;
}

.dc-stats-bar .dc-stat-suffix {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color, #ed485b);
  line-height: 1;
  margin-left: 2px;
}

.dc-stats-bar .dc-stat-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 6px;
}

@media (max-width: 991px) {
  .dc-stats-bar .dc-stat-item {
    padding: 22px 12px;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }
  .dc-stats-bar .col-6:nth-child(odd) .dc-stat-item {
    border-right: 1px solid #f0f0f0;
  }
  .dc-stats-bar .col-6:nth-child(n+3) .dc-stat-item {
    border-bottom: none;
  }
}

/* ============================================================
   Homepage: Compare CTA Banner
   ============================================================ */
.dc-compare-cta {
  background: linear-gradient(135deg, #1a1f36 0%, #0d1b2a 100%);
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}

.dc-compare-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(237, 72, 91, 0.08);
  pointer-events: none;
}

.dc-compare-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(237, 72, 91, 0.05);
  pointer-events: none;
}

.dc-compare-cta-icon {
  width: 80px;
  height: 80px;
  color: var(--primary-color, #ed485b);
  margin: 0 auto;
  opacity: 0.9;
}

.dc-compare-cta-icon svg {
  width: 100%;
  height: 100%;
}

.dc-compare-cta-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}

.dc-compare-cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  max-width: 520px;
}

.dc-compare-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-color, #ed485b);
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
}

.dc-compare-cta-btn:hover {
  background: transparent;
  border-color: var(--primary-color, #ed485b);
  color: var(--primary-color, #ed485b) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237, 72, 91, 0.35);
}

@media (max-width: 767px) {
  .dc-compare-cta {
    padding: 36px 0;
    text-align: center;
  }
  .dc-compare-cta-icon {
    width: 60px;
    height: 60px;
  }
  .dc-compare-cta-title {
    font-size: 1.4rem;
  }
  .dc-compare-cta-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .dc-compare-cta-btn {
    margin-top: 8px;
  }
}

/* ============================================================
   Homepage: Promoted / Sponsored Drone Cards
   ============================================================ */
.dc-promoted-drones {
  background: #f8f9fb;
  padding: 40px 0 44px;
  border-bottom: 1px solid #ebebeb;
}

.dc-promoted-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.dc-promoted-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-color, #ed485b);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
}

.dc-promoted-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  margin: 0;
  flex: 1;
}

.dc-promoted-see-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color, #ed485b);
  text-decoration: none;
  white-space: nowrap;
}

.dc-promoted-see-all:hover {
  text-decoration: underline;
  color: var(--primary-color, #ed485b);
}

/* Card */
.dc-drone-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: box-shadow 0.22s, transform 0.22s;
}

.dc-drone-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

.dc-drone-sponsored-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 7px;
  border-radius: 3px;
  z-index: 2;
}

.dc-drone-card-img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dc-drone-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.dc-drone-card:hover .dc-drone-card-img img {
  transform: scale(1.04);
}

.dc-drone-card-img--placeholder svg {
  width: 80px;
  height: 50px;
  color: #ccc;
}

.dc-drone-card-body {
  padding: 16px 18px 10px;
  flex: 1;
}

.dc-drone-card-brand {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-color, #ed485b);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.dc-drone-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dc-drone-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.dc-drone-card-price--enquiry {
  font-size: 0.85rem;
  font-weight: 500;
  color: #888;
}

.dc-drone-card-footer {
  padding: 0 18px 18px;
}

.dc-drone-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  justify-content: center;
  background: var(--primary-color, #ed485b);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

.dc-drone-card-btn:hover {
  background: #c93045;
  box-shadow: 0 4px 14px rgba(237, 72, 91, 0.35);
  color: #fff !important;
}

@media (max-width: 767px) {
  .dc-promoted-drones {
    padding: 28px 0 32px;
  }
  .dc-drone-card-img {
    height: 160px;
  }
}
