.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 66.66%;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: white;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  padding: 12px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.opinie-section {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    font-family: Arial, sans-serif;
}

.opinie-section .opinie-title {
    text-align: center;
    color: #000;
    font-size: 2.2em;
    margin-bottom: 20px;
    font-weight: bold;
}

.opinie-section .opinie-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.opinie-section .opinia-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opinie-section .opinia-icon {
    font-size: 30px;
    color: #000;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
}

.opinie-section .opinia-text {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
}

.opinie-section .opinia-author {
    font-size: 0.9em;
    color: #000;
    font-weight: bold;
    margin-top: 10px;
}

.opinie-section .opinia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .opinie-section .opinie-container {
        flex-direction: column;
        align-items: center;
    }

    .opinie-section .opinia-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) {
    .opinie-section .opinie-container {
        flex-direction: row;
    }

    .opinie-section .opinia-card {
        width: 30%;
    }
}

.header-text {
  font-weight: bold;
  text-align: right;
  font-size: 24px;
  margin-right: 0;
  margin-left: auto;
  max-width: 800px;
}

.description-text {
  text-align: right;
  font-size: 16px;
  color: #333;
  margin-right: 0;
  margin-left: auto;
  max-width: 800px;
}
span.price_info__text.--type {
  color: #000 !important;
}
img.idosell__img {
  width: 75px;
  height: 40px;
  object-fit: contain;
}
.article__image_wrapper.--logo {
    display: none !important;
}