/* Shared LP styles for /usa/ landing pages
   Used by: top10-drones.html, best-professional-drone.html,
            best-drone-for-money.html, newest-drone-releases.html,
            best-beginner-drone.html
   Page-specific overrides (e.g. vw-trust on top10-drones) stay inline. */

.headline {
      font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
      font-size: 28px; /* Mobile */
      font-weight: 300;
      color: #071228;
      text-align: center;
      text-shadow: 0 2px 2px rgba(0, 0, 0, 1.75);
    }
    @media (min-width: 768px) {
      .headline { font-size: 42px; } /* Desktop Original */
    }
.opacity-0 { opacity: 0; }
.translate-y-10 { transform: translateY(2.5rem); }
.box1 {
  background-image: url('../images/skyr.webp');
  background-size: cover;
  background-position: center;
}
.box2 {
  background-image: url('../images/DJI-Mini-5-Pro-Best.webp');
  background-size: cover;
  background-position: center;
}	
.box3 {
  background-image: url('../images/DJI-Neo-2-Best2.webp');
  background-size: cover;
  background-position: center;
}	

    .progress-circle {
      --size: 100px;
      --thickness: 10px;
      --value: 0;
      --color: #6ee7b7;
      --color-dark: #059669;

      width: var(--size);
      height: var(--size);
      border-radius: 50%;
      background: conic-gradient(
        var(--color) calc(var(--value) * 1%),
        #e5e7eb 0
      );
      transition: background 0.3s linear;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-dark);
      font-weight: bold;
    }

    .progress-circle span {
      position: absolute;
      font-size: 0.9rem;
    }
    
        .progress-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background:
                radial-gradient(closest-side, white 79%, transparent 80% 100%),
                conic-gradient(
                    var(--color-dark) 0%,
                    var(--color) calc(var(--value) * 1%),
                    #e5e7eb 0
                );
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
            color: #374151;
        }

        @media (max-width: 768px) {
            .circle-container {
                gap: clamp(0.25rem, 2vw, 1rem);
                flex-wrap: nowrap;
                justify-content: space-between;
            }
            .circle-container > div {
                flex: 1 1 0;
                min-width: 0;
            }
            .progress-circle {
            width: clamp(48px, 15vw, 70px);
            height: clamp(48px, 15vw, 70px);
            border-radius: 50%;
            background:
                radial-gradient(closest-side, white 79%, transparent 80% 100%),
                conic-gradient(
                    var(--color-dark) 0%,
                    var(--color) calc(var(--value) * 1%),
                    #e5e7eb 0
                );
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(12px, 3.5vw, 16px);
            font-weight: bold;
            color: #374151;
        }
        .progress-circle span {
            font-size: clamp(12px, 3.5vw, 16px);
        }
        .circle-container .text-xs {
            font-size: clamp(12px, 3vw, 14px);
            text-align: center;
            line-height: 1.2;
            word-break: normal;
            overflow-wrap: break-word;
        }
        }

        @media (min-width: 769px) {
            .circle-container {
                gap: 4rem;
            }
        }
			
        @media (max-width: 768px) {
            .greenfo {
             
             transform-origin: top left; 
             width: 100%;
             font-family: 'Arial Narrow', sans-serif-condensed, sans-serif;
             letter-spacing: -0.2px;
             gap: 0.3rem !important;
            } }

          @media (max-width: 768px) {
            .mobilesm {
           
             width:250px;
            } }  

.zoom-hover {
  transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .zoom-hover:hover {
    transform: scale(1.4);
    z-index: 10;
  }
}
	
.card-hover {
  transition: box-shadow 0.3s ease, outline 0.3s ease;
}


