#home-feed{
  position:relative;

  margin-top:-20px;


  overflow:hidden;

    background: linear-gradient(180deg, #fff0f4 15%, #ffb8f0 38%, #ffb8f0 42%, #fff0f4 62%, #f9c550 100%);
}

/* GLOW SUPERIOR */
#home-feed::before{
  content:"";

  position:absolute;
  inset:0;

  pointer-events:none;

  z-index:1;


  opacity:.9;
}



/* CONTENIDO SOBRE EL GLOW */

#home-feed > *{
  position:relative;

}

/* CONTENIDO SOBRE LAS CAPAS */


.home-section{
  margin-bottom:50px;
}

.home-header{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin:0 20px 18px;
}

.home-section-title{
  font-family:'Antonio';
  font-size:28px;

  color:#5f1f42;
}

.home-arrow{
  width:42px;
  height:42px;

  border:none;
  border-radius:50%;

  background:
  radial-gradient(
    circle at top,
    #f6bfdc 0%,
    #d98ab6 25%,
    #b05a8f 50%,
    #6b2d55 75%,
    #14070f 100%
  );

  box-shadow:
    0 4px 18px rgba(0,0,0,.08);

  cursor:pointer;

  font-size:20px;

  transition:.25s ease;
}

.home-arrow:hover{
  transform:scale(1.08);
}

.home-row{
  display:flex;

  gap:18px;

  overflow-x:auto;

  scroll-behavior:smooth;

  padding:0 20px;

  scrollbar-width:none;
}

.home-row::-webkit-scrollbar{
  display:none;
}

.home-card {
    position: relative;
    min-width: 220px;
    max-width: 220px;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0;
    cursor: pointer;
    background: #eee;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-card:hover{
  transform:translateY(-4px);

  box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

.home-card img{
  width:100%;
  height:100%;

  object-fit:cover;
}

.home-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.14) 45%,
    rgba(0,0,0,0) 70%
  );
}

.home-top{
  position:absolute;

  top:14px;
  left:14px;
  right:14px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  z-index:4;
}

.home-like,
.home-tag{
  padding:8px 12px;

  border-radius:999px;

  background:rgba(255,255,255,.84);

  backdrop-filter:blur(10px);

  color:#4b2b36;

  font-size:13px;
  font-weight:600;
}

.home-info{
  position:absolute;

  left:18px;
  right:18px;
  bottom:18px;

  z-index:3;

  color:white;
}

.home-title{
  font-size:18px;
  font-weight:600;

  margin-bottom:6px;

  line-height:1.2;
}

.home-price{
  font-size:16px;

  opacity:.95;
}

@media (max-width:700px){

  #home-feed{
    padding:70px 0 80px;
    margin-top:-55px;
  }



  .home-card{
    min-width:180px;
    max-width:180px;

    height:270px;
  }

  .home-section-title{
    font-size:24px;
  }

  .home-arrow{
    display:none;
  }
}



.wave-divider{
  height:170px;
  margin-top:-170px;
}

#home-feed{
  position:relative;
 
 
}

@media (max-width:700px){

  .wave-divider{

    height:120px;

    margin-top:-120px;
  }

}

@media (max-width:700px){

  #home-feed{
    position:relative;

    padding:40px 0 80px;

    margin-top:0;

    z-index:1;
  }

}

.home-row{
  position:relative;
  overflow:hidden;
}

.home-row::after{

  content:"";

  position:absolute;

  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.08),
      transparent
    );

  transform:skewX(-18deg);

  animation:
    shimmerMove 8s linear infinite;

  pointer-events:none;

  z-index:5;
}

@keyframes shimmerMove{

  from{
    left:-120%;
  }

  to{
    left:160%;
  }

}


/* TIENDAS */

.home-stores-section{
  background:linear-gradient(135deg,#f8dbe9,#fff4f9);
  padding:42px 0 50px;
  margin-bottom:0;
}

.store-row-home{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:0 20px;
  scrollbar-width:none;
}

.store-row-home::-webkit-scrollbar{
  display:none;
}

.store-mini{
  min-width:115px;
  max-width:115px;
  flex-shrink:0;
  text-align:center;
  cursor:pointer;
}

.store-mini-logo{
  width:86px;
  height:86px;
  border-radius:50%;
  object-fit:cover;
  background:#fff;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  margin-bottom:10px;
}

.store-mini-name{
  font-size:14px;
  font-weight:800;
  color:#5d2345;
  line-height:1.15;
}

.store-mini-city{
  margin-top:4px;
  font-size:12px;
  color:#7e6672;
}

@media(max-width:700px){
  #home-feed{
    padding-top:35px;
  }

  .home-section-title{
    font-size:24px;
  }

  .home-arrow{
    display:none;
  }

  .home-card{
    min-width:180px;
    max-width:180px;
    height:270px;
  }

  .home-title{
    font-size:15px;
  }

  .store-mini{
    min-width:100px;
    max-width:100px;
  }

  .store-mini-logo{
    width:76px;
    height:76px;
  }
}