.ec-product-content {
  padding: 15px;
  position: relative;
}

.brands-wrapper {
  width: 50%;
  max-width: 350px;
  margin: 0 auto;
}

.brandso {
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 90px;
}

.brandso img {
  border-radius: 10px;
  object-fit: contain;
  opacity: 0;
}

.brandso.loaded img {
  opacity: 1;
}

.brandso::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
  z-index: 1;
}

.brandso.loaded::before {
  display: none;
}


.center-button-container {
  text-align: center;
  padding: 0;
  margin: 0;
}
.logo-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px 10px;
  transition: all 0.4s ease;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 10px;
  border: none;

  box-shadow: 0 0 10px 3px rgba(255, 140, 0, 0.4), 0 4px 6px rgba(0, 0, 0, 0.08);
}

.logo-box:hover {
  box-shadow: 0 0 18px 6px rgba(255, 140, 0, 0.8),
    0 8px 20px rgba(0, 0, 0, 0.25);

  transform: translateY(-5px) scale(1.03);
  cursor: pointer;
}

/********************************************** */
