img{
    max-width:100%;
}

.bannerStyles img{
    height:auto;
}

.brandsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.brandCard {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.brandImgWrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.brandImgWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.brandOverlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 28px 20px;
  gap: 12px;
  transition: background 0.4s ease;
}

.brandName {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.brandBtn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: none;
  border-radius: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.brandBtn:hover {
  background: #fff;
  color: #222;
  border-color: #fff;
}

.brandCard:hover .brandImgWrap img {
  transform: scale(1.07);
}

.brandCard:hover .brandOverlay {
  background: rgba(0, 0, 0, 0.25);
}

.brandCard:hover .brandName {
  transform: translateY(-5px);
}

.brandCard:hover .brandBtn {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .brandsGrid {
    grid-template-columns: 1fr;
  }
}
.utpGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 0;
}
.utpCard {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  flex: 1 1 400px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
.utpIconWrap {
  width: 66px;
  height: 66px;
  background: #efbf04;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.utpIconWrap img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.vol_pill {
    display: inline-flex;
    align-items: center;
    background: #efbf04;
    color: #1a1000;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}

.sku_row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sku_row .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #efbf04;
    flex-shrink: 0;
}