body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(
    135deg,
    var(--main-dark-color) 0%,
    var(--main-dark-color-secondary) 100%
  );
}

/* Kontener główny */
#produkty .main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Nagłówek sekcji */
#produkty .header {
  text-align: center;
  margin-bottom: 25px;
}

#produkty .header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(
    45deg,
    var(--main-light-color),
    var(--main-white)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#produkty .header p {
  font-size: 1.2rem;
  opacity: 0.8;
  color: var(--main-white);
}

/* Styl bazowy dla kart */
#produkty .flip-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  text-decoration: none;
  color: var(--main-white);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 320px;
  cursor: pointer;
}

#produkty .flip-card:hover {
  border-color: var(--main-light-color);
  box-shadow: 0 20px 40px rgba(223, 14, 154, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--main-white);
  text-decoration: none;
}

/* Wewnętrzny kontener tekstu */
#produkty .flip-card .text-center {
  padding: 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: var(--main-white);
  box-sizing: border-box;
}

/* Nagłówek karty */
#produkty .card-header {
  font-size: 1.8rem;
  margin: 0;
  color: var(--main-light-color);
  text-align: center;
  font-weight: bold;
  overflow-wrap: break-word;
}

/* Opis karty */
#produkty .card-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--main-white);
  text-align: center;
  overflow-wrap: break-word;
  margin: 0;
}

/* Responsywność */
@media (max-width: 768px) {
  #produkty .header h1 {
    font-size: 2.5rem;
  }

  #produkty .flip-card {
    width: 100%;
    min-height: 300px;
    align-items: flex-start;
    text-align: left;
  }

  #produkty .flip-card .text-center {
    text-align: left;
    align-items: flex-start;
  }

  #produkty .card-header {
    font-size: 1.5rem;
    text-align: left;
    width: 100%;
  }

  #produkty .card-description {
    font-size: 0.9rem;
    text-align: left;
  }
}

/* Naprawa siatki Bootstrapa */
#produkty .row {
  margin: 0;
}

#produkty .row > .col {
  display: flex;
  flex: 1 1 auto;
  max-width: 100%;
}

/* Sekcja z gradientem */
#produkty .gradient-form {
  background: var(--secondary-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
