:root{
  --len: 6ch;
}

.Price{
  /* background-image: 
  linear-gradient(to right,#ffd5a5 0%, #cd3c4a 10%,  #cd3c4a 90%, #ffd5a5 100%);
  background-position: 0 0, 0 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: move 4s linear infinite;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  font-weight: 700; */
color: #cd3c4a;
}

@keyframes move {
  to {
      background-position: var(--len) 0, 0 0;
  }
}

.store-header{
  background-image: url(../../images/shop.png);
  background-position: center center;
  background-repeat: no-repeat; 
  background-size: cover; 
  width: 100%;
  height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.store-header-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.store-header-text a{
  width: 50px;
  text-align: center;
  padding: 10px 60px;
  border: 1px solid white;
  gap: 50px;
  margin-top: 30px;
  transition: background-color 0.3s, transform 0.3s;
}

.store-header-text a:hover{
  background-color: white;
  color: black;
  transform: scale(1.05);
  box-shadow: 0 0 5px;
}

.store-section-title div{
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.StoreGroup{
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  background-color: #272727;
  margin: 15px 0;
}

.storeItem{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: 10px auto;
  width: 90%;
  background-color: #1a1a1a;
}

.storeItemPrice{
  padding-top: 5px;
}

.small-link-button-store{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

button {
  all: unset;
}

.subbed {
  /* background-color: #cd3c4a; */
  border-radius: 4px;
  margin: 8px;
  padding: 3px 8px;
}

.subbed, .subbed i, .small-link-button-store, .small-link-button-store > *{
  
  transition: 0.5s;
}

.subbed i{
  color: #cd3c4a;
}
.small-link-button-store, .small-link-button-store > *{
  cursor: pointer;
  padding: 5px 0px;
  color: #cd3c4a;
}


.button-arrow{
  animation: arrowPulse 1s ease-in-out infinite alternate;
}

@keyframes arrowPulse{
  0% {transform: translateX(0px);}
  100% {transform: translateX(10px);}
}

.storeItemTitle{
  font-size: 20px;
  color: #cd3c4a;
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  .store-section-title div{
    padding: 0;
    padding: 20px 0;
  }

  .storeItemTitle{
    font-size: 20px;
    color: #cd3c4a;
    font-weight: 700;
    width: 90%;
  }

  .storeItemDescription{
    width: 90%;
    font-size: 12px;
  }
}

