/* =============================================================
   nv_brandhub — Estilos página de marcas
   ============================================================= */

:root {
  --nv-accent: #4a4782;
  --nv-accent-dark: #3a3868;
  --nv-gray-100: #f6f6f6;
  --nv-gray-200: #ededed;
  --nv-gray-300: #d6d6d6;
  --nv-gray-500: #666;
  --nv-gray-700: #444;
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.nv-hub-hero {
  background: #1a1a2a center / cover no-repeat;
  color: #fff;
  padding: 40px 16px 36px;
  position: relative;
  overflow: hidden;
}

.hub-img-banner {
  width: 100%;
}

.hub-img-banner img {
  width: 100%;
}

.hub-img-banner-mob {
  width: 100%;
}

.hub-img-banner-mob img {
  width: 100%;
}

.nv-hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(26, 26, 42, 0.7) 60%,
      rgba(74, 71, 130, 0.55) 100%);
  pointer-events: none;
}

.nv-hub-hero__wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nv-hub-hero__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--nv-accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.nv-hub-hero h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 12px;
}

.nv-hub-hero .nv-accent {
  color: var(--nv-accent);
}

.nv-hub-hero p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0;
}

@media (min-width: 768px) {
  .nv-hub-hero {
    padding: 72px 32px 64px;
  }

  .nv-hub-hero h1 {
    font-size: 52px;
  }

  .nv-hub-hero p {
    font-size: 17px;
  }
}

/* ---------------------------------------------------------------
   SECCIÓN GENÉRICA
--------------------------------------------------------------- */
.nv-section {
  padding: 32px 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.nv-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
  flex-wrap: wrap;
}

.nv-section-title h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 14px;
  margin: 0;
}

.nv-section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: var(--nv-accent);
  border-radius: 2px;
}

.nv-section-title__sub {
  font-size: 13px;
  color: var(--nv-gray-500);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .nv-section {
    padding: 48px 24px;
  }

  .nv-section-title h2 {
    font-size: 26px;
  }
}

/* ---------------------------------------------------------------
   MARCAS DESTACADAS — grid de 4 cards
--------------------------------------------------------------- */
.nv-featured-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .nv-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nv-featured-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.nv-featured-card {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-decoration: none;
  background: #222;
  transition: transform 0.2s ease;
}

.nv-featured-card:hover {
  transform: translateY(-4px);
  color: #fff;
  text-decoration: none;
}

.nv-featured-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.nv-featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.8) 100%);
}

.nv-featured-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 3px 8px;
  background: var(--nv-accent);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nv-featured-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nv-featured-card__name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  display: none;
}

.nv-featured-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.85;
}

.nv-featured-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.nv-featured-card:hover .nv-featured-card__cta {
  background: var(--nv-accent);
  border-color: var(--nv-accent);
}

@media (min-width: 768px) {
  .nv-featured-card__name {
    font-size: 30px;
  }
}

/* ---------------------------------------------------------------
   ENCABEZADO SECCIÓN "TODAS LAS MARCAS"
--------------------------------------------------------------- */
.nv-brands-section-header {
  padding: 0 14px;
  max-width: 1200px;
  margin: 0 auto 4px;
}

.nv-brands-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 0 0 18px;
}

.nv-brands-section-title h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 14px;
  margin: 0;
}

.nv-brands-section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: var(--nv-accent);
  border-radius: 2px;
}

.nv-brands-count {
  font-size: 13px;
  color: var(--nv-gray-500);
}

@media (min-width: 768px) {
  .nv-brands-section-header {
    padding: 0 24px;
  }

  .nv-brands-section-title h2 {
    font-size: 26px;
  }
}

/* ---------------------------------------------------------------
   GRID DE TODAS LAS MARCAS
--------------------------------------------------------------- */
.nv-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 14px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

@media (min-width: 640px) {
  .nv-brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .nv-brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 24px;
  }
}

.nv-brand-tile {
  background: #fff;
  border: 1px solid var(--nv-gray-200);
  border-radius: 10px;
  padding: 22px 14px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  min-height: 140px;
  text-decoration: none;
  color: #111;
  transition:
    border-color 0.15s,
    transform 0.15s,
    box-shadow 0.2s;
}

