.messages--status {
  position: absolute;
  top: -25px;
  left: 5px;
  color: lightblue;
}

.store-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
    align-items: stretch;
    margin: 15px 0 15px;
  }

.product-box {
  background: white;
  padding: 10px;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #e9e9e9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  flex-grow: 1;
  opacity: 0;
  animation: fadeInSoft 0.45s ease-out forwards;
}

.product-box:nth-child(1) {
  animation-delay: 0.1s;
}

.product-box:nth-child(2) {
  animation-delay: 0.2s;
}

.product-box:nth-child(3) {
  animation-delay: 0.3s;
}

.product-box:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInSoft {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dark-mode .product-box {
  background-color: #3f3f3f;
}

.product-top {
  flex-grow: 1;
}

.product-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.product-box img {
  width: 97px;
  height: 110px;
}

.product-box h3 {
  margin: 10px 0 15px;
}

.product-box p {
  font-size: 15px;
  margin: 5px 0;
  text-align: center;
}

.price-section p {
  text-align: center;
}

.price {
  font-size: 1.8em;
  margin: 50px 0 0 0;
}

.product-box .buy,
.product-box .renew {
  width: 140px;
  padding: 8px;
  margin: 5px 0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  display: block;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.product-box .buy {
  color: #fff;
  background-image: linear-gradient(to bottom, #65c63f 0%, #4ba133 100%);
}

.product-box .buy:hover {
  background-image: linear-gradient(to bottom, #8be957 0%, #66cc46 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(101,198,63,0.4);
}

.product-box .renew {
  color: #fff;
  background-image: linear-gradient(to bottom, #3e90c6 0%, #346ca1 100%);
}

.product-box .renew:hover {
  background-image: linear-gradient(to bottom, #57b8e8 0%, #4691cd 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(62,144,198,0.4);
}

.extend {
  font-size: 0.9em;
}

a.extend {
  color: #797979;
  text-decoration: none;
  display: block;
}

a.extend:visited {
  color: #797979;
  text-decoration: none;
}

a.extend:hover {
  color: #acacac;
  text-decoration: none;
}  

.payment-logos-wrapper-store {
  text-align: right;
  margin-top: 15px;
}

.payment-logos-wrapper-store img {
  width: 250px;
  height: auto;
}

.payment-logos-product-wrapper {
  text-align: center;
}

.payment-logos-product-wrapper img {
  width: 250px;
  height: auto;
}