/* =================================================================
   BUTTONS – Industriotech Child Theme
================================================================= */

/* -----------------------------------------------------------------
   1. BAZA – wspólne właściwości wszystkich przycisków
----------------------------------------------------------------- */
.e-btn--primary .elementor-button,
.e-btn--ghost .elementor-button,
.e-btn--dark .elementor-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  text-decoration: none;
  width: auto;
}

/* -----------------------------------------------------------------
   2. PRIMARY – złoty przycisk (główne CTA)
----------------------------------------------------------------- */
.e-btn--primary .elementor-button {
  background: #e8a020;
  background: var(--it-gold, #e8a020);
  color: #0d0d0d !important;
  border: 2px solid #e8a020;
  border: 2px solid var(--it-gold, #e8a020);
  padding: 0.8em 2em;
}

.e-btn--primary .elementor-button:hover {
  background: #c8881a;
  background: var(--it-gold-hover, #c8881a);
  border-color: #c8881a;
  border-color: var(--it-gold-hover, #c8881a);
  color: #0d0d0d !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
}

/* -----------------------------------------------------------------
   3. GHOST – przezroczysty z białą obwódką (drugi CTA)
----------------------------------------------------------------- */
.e-btn--ghost .elementor-button {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.8em 2em;
}

.e-btn--ghost .elementor-button:hover {
  border-color: var(--it-gold, #e8a020);
  color: var(--it-gold, #e8a020) !important;
  background: transparent;
}

/* -----------------------------------------------------------------
   4. DARK – ciemny przycisk (używany na złotym tle CTA Banner)
----------------------------------------------------------------- */
.e-btn--dark .elementor-button {
  background: #0d0d0d;
  color: #ffffff !important;
  border: 2px solid #0d0d0d;
  padding: 0.8em 2em;
}

.e-btn--dark .elementor-button:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* -----------------------------------------------------------------
   5. DARK OUTLINE – ciemny z obwódką (telefon na złotym tle)
----------------------------------------------------------------- */
.e-btn--dark.e-btn--outline .elementor-button,
.elementor-button.it-btn-dark-outline {
  background: transparent;
  color: #0d0d0d !important;
  border: 2px solid rgba(0, 0, 0, 0.35);
  padding: 0.8em 2em;
}

.e-btn--dark.e-btn--outline .elementor-button:hover,
.elementor-button.it-btn-dark-outline:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #0d0d0d !important;
  border-color: rgba(0, 0, 0, 0.5);
}

/* -----------------------------------------------------------------
   6. Pełna szerokość (np. formularz kontaktowy)
----------------------------------------------------------------- */
/* .e-btn--full,
.elementor-button.it-btn-full {
  width: 100%;
  justify-content: center;
} */

/* -----------------------------------------------------------------
   7. Grupa przycisków (używana w hero – dwa obok siebie)
----------------------------------------------------------------- */
/* .e-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.e-btn-group--center {
  justify-content: center;
} */

/* @media (max-width: 480px) {
  .e-btn-group {
    flex-direction: column;
  }
  .e-btn-group .e-btn,
  .e-btn-group .elementor-button {
    width: 100%;
    justify-content: center;
  }
} */