.nv-brand-tile:hover {
  border-color: var(--nv-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  color: #111;
  text-decoration: none;
}

.nv-brand-tile__logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 10px;
  min-height: 80px;
  height: 80px;
  overflow: hidden;
  padding: 8px 12px;
}

.nv-brand-tile__logo img {
  max-width: 75%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.2s,
    filter 0.2s;
  filter: grayscale(0.15);
}

.nv-brand-tile:hover .nv-brand-tile__logo img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.nv-brand-tile__name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.nv-brand-tile__count {
  font-size: 11px;
  color: var(--nv-gray-500);
}

@media (min-width: 768px) {
  .nv-brand-tile {
    padding: 28px 16px 20px;
    min-height: 170px;
  }

  .nv-brand-tile__logo {
    min-height: 96px;
    height: 96px;
    padding: 12px 16px;
    font-size: 22px;
  }

  .nv-brand-tile__logo img {
    max-width: 70%;
  }

  .nv-brand-tile__name {
    font-size: 14px;
  }
}

/* =========================================================
     TRUST STATS
     ========================================================= */
.stats {
  background: #111;
  color: #fff;
  padding: 36px 16px;
}

.stats__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--nv-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* ---------------------------------------------------------------
   BLOQUE SEO
--------------------------------------------------------------- */
.nv-seo-block {
  background: var(--nv-gray-100);
  padding: 32px 16px;
}

.nv-seo-block__wrap {
  max-width: 900px;
  margin: 0 auto;
}

.nv-seo-block__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}

.nv-seo-block__content {
  font-size: 14px;
  line-height: 1.75;
  color: var(--nv-gray-700);
  max-height: 110px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  position: relative;
}

.nv-seo-block__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(transparent, var(--nv-gray-100));
  transition: opacity 0.3s;
}

.nv-seo-block__content.is-expanded {
  max-height: 1200px;
}

.nv-seo-block__content.is-expanded::after {
  opacity: 0;
}

.nv-seo-block__content p {
  margin-bottom: 12px;
}

.nv-seo-block__content p:last-child {
  margin-bottom: 0;
}

.nv-seo-block__toggle {
  margin-top: 12px;
  color: var(--nv-accent);
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.nv-seo-block__toggle:hover {
  color: var(--nv-accent-dark);
}

@media (min-width: 768px) {
  .nv-seo-block {
    padding: 56px 24px;
  }

  .nv-seo-block__title {
    font-size: 22px;
  }

  /* En desktop el texto siempre visible, sin toggle */
  .nv-seo-block__content {
    max-height: none;
  }

  .nv-seo-block__content::after {
    display: none;
  }

  .nv-seo-block__toggle {
    display: none;
  }
}

/* Ocultar el H1 original de PrestaShop en la página de marcas */
#main>.nv-hub-hero~.h1,
#main>h1.h1:first-child {
  display: none;
}

/* ---------------------------------------------------------------
   PRODUCT GRID — página individual de marca
--------------------------------------------------------------- */
.brands-page button.btn.btn-primary.add-to-cart {
  vertical-align: middle !important;
  background: var(--nv-accent) !important;
  background-color: var(--nv-accent) !important;
  width: 100% !important;
  border-radius: 10px !important;
  font-size: 12px !important;
  padding: 8px 14px !important;
  height: auto !important;
  margin-top: 10px;
  text-wrap-mode: wrap;
}

.product-price-and-shipping {
  position: relative !important;
  opacity: 1 !important;
  transform: none !important;
}

.product-actions-main {
  position: relative !important;
  opacity: 1 !important;
  transition: none !important;
  transform: none !important;
}

.brands-page .wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.brands-page a.quick-view {
  display: none !important;
}

.brands-page .compare {
  display: none;
}

.brands-page .st-wishlist-button {
  width: 30px;
  height: 30px;
}

.brands-page form.add-to-cart-or-refresh {
  width: 100%;
}

.brands-page .products .thumbnail-container img {
  height: 100%;
}

.brands-page .product-flags {
  font-weight: 600;
  background: #4a4782;
  color: #fff;
  top: 8px;
  left: 8px;
  bottom: unset;
  font-size: 12px;
  padding: 0 7px 0 7px;
  opacity: 1;
  filter: none !important;
  position: absolute;
  right: unset;
  text-align: center;
  text-transform: uppercase;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-transition: none !important;
  transition: none !important;
  z-index: 9;
  border-radius: 3px;
}

