.shop-nav {
  text-align:center;
  margin:40px 0;
  padding-top: 60px;
}

.shop-nav a {
  padding: 10px 21px;
  font-weight:bold;
  text-decoration:none;
  color: black;
  font-family: Karrik;
  font-size: 31px;
  font-weight: 400;
}

.shop-nav a:hover{
  background: black;
  color: white;
}

.shop-category {
  margin:80px auto;
  max-width:1200px;
}

.shop-category h2 {
  margin-bottom:40px;
}

.shop-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:40px;
}

.shop-card {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.shop-card span{
  font-family: Karrik;
  font-size: 21px;
}

.shop-card img {
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#eee;
}

.shopMeta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-card button {
  border: 0;
  padding: 16px 31px;
  border-radius: 999px;
  background: black;
  color: white;
  cursor: pointer;
  font-family: karrik;
}

.shop-card button:hover {
  background: white;
  color: black;
}

.shop-card.disabled {
  opacity:0.4;
}

.shop-card.disabled button {
  background:grey;
  cursor:not-allowed;
}

  #retour-banner {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: hotpink;
        font-family: Karrik;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 21px;
        padding: 0 21px;
        z-index: 1000;
        transition: top 0.5s ease;
  }

  #retour-banner a{
    color: white;
    text-align: center;
    margin: auto;
  }
/*****--**--****-|Responsive Tablette - Agence|-****--**--*****/
  @media screen and (max-width: 960px){
    .shop-nav{
      display: flex;
      flex-direction: column;
      align-items: end;
      padding-right: 21px;
    }

    .shop-category {
      max-width: 76vw;
    }

    .shop-category h2 {
      margin-bottom: 21px;
    }
  }
/*****--**--****-|Responsive Tablette - Agence|-****--**--*****/

/*****--**--****-|Responsive Mobile - Agence|-****--**--*****/
  @media screen and (max-width: 576px){
    
  }  










/* Animation card */
@keyframes cardPop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.shop-card.pop {
  animation: cardPop 300ms ease;
}

/* Animation badge */
@keyframes badgePop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

#cartBadge.pop {
  animation: badgePop 300ms ease;
}









