.listing_view {
    display: none;
}
#rev_slider_3_1_wrapper {
    left: unset !important;
}
.custom-checkbox span {
  display: none !important; /* ukryj pseudo-checkbox, jeśli niepotrzebny */
}
.custom-checkbox input[type="checkbox"] {
  position: relative !important;
  opacity: 1 !important;
  width: 18px;
  height: 18px;
  margin-right: 6px !important;
}


section.product-features div.data-sheet div.product-manufacturer {
    display: none !important;
}

/* Ograniczenie wysokości głównego zdjęcia produktu */
.product-cover img,
.js-qv-product-cover img,
#content .images-container .product-cover img {
    max-height: 500px !important;
    width: auto !important;
    object-fit: contain;
    margin: 0 auto;
}

/* Zmniejszenie odstępu między zdjęciem a opisem */
.product-images-container,
.images-container {
    margin-bottom: 20px !important;
}

.col-md-6.product-images {
    display: flex;
    align-items: flex-start;
}

/* Opcjonalnie: dodatkowe przycinanie białej przestrzeni */
.product-cover {
    max-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tabs-container {
    margin-top: unset !important;
    padding: 10px !important;
}
}


/* MARKI */
/* ========================================
   LISTA MAREK - NOWOCZESNY LAYOUT
   ======================================== */

/* Container listy */
.brands-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 40px 0;
}

/* Pojedyncza karta marki */
.brand-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.brand-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
}

/* Logo marki */
.brand-img {
  text-align: center;
  margin-bottom: 20px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-width: 100%;
  max-height: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo {
  transform: scale(1.05);
}

/* Fallback jeśli brak logo */
.brand-logo-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

/* Informacje o marce */
.brand-infos {
  flex: 1;
  margin-bottom: 20px;
}

.brand-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.brand-title a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.brand-title a:hover {
  color: #ec4249;
}

.brand-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-top: 10px;
}

/* Footer karty */
.brand-footer {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: auto;
}

.brand-products-count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.brand-products-count svg {
  color: #ec4249;
}

/* Przycisk CTA */
.brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  background: #ec4249;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
}

.brand-cta:hover {
  background: #d63940;
  transform: translateX(3px);
  color: white;
}

.brand-cta svg {
  transition: transform 0.3s;
}

.brand-cta:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .brands-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }
  
  .brand-inner {
    padding: 20px;
  }
  
  .brand-img {
    min-height: 80px;
  }
  
  .brand-logo {
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .brands-list {
    grid-template-columns: 1fr;
  }
}