/* Tutaj jest miejsce na Twoje style */
img {
  border-radius: 30px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.wrapper {
  max-width: 1320px;
  margin: 10px;
}

.a-section {
  display: flex;
}

.a-section.w-more,
.a-section.w-less,
.a-section.half {
  flex-direction: column;
}

.a-section.w-more img,
.a-section.w-less img,
.a-section.half img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .wrapper {
    margin: 0 auto;
  }
  .a-section.w-more,
  .a-section.w-less,
  .a-section.half {
    flex-direction: row;
    justify-content: space-between;
  }
  .a-section.w-more img,
  .a-section.w-less img,
  .a-section.half img {
    width: unset;
  }

  .a-section.w-more img:first-child {
    width: calc(66.666% - 10px);
    margin-bottom: 20px;
  }

  .a-section.w-more img:last-child {
    width: calc(33.333% - 10px);
    margin-bottom: 20px;
  }

  .a-section.w-less img:first-child {
    width: calc(33.333% - 10px);
    margin-bottom: 20px;
  }

  .a-section.w-less img:last-child {
    width: calc(66.666% - 10px);
    margin-bottom: 20px;
  }

  .a-section.w-more,
  .a-section.w-less,
  .a-section.half {
    flex-wrap: nowrap;
  }

  .a-section.full img {
    min-width: calc(100% + 10px);
    margin-bottom: 20px;
  }

  .a-section.half img {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}

.b-section {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  margin-top: 100px;
  gap: 100px;
}

.b-section a {
  max-width: 60%;
  margin: 0 auto;
}

@media screen and (min-width: 576px) {
  .b-section {
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-end;
  }
  .b-section a {
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .b-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

footer {
  margin-top: 100px !important;
}

footer p {
  font-size: 12px !important;
}

.mobile {
  display: block;
}

.mobile img {
  max-width: 100%;
  width: 100%;
}

.desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .mobile {
    display: none;
  }

  .desktop {
    display: block;
  }
}

.products__wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (min-width: 576px) {
  .products__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .products__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 100%;
  margin: 0 auto;
  padding: 24px 24px 24px 24px;
  border-radius: 16px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px, rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 20px 25px -5px, rgba(0, 0, 0, 0.01) 0px 10px 10px -5px;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  font-size: 0.9rem;
  background: #fff;
  max-width: 360px;
}

@media screen and (min-width: 660px) {
  .products__item {
    max-width: 320px;
  }
}

@media (min-width: 992px) {
  .products__item {
    max-width: 360px;
  }
}

@media (min-width: 576px) {
  .products__item:hover {
    -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 20px 25px -5px, rgba(0, 0, 0, 0.02) 0px 10px 10px -5px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

.products__item-badge {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4d4d4d;
  border: 1px solid #cccccc;
  border-radius: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 12px;
  font-size: 14px;
  vertical-align: baseline;
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: absolute;
}

.products__item-image {
  margin-top: 0;
}

.products__item-image img {
  max-height: 260px;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  margin: 0 auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.products__item h4 {
  margin-bottom: 8px !important;
  color: black !important;
  text-align: center;
  font-size: 1.8em !important;
  font-weight: 600 !important;
}

.products__item h5 {
  font-weight: 300;
  text-align: center;
  font-size: 1.5em;
  opacity: 0.5;
  min-height: 52px;
  margin-bottom: 24px;
}

.products__item-rating {
  margin-bottom: 10px;
}

.products__item ul {
  list-style-type: none;
  list-style-position: outside;
  padding-left: 0;
  margin-bottom: 20px;
  text-align: center;
}

.products__item ul li {
  margin-bottom: 0px;
  font-weight: 400;
  color: #4d4d4d;
  font-size: 1rem;
  margin-bottom: 8px;
}

.products__item ul li strong {
  color: #000;
  font-weight: 400;
}

.products__item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 24px;
  width: 100%;
  margin-top: auto;
}

.products__item-footer-button {
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.products__item-footer-button svg path {
  pointer-events: none;
}

.products__item-footer-button svg rect {
  fill: #0082fa;
  -webkit-transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  transition: 0.3s cubic-bezier(0.31, 1.11, 0.99, 1.01);
  height: 40px;
  width: 40px;
}

.products__item-footer-button svg rect:hover {
  fill: #0067c7;
}

.products__item-footer-button svg rect:active {
  fill: #004d94;
}

.products__item-footer-cart {
  height: 24px;
  width: 24px;
}

.products__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.products__item-price .old-price {
  text-decoration: line-through;
  color: #999999;
  font-weight: 300;
  margin-left: 10px;
}

.products__item-price .new-price {
  font-size: 1.5rem;
  font-weight: 600;
}