@media (hover: hover) and (pointer: fine) {
  .card-hover:hover {
    box-shadow: 0 0 0 3px #3b82f6;
    border-radius: 8px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .card-hover {
    box-shadow: 0 0 0 3px #3b82f6;
    border-radius: 8px;
  }
}



/* =================================================================
   DRONIOS HOMEPAGE REDESIGN - Premium Hero, Trust Panel, Filters
   Namespace: .dr-*
   Safe to remove this entire block to revert.
   ================================================================= */

/* Smooth scroll for anchor navigation from picks to drone cards */
html {
  scroll-behavior: smooth;
}
/* Scroll-margin prevents drone cards from hiding behind fixed headers
   (if present) when user jumps from a pick link. */
.drone-card[id^="drone-"] {
  scroll-margin-top: 20px;
}

.dr-hero-wrap {
  max-width: 1280px;
  margin: 0 auto 0;
  padding: 26px 20px 2px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

/* ---- Top headline above the 3 picks ---- */
.dr-eyebrow {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.dr-eyebrow::before,
.dr-eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #cbd5e1;
}

.dr-hero-title {
  font-size: 24px;
  color: #0f172a;
  font-weight: 700;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin: 0 0 6px;
}
.dr-hero-sub {
  font-size: 14px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 auto 22px;
  max-width: 640px;
  line-height: 1.55;
}

/* ---- 3 top picks: Glass Cards (mobile-first) ---- */
.dr-picks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 1.5rem;
}
.dr-pick {
  position: relative;
  display: block;
  padding: 0;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 20px -6px rgba(15, 23, 42, 0.08);
}
.dr-pick:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -8px rgba(15, 23, 42, 0.18);
}

/* Farbiger Akzent-Streifen oben, signalisiert Kategorie */
.dr-pick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
  z-index: 2;
}
.dr-pick--value::before {
  background: linear-gradient(90deg, #78350f 0%, #d97706 100%);
}
.dr-pick--beginner::before {
  background: linear-gradient(90deg, #064e3b 0%, #059669 100%);
}

/* Bild-Container nutzt volle Kartenbreite, zart getönter Hintergrund in Markenfarbe */
.dr-pick-img-wrap {
  position: relative;
  width: 100%;
  padding: 18px 14px 10px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dr-pick--value .dr-pick-img-wrap {
  background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.08) 0%, transparent 70%);
}
.dr-pick--beginner .dr-pick-img-wrap {
  background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
}
.dr-pick-img-wrap img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.12));
}

