.animated-img {
  display: block;
  max-width: 600px; /* keeps it from stretching too huge */
  margin: 0 auto;   /* centers on smaller screens */
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.featured-brands img {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	border-width: 3px !important;
}

.featured-brands img:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  border-color: #ee3124; /* your red brand color */
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem; /* rounded corners */
  width: 100%;
  padding-top: 100%; /* responsive square */
  transition: all 0.3s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3); /* dark overlay */
  transition: background 0.3s ease;
  z-index: 1;
}

.category-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.1); /* zoom in on hover */
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.category-card h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.video-banner {
  position: relative;
  overflow: hidden;
  min-height: 100vh; /* full screen */
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  z-index: 2;
}

.content-wrapper {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* match section height */
  width: 100%;
}

.content-inner {
  padding: 1rem;
}

@media (max-width: 767px) {
  .video-banner,
  .content-wrapper {
    min-height: 60vh;
  }

  .video-banner .display-4 {
    font-size: 1.8rem;
  }

  .video-banner .btn-lg {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
.all-products-list a{
	color:#000000 !important;
}