/*header css */ 

/* Base menu item */
.fixed-header .menu_element {
  position: relative !important;
  list-style: none !important;
}

/* Dropdown icon */
.fixed-header .menu_element.have-submenu > a::after {
  content: '▼' !important;
  font-size: 10px !important;
  margin-left: 6px !important;
  transition: transform 0.3s ease !important;
}

/* Rotate icon on hover */
.fixed-header .menu_element.have-submenu:hover > a::after {
  transform: rotate(180deg) !important;
}

/* Dropdown menu */
.fixed-header .menu_element > ul {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  background: white !important;
  min-width: 180px !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
  border-radius: 8px !important;
  padding: 10px 0 !important;
  z-index: 999 !important;
}

/* Show dropdown on hover */
.fixed-header .menu_element:hover > ul {
  display: block !important;
}

/* Dropdown items */
.fixed-header .menu_element > ul > li {
  padding: 8px 20px !important;
}

.fixed-header .menu_element > ul > li a {
  color: #333 !important;
  text-decoration: none !important;
  display: block !important;
  transition: background 0.3s ease !important;
}

/* Hover effect on dropdown */
.fixed-header .menu_element > ul > li:hover {
  background: #f1f1f1 !important;
}

/* Top-level menu links */
.fixed-header .menu_element_link {
  padding: 10px 15px !important;
  display: inline-block !important;
  color: #000 !important;
  text-decoration: none !important;
}

/*end header css */

.category-scroll {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 10px 0;
      scroll-snap-type: x mandatory;
    }

    .category-item {
      flex: 0 0 auto;
      width: 150px !important;
      text-align: center;
      scroll-snap-align: start;
    }

    .category-item img {
      border-radius: 50%;
      width: 150px !important;
      height: 150px;
      object-fit: cover !important;
    }

    .category-item h5 {
      font-size: 16px;
      margin-top: 10px;
    }

    /* Desktop: only show 5 items */
    @media (min-width: 768px) {
      .category-scroll {
        overflow-x: hidden;
        flex-wrap: wrap;
        justify-content: center;
      }

      .category-item {
        width: 150px;
      }

      .category-item:nth-child(n+6) {
        display: none;
      }
    }

    /* Mobile tweaks */
    @media (max-width: 768px) {
      .category-item img {
        width: 100px;
        height: 100px;
      }

      .category-item h5 {
        font-size: 14px;
      }
    }
&lt;style&gt;
  .footer {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    color: #111;
    font-size: 14px;
  }

  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .footer-column h3 {
    font-weight: 600;
    margin-bottom: 15px;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-column ul li a {
    text-decoration: none;
    color: #111;
  }

  .footer-column ul li a:hover {
    text-decoration: underline;
  }

  .contact-info p {
    margin: 6px 0;
  }

  .newsletter {
    margin-top: 40px;
    text-align: center;
  }

  .newsletter input[type="email"] {
    padding: 10px;
    width: 250px;
    max-width: 100%;
    border: 1px solid #999;
    border-radius: 5px;
    margin-right: 5px;
  }

  .newsletter button {
    padding: 10px 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .newsletter button:hover {
    background: #333;
  }

  .social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }

    .newsletter input[type="email"] {
      margin-bottom: 10px;
      margin-right: 0;
    }

    .newsletter {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  }
&lt;/style&gt;

<footer class="footer">
  <div class="footer-container">
    <!-- Quick Links -->
    <div class="footer-column">
      <h3>Quick links</h3>
      <ul>
        <li><a href="#">Customer Reviews</a></li>
        <li><a href="#">Our Blogs</a></li>
        <li><a href="#">Store Locator</a></li>
        <li><a href="#">About Us</a></li>
        <li><a href="#">Join Us</a></li>
        <li><a href="#">GIVA Gift Cards</a></li>
      </ul>
    </div>

    <!-- Info -->
    <div class="footer-column">
      <h3>Info</h3>
      <ul>
        <li><a href="#">Shipping & Returns</a></li>
        <li><a href="#">Privacy Policy</a></li>
        <li><a href="#">International Shipping</a></li>
        <li><a href="#">FAQs & Support</a></li>
        <li><a href="#">Terms of Service</a></li>
      </ul>
    </div>

    <!-- Contact -->
    <div class="footer-column contact-info">
      <h3>Contact us</h3>
      <p>BIS : HM/C - 6290031216</p>
      <p>For any suggestions, queries or complaints please contact us:</p>
      <p><strong>Indiejewel Fashions Private Limited</strong></p>
      <p>Third Floor, Magnum Vista, Raghuvanahalli, Bangalore 560062</p>
      <p>
.mwembed {
    min-height:0px !important;
}