  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

  body{
  font-family: 'Inter', sans-serif;
  background:#f8f5f1;
  color:#111;
  }

  h1,
  h2,
  h3,
  h4,
  .head-playfair {
  font-family: 'Playfair Display', serif;
  }
  .btn-montserrate {
  font-family: 'Montserrat', sans-serif;
  }
  .text-inter {
  font-family: 'Inter', sans-serif;
  }
  .text-head-3xl{
    font-size: 3.5rem;
    line-height: 1;
  }
    .container-custom{
      max-width:1400px;
      margin:auto;
      padding-left:20px;
      padding-right:20px;
    }

  .material-symbols-outlined{
  font-size:24px;
  vertical-align:middle;

  font-variation-settings:
  'FILL' 0,
  'wght' 300,
  'GRAD' 0,
  'opsz' 24;
  }
  .gradient-dark{
  background: linear-gradient(135deg,#111,#2a2a2a,#111);
  }

  .hover-scale{
  transition:0.4s ease;
  }

  .hover-scale:hover{
  transform:translateY(-4px);
  }

  .search-overlay{
  transition:all .3s ease;
  }

  .mobile-menu{
  transition:all .4s ease;
  }

  .hide-scrollbar::-webkit-scrollbar{
  display:none;
  }

  .brand-slider{
  animation: scrollBrands 28s linear infinite;
  }

  .brand-slider:hover{
  animation-play-state: paused;
  }

  .user-cart .badge-circle {
    position: absolute;
    top: 48px;
    right: 15px;
    width: 13px;
    height: 16px;
    border-radius: 50%;
    color: #fff;
    background: #ff5b5b;
    font-weight: 600;
    font-size: 11px;
    /* line-height: 1.6rem; */
    font-family: "Open Sans", sans-serif;
    text-align: center;
  }
  

  @keyframes scrollBrands{

  0%{
  transform: translateX(0);
  }

  100%{
  transform: translateX(-50%);
  }

  }

  /* MOBILE */
  @media(max-width:768px){

  .brand-slider{
  gap:50px;
  }

  .brand-slider img{
  height:32px;
  }

  }