.elementor-kit-6{--e-global-color-primary:#000000;--e-global-color-secondary:#2C292F;--e-global-color-text:#252424;--e-global-color-accent:#54463A;--e-global-typography-primary-font-family:"Helvetica";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Helvetica";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Helvetica";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Helvetica";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =====================================================================
   GOLDRECHNER – DESIGN-ANPASSUNG an dein neues Branding
   ---------------------------------------------------------------------
   WOHIN DAMIT?
   Kopiere diesen kompletten Block nach:
   - Elementor: Site Settings → Custom CSS
     ODER
   - WordPress: Design → Customizer → Zusätzliches CSS

   NICHT in die Plugin-Datei css/wp_golder_style.css schreiben –
   das würde beim nächsten Plugin-Update überschrieben.

   ANPASSEN musst du nur die Farben/Werte im :root-Block ganz oben.
   Der Rest zieht automatisch nach.
   ===================================================================== */

:root {
  /* --- DEINE MARKENFARBEN: Schwarz / Weiß / Taupe #54463a --- */
  --gr-gold:        #54463a;   /* Taupe = Akzent (Überschriften-Linie, Fokus) */
  --gr-dark:        #000000;   /* Schwarz = Summenfeld */
  --gr-text:        #1a1a1a;   /* fast-schwarzer Fließtext (angenehmer als reines #000) */
  --gr-muted:       #8f8578;   /* helles Taupe-Grau für Nebeninfos (€/g) */
  --gr-input-bg:    #f5f3f0;   /* sehr helles Warmgrau, harmoniert mit Taupe */
  --gr-card-bg:     #ffffff;   /* Weiß für die Legierungs-Zeilen */
  --gr-border:      #ddd6cc;   /* dezenter Taupe-Ton für Rahmen */

  /* --- Typografie & Form --- */
  --gr-font:        inherit;   /* "inherit" = übernimmt deine Theme-Schrift */
  --gr-radius:      10px;      /* Ecken-Rundung */
  --gr-title-size:  18px;
}

/* ---- Gesamtcontainer ---- */
.metal_calculator {
  font-family: var(--gr-font);
  color: var(--gr-text);
  gap: 8px;
}

/* ---- Spalten-Überschriften (GOLD / SILBER / PLATIN) ---- */
.metal_title {
  font-size: var(--gr-title-size);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gr-text);
  border-bottom: 2px solid var(--gr-gold);
  padding-bottom: 6px;
  margin-bottom: 12px;
  height: auto;
}

/* ---- Einzelne Legierungs-Zeile ---- */
.metal_input_container {
  margin: 6px 0;
  border-radius: var(--gr-radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

/* ---- linke Box: Legierung + €/g-Preis ---- */
.metal_values {
  background-color: var(--gr-card-bg);
  color: var(--gr-text);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- alle Rahmen (Gold/Silber/Platin/Palladium) einheitlich ---- */
.border-gold,
.border-silver,
.border-platin,
.border-palladium {
  border: 1px solid var(--gr-border);
  border-right: none;
}

/* Gold-Zeilen mit Taupe-Akzent links hervorheben (passt zur Palette).
   Wenn alle Metalle gleich aussehen sollen, diesen Block löschen. */
.border-gold {
  border-left: 3px solid var(--gr-gold);
}

/* ---- der kleine graue €/g-Preis ---- */
.metal_gram_price {
  font-size: 12px;
  color: var(--gr-muted);
  float: right;
  font-weight: 500;
}

/* ---- rechte Box: Eingabefeld ---- */
.metal_inputs {
  background-color: var(--gr-input-bg);
  border: 1px solid var(--gr-border);
  border-left: none;
}
.metal_inputs_input {
  width: 100%;
  height: 100%;
  min-height: 48px;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 10px !important;
  background-color: var(--gr-input-bg);
  color: var(--gr-text);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.metal_inputs_input::placeholder {
  color: var(--gr-muted);
  font-weight: 400;
}
/* Fokus-Zustand – hebt das aktive Feld hervor */
.metal_inputs_input:focus {
  outline: 2px solid var(--gr-gold);
  outline-offset: -2px;
  background-color: #fff;
}

/* ---- Summen-Feld unten ---- */
.totals {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  background-color: var(--gr-dark);
  border: none;
  border-radius: var(--gr-radius);
  padding: 14px 18px;
  text-align: center;
}

/* ---- "Aktualisierung in X Minuten"-Zeile ---- */
#refresh_string {
  color: var(--gr-muted) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}

/* ---- Mobile-Feinschliff ---- */
@media only screen and (max-width: 768px) {
  .metal_values,
  .metal_inputs {
    width: 50%;
  }
  .metal_title {
    font-size: 16px;
  }
}/* End custom CSS */