.brands-page .product-flags::before {
  border-right: 0px solid #4a4782;
  border-top: 0px solid transparent;
  content: "";
  position: absolute;
  height: auto;
  left: 0;
  right: 0;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  opacity: 1;
  width: auto;
  z-index: -1;
}

.products .product-miniature {
  margin: 0;
  position: relative;
  border: 1px solid #ededed;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition:
    box-shadow 0.2s ease,
    transform 0.15s ease;
}

.products .product-miniature:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}

.products .thumbnail-container {
  background: var(--nv-gray-100);
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.products .thumbnail-container img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.25s ease;
  display: block;
}

.products .product-miniature:hover .thumbnail-container img {
  transform: scale(1.04);
}

.products .product-description {
  padding: 12px 14px 14px;
}

.products .product-title a {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-wrap-mode: wrap;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
}

.products .price {
  font-size: 16px;
  font-weight: 800;
  color: var(--nv-accent);
}

.products .regular-price {
  font-size: 12px;
  color: var(--nv-gray-500);
  text-decoration: line-through;
  margin-left: 4px;
}

.products .discount-percentage {
  font-size: 11px;
  font-weight: 700;
  color: #d93025;
  background: #fce8e6;
  padding: 1px 5px;
  border-radius: 3px;
}

.products .product-detail {
  display: none;
}

.products .btn.add-to-cart {
  background: var(--nv-accent);
  border-color: var(--nv-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  transition:
    background 0.15s,
    border-color 0.15s;
}

.products .btn.add-to-cart:hover {
  background: var(--nv-accent-dark);
  border-color: var(--nv-accent-dark);
  color: #fff;
}

.products .highlighted-informations {
  display: none;
}

.products .product-actions-main {
  padding: 0 14px 14px;
}

.nv-carousel-item .product-description h3.h3.product-title {
  padding: 0px 14px 0px;
}

.nv-carousel-item .product-description .product-price-and-shipping {
  padding: 0px 14px 0px;
}

.nv-carousel-item .product-description .comments_note {
  padding: 0px 14px 0px;
}

@media (max-width: 767px) {
  .products .product_item .thumbnail-container img {
    height: 220px;
    padding: 0px;
    transform: scale(1.05);
  }
}

/* ---------------------------------------------------------------
   BRAND BANNER — imagen superior página individual de marca
   (renderiza fuera del container, en displayWrapperTop)
--------------------------------------------------------------- */
.nv-brand-banner {
  overflow: hidden;
  position: relative;
}

.nv-brand-banner picture {
  display: block;
  line-height: 0;
  font-size: 0;
}

.nv-brand-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.nv-brand-banner__ctas {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  z-index: 2;
}

.nv-brand-banner__btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.1s;
}

.nv-brand-banner__btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.nv-brand-banner__btn--primary {
  background: var(--nv-accent);
  color: #fff;
  border: 2px solid var(--nv-accent);
}

.nv-brand-banner__btn--primary:hover {
  background: var(--nv-accent-dark);
  border-color: var(--nv-accent-dark);
  color: #fff;
}

.nv-brand-banner__btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.nv-brand-banner__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 767px) {
  .nv-brand-banner__ctas {
    bottom: 16px;
    flex-direction: column;
    gap: 8px;
    padding: 0px 20px;
    justify-content: flex-start;
  }

  .nv-brand-banner__btn {
    font-size: 13px;
    padding: 11px 24px;
  }

  .nv-brand-carousel {
    margin: 0px 20px !important;
  }

  .nv-carousel-arrow {
    display: initial !important;
  }

  .nv-carousel-arrow svg {
    width: 22px !important;
    height: 37px !important;
  }
}

.nv-brand-banner--bottom {
  margin-top: 0;
  margin-bottom: 24px;
}

/* ---------------------------------------------------------------
   BRAND CAROUSEL — productos destacados de la marca
--------------------------------------------------------------- */
.nv-brand-carousel-wrap {
  margin-bottom: 8px;
  background: #fff;
  border-bottom: 1px solid var(--nv-gray-200);
}

.nv-brand-carousel-header {
  padding: 24px 14px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.nv-brand-carousel-header h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 14px;
  margin: 0;
}

.nv-brand-carousel-header h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 18px;
  background: var(--nv-accent);
  border-radius: 2px;
}