/* Badge: Rang-Zahl in Markenfarbe, oben rechts auf dem Bild */
.dr-pick-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e3a8a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
  z-index: 3;
}
.dr-pick--value .dr-pick-badge { background: #b45309; }
.dr-pick--beginner .dr-pick-badge { background: #047857; }

/* Textbereich unter dem Bild */
.dr-pick-body {
  padding: 8px 18px 16px;
  text-align: center;
}
.dr-pick-cat {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: #2563eb;
}
.dr-pick--value .dr-pick-cat { color: #b45309; }
.dr-pick--beginner .dr-pick-cat { color: #047857; }

.dr-pick-name {
  font-size: 17px;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}
.dr-pick-tag {
  font-size: 12px;
  color: #64748b;
  margin: 0 0 12px;
  line-height: 1.4;
}

/* CTA: klar als "Details, nicht Amazon" markiert */
.dr-pick-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  letter-spacing: 0.3px;
  transition: background 0.15s ease;
}
.dr-pick:hover .dr-pick-cta {
  background: #1e3a8a;
  color: #ffffff;
}
.dr-pick--value:hover .dr-pick-cta {
  background: #b45309;
}
.dr-pick--beginner:hover .dr-pick-cta {
  background: #047857;
}
.dr-pick-cta svg {
  width: 12px;
  height: 12px;
}



/* ---- Headline of the Top-25 list (existing .headline gets enhanced) ---- */
.dr-list-intro {
  margin: 32px 0 18px;
  padding: 0 4px;
}
.dr-list-intro h2 {
  font-size: 24px;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.dr-list-intro h2 .dr-trophy {
  color: #fbbf24;
  font-size: 22px;
}
.dr-list-intro p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.55;
}
@media (min-width: 768px) {
  .dr-list-intro h2 { font-size: 30px; }
  .dr-list-intro p  { font-size: 15px; }

  /* Hero responsive tweaks */
  .dr-hero-wrap { padding: 36px 40px 8px; }
  .dr-hero-title { font-size: 32px; }
  .dr-hero-sub { font-size: 15px; margin-bottom: 28px; }

  /* Picks: three columns side by side */
  .dr-picks {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .dr-pick-img-wrap { padding: 24px 18px 14px; }
  .dr-pick-body { padding: 10px 20px 22px; }
  .dr-pick-name { font-size: 19px; }
  .dr-pick-tag { font-size: 13px; }
  .dr-pick-badge { width: 36px; height: 36px; font-size: 15px; }
}

 /* Standard: Button wird angezeigt (für Mobile) */
.whatsapp-mobile-index {
    display: inline-block;
    background-color: #25D366;
    margin-left: -5px;
    color: white;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.3));
    padding: 1px 10px;
    border-radius: 5px;
    text-decoration: none;
}

/* Desktop-Abfrage: Wenn der Bildschirm breiter als 768px ist */
@media (min-width: 769px) {
    .whatsapp-mobile-index {
        display: none; /* Versteckt den Button am Desktop */
    }
} 
/* Das Element wird auf Desktops (> 1024px) ausgeblendet */
@media screen and (min-width: 1024px) {
  .min-element {
    display: none !important;
  }
}
@media (max-width: 80rem) {
  .marker {
     color:	#292933;
     text-shadow: 0 0 rgba(0, 0, 0, 0);
  }
}

/* ---- Header gradient: mobile only ---- */
@media (max-width: 767px) {
  .site-header {
    background-image: linear-gradient(to bottom right, #172554, #1e3a8a);
  }
}
@media (min-width: 768px) {
  .site-header {
    background: transparent;
  }
}

/* ---- Mobile: Skyrover X1 Hero-Bild visuell nach unten verschieben,
       ohne dass der blaue Karten-Header mitwächst ---- */
@media (max-width: 767px) {
  .skyrover-x1-shift {
    transform: translateY(1rem);
  }
}

/* ---- Mobile: H1 + Intro ohne hellblauen Hintergrund ---- */
@media (max-width: 767px) {
  .drone-filter-container {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 1.5rem;
  }
}

/* ---- Desktop only: white card around comparison-tool intro + selectors ---- */
@media (min-width: 768px) {
  .comparison-tool-wrap {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
  }
  .comparison-tool-wrap .headline { color: #0f172a; text-shadow: none; }
  .comparison-tool-wrap .headline .marker { color: #0f172a !important; text-shadow: none !important; }
  .comparison-tool-wrap .comparison-intro { color: #475569 !important; text-shadow: none !important; }
  .comparison-tool-wrap .comparison-intro strong { color: #0f172a !important; }
}

/* ---- Mobile: dock filter container directly to the header (no gap) ---- */
@media (max-width: 767px) {
  #droneContainer { padding-top: 0 !important; }
  /* Edge-bound selector cards: flat corners on the screen-edge side */
  #comparison-selectors-grid > div:first-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  #comparison-selectors-grid > div:last-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
}

/* ---- Make first third (blue column) of each drone card a full clickable affiliate link ---- */
.drone-card-blue-link {
  display: flex;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
@media (min-width: 1024px) {
  .drone-card-blue-link { width: 33.3333%; }
}
.drone-card-blue-link > div { width: 100%; }
.drone-card-blue-link:hover { filter: brightness(1.06); }
.drone-card-blue-link:focus-visible { outline: 3px solid #fbbf24; outline-offset: -3px; }

/* ---- Comparison Tool ---- */
.headcomp {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #FFFFFF;
  text-align: left;
}
@media (min-width: 768px) {
  .headcomp { font-size: 18px; }
}
.headron {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #292934;
  text-align: center;
}
@media (min-width: 768px) {
  .headron { font-size: 28px; }
}
.col-mitte { background-color: #f1f5f9 !important; opacity: 1 !important; }
.col-rechts { background-color: #ffffff !important; opacity: 1 !important; }
.drone-image-large {
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 768px) {
  #statsBody td { font-size: 15px !important; }
  #statsBody td strong.drone-name { font-size: 17px !important; }
}
#droneA, #droneB {
  height: 34px !important;
  font-size: 14px !important;
}
@media (min-width: 768px) {
  #droneA, #droneB { height: 42px !important; font-size: 16px !important; }
}
.table-container { border-radius: 4px !important; }
@media (min-width: 768px) {
  .table-container { border-radius: 12px !important; }
}
.spec-hint {
  font-size: 0.85em;
  color: #333;
  font-weight: normal;
  display: block;
  margin-top: 2px;
}
.sensor-img { max-width: 380px; width: 100%; height: auto; }

/* ---- Advertiser Disclosure popover (top-right of header) ---- */
.header-disclosure { position: relative; display: inline-block; }
.header-disclosure-trigger {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.header-disclosure-trigger:hover { color: #ffffff; }
.header-disclosure-pop {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(620px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(15, 23, 42, 0.08);
  padding: 14px 18px 12px;
  z-index: 60;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  text-align: left;
}
.header-disclosure-pop[data-open] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-disclosure-pop::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 14px;
  width: 11px;
  height: 11px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-left: 1px solid #e5e7eb;
  transform: rotate(45deg);
}
.header-disclosure-pop h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
  letter-spacing: -0.1px;
}
.header-disclosure-pop p {
  font-size: 12.5px;
  line-height: 1.45;
  color: #475569;
  margin: 0 0 6px;
}
.header-disclosure-pop p:last-of-type { margin-bottom: 0; }
.header-disclosure-methodology {
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  border-top: 1px solid #e5e7eb;
  padding-top: 8px;
  width: 100%;
}
.header-disclosure-methodology:hover { text-decoration: underline; }
.header-disclosure-close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-disclosure-close:hover { background: #f1f5f9; color: #0f172a; }
@media (max-width: 560px) {
  .header-disclosure-trigger { font-size: 11.5px; }
  .header-disclosure-pop { width: calc(100vw - 28px); max-width: 360px; }
}
@media (min-width: 768px) {
  /* /usa/ — Comparison Tool section: pin to identical width treatment as
     sibling sections so the table edges line up cleanly on desktop. */
  section.lp-section--comparison {
    max-width: 80rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    box-sizing: border-box !important;
  }
  section.lp-section--comparison .table-container {
    border-collapse: collapse;
    border-spacing: 0;
  }
}

/* Amazon-CTA universal: "Buy the {Drone} at:" als kleine Zeile über "[icon] amazon"
   — auf Desktop und Mobile, nur Größe/Gewicht variiert per Media Query unten. */
.drone-card a[href^="/go/"] {
  flex-wrap: wrap;
  line-height: 1.2;
}
.drone-card .buy-prefix {
  flex: 0 0 100%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
  text-align: center;
  opacity: 0.92;
  white-space: nowrap;
}

@media (max-width: 767px) {
  /* /usa/ — Mobile: shrink Top-10 drone-card body copy to 14px (Google's
     accessibility floor for legible body text on mobile). Spec tables and
     pill badges keep their own (smaller) sizes. */
  .drone-card p { font-size: 14px; line-height: 1.5; }
  .drone-card .greenfo span { font-size: 12px; }
  .drone-card .toggle-content td { font-size: 13px; }

  /* Mobile-Override: größeres Prefix + mehr Padding */
  .drone-card a[href^="/go/"] {
    padding-top: 0.75rem;
    padding-bottom: 0.85rem;
  }
  .drone-card .buy-prefix {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.4rem;
    opacity: 1;
  }

  /* Comparison-tool intro paragraphs on mobile: 12px Mobile-Friendly floor,
     darf umbrechen statt single-line zu erzwingen. */
  .comparison-intro {
    font-size: 12px !important;
    line-height: 1.4 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
