@charset "UTF-8";
@font-face {
  font-family: "ponur";
  src: url("../../fonts/PPObjectSans-Heavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ponur2";
  src: url("../../fonts/Aceh-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.price-section {
  background-color: white;
  border-radius: 0.52vw;
  box-shadow: 0 0.13vw 0.65vw rgba(0, 0, 0, 0.1);
  margin: 2vw auto;
  padding: 1.5vw;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  width: 80vw;
  max-width: 41.67vw;
  height: auto;
  position: relative;
  /* Animacja wejścia */
  opacity: 0;
  transform: translateY(2vw) scale(0.95);
  animation: fadeInPrice 1s forwards 0.5s;
}
.price-section:hover {
  transform: translateY(-0.65vw);
  box-shadow: 0 0.33vw 0.98vw rgba(0, 0, 0, 0.2);
}
.price-section .price-header {
  font-size: 1.5vw;
  font-family: ponur2;
  margin-bottom: 0.52vw;
  color: black;
  position: relative;
  display: inline-block;
  padding-bottom: 0.52vw;
}
.price-section .price-header::after {
  content: "";
  display: block;
  width: 2.6vw;
  height: 0.21vw;
  background-color: #42a5f5;
  position: absolute;
  bottom: -0.52vw;
  left: 0;
  transition: width 0.3s ease-in-out;
}
.price-section:hover .price-header::after {
  width: 5.2vw;
}
.price-section ul {
  list-style: none;
  padding: 0;
}
.price-section ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.26vw 0;
  border-bottom: 0.05vw solid #eee;
  font-size: 1vw;
  font-family: ponur2;
}
.price-section ul li:last-child {
  border-bottom: none;
}
.price-section ul li span {
  color: black;
  font-weight: bold;
}

/* Kluczowe klatki animacji */
@keyframes fadeInPrice {
  from {
    opacity: 0;
    transform: translateY(2vw) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1024px) {
  .price-section {
    width: 90vw;
    max-width: 60vw;
    padding: 2vw;
  }
  .price-section .price-header {
    font-size: 2.5vw;
  }
  .price-section ul li {
    font-size: 1.6vw;
  }
  .price-section:hover .price-header::after {
    width: 6vw;
  }
}
@media (max-width: 768px) {
  .price-section {
    width: 92vw;
    max-width: 80vw;
    padding: 3vw;
  }
  .price-section .price-header {
    font-size: 3.5vw;
  }
  .price-section ul li {
    font-size: 2.5vw;
  }
  .price-section:hover .price-header::after {
    width: 7vw;
  }
}
@media (max-width: 480px) {
  .price-section {
    width: 95vw;
    max-width: 95vw;
    padding: 4vw;
  }
  .price-section .price-header {
    font-size: 5vw;
  }
  .price-section ul li {
    flex-direction: column;
    align-items: flex-start;
    font-size: 3.5vw;
  }
  .price-section ul li span {
    margin-top: 0.5vw;
    font-size: 4vw;
  }
  .price-section:hover .price-header::after {
    width: 9vw;
  }
}
@media (prefers-color-scheme: dark) {
  .price-section {
    background-color: #1e1e1e;
    box-shadow: 0 0.13vw 0.65vw rgba(255, 255, 255, 0.05);
  }
  .price-section .price-header,
  .price-section ul li,
  .price-section ul li span {
    color: #fff;
  }
  .price-section ul li {
    border-bottom: 0.05vw solid #444;
  }
  .price-section .price-header::after {
    background-color: #90caf9;
  }
}

/*# sourceMappingURL=price_list.css.map */