/* Contenedor posicionado para las flechas */
.nv-brand-carousel-outer {
  position: relative;
  max-width: 1400px;
  margin: auto;
}

.nv-brand-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 16px 14px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  max-width: 100%;
  margin: 0 auto;
}

.nv-brand-carousel::-webkit-scrollbar {
  display: none;
}

/* Flechas de navegación */
.nv-carousel-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--nv-gray-300);
  background: #fff;
  color: var(--nv-gray-700);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
  padding: 0;
}

.nv-carousel-arrow:hover {
  background: var(--nv-accent);
  border-color: var(--nv-accent);
  color: #fff;
}

.nv-carousel-arrow[hidden] {
  display: none !important;
}

.nv-carousel-arrow--prev {
  left: 4px;
}

.nv-carousel-arrow--next {
  right: 4px;
}

@media (min-width: 768px) {
  .nv-carousel-arrow {
    display: flex;
  }

  /* Espacio lateral para que las flechas no tapen las tarjetas */
  .nv-brand-carousel {
    padding-left: 52px;
    padding-right: 52px;
  }
}

/* Cada tarjeta del carrusel — el ancho controla cuántas se ven;
   el aspecto visual lo hereda de .products .product-miniature */
.nv-carousel-item {
  flex: 0 0 68%;
  scroll-snap-align: start;
  min-width: 0;
}

@media (min-width: 480px) {
  .nv-carousel-item {
    flex: 0 0 46%;
  }
}

@media (min-width: 768px) {
  .nv-carousel-item {
    flex: 0 0 30%;
  }

  .nv-brand-carousel-header {
    padding: 32px 24px 0;
  }

  .nv-brand-carousel-header h2 {
    font-size: 26px;
  }

  .nv-brand-carousel {
    padding: 16px 24px 24px;
  }
}

@media (min-width: 1024px) {
  .nv-carousel-item {
    flex: 0 0 22%;
  }
}

/* ---------------------------------------------------------------
   MOBILE FILTER TOGGLE — página de marca
   El tema usa hidden-sm-down para el toggle pero el template
   del módulo ps_facetedsearch arranca con hidden-md-down.
   Aquí sobreescribimos la visibilidad para que el JS del tema
   funcione igual que en páginas de categoría.
--------------------------------------------------------------- */
@media (max-width: 991px) {
  body#manufacturer.brand-pages #wrapper .container #manufacturer #left-column #search_filters .facet .title.collapsed i.material-icons.add {
    display: none !important;
  }

  #manufacturer #left-column #search_filters .facet .title.collapsed i.material-icons.remove {
    display: block !important;
  }

  #manufacturer #left-column #search_filters .facet .title i.material-icons.add {
    display: block !important;
  }

  #manufacturer #left-column #search_filters .facet .title i.material-icons.remove {
    display: none !important;
  }

  #manufacturer #left-column #search_filters .facet ul.collapse {
    display: none !important;
  }

  #manufacturer #left-column #search_filters .facet ul.collapse.in {
    display: block !important;
  }
}

/* ---------------------------------------------------------------
   LAYOUT PÁGINA DE MARCA
--------------------------------------------------------------- */
body#manufacturer #breadcrumb_wrapper {
  text-align: left;
  margin: 0;
  padding: 10px 14px;
  float: left;
}

body#manufacturer .breadcrumb li:last-child {
  font-weight: bold;
}

body#manufacturer #right-column {
  display: none;
}

body#manufacturer.brand-pages #wrapper .container {
  max-width: 100%;
  width: 100%;
  padding: 0px !important;
}

body#manufacturer.brand-pages #left-column {
  display: none !important;
}

body#manufacturer.brand-pages div#content-wrapper {
  width: 100%;
  padding: 0px !important;
  margin: 0px;
}

@media (max-width: 768px) {
  body#manufacturer.brand-pages #breadcrumb_wrapper {
    display: block !important;
  }

  body#manufacturer.brand-pages .breadcrumb {
    display: block !important;
  }

  body#manufacturer.brand-pages #wrapper .container {
    margin: 0px !important;
    padding: 0px !important;
  }

  body#manufacturer.brands-page .products .product-miniature .product-actions-main form {
    display: block !important;
  }

  .cnt-img-banner {
    height: 100%;
  }
}