/* Estilos para la sección de la tienda */
.section_store {
  padding: 12rem 0 8rem;
  background-color: #000;
}

.heading-style-h1 {
  color: #fff;
  font-size: 4.8rem;
  margin-bottom: 4rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
}

.heading-style-h1:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--button-bg-gradient);
  transition: width 0.5s ease;
}

.heading-style-h1:hover:after {
  width: 150px;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

/* Estilos de tarjeta con efectos premium */
.product-card {
  background: linear-gradient(145deg, rgba(30,30,30,0.9), rgba(20,20,20,0.9));
  border: 1px solid rgba(95, 164, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(95, 164, 255, 0.5);
  box-shadow: 0 20px 40px rgba(95, 164, 255, 0.2);
}

.product-image-wrapper {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
}

.product-image {
  width: 85%;
  height: 85%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  border-radius: 8px;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.product-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 4.2rem;
}

.product-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #5fa4ff;
  margin-bottom: 2rem;
  text-align: center;
}

.button-2 {
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  color: #000;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: inline-block;
  width: 100%;
  max-width: 250px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(95, 164, 255, 0.3);
  animation: buttonPulse 4s infinite;
  z-index: 1;
}

@keyframes buttonPulse {
  0%, 100% {
    box-shadow: 0 5px 15px rgba(95, 164, 255, 0.3);
  }
  50% {
    box-shadow: 0 5px 30px rgba(95, 164, 255, 0.6);
  }
}

.button-2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, 
    rgba(95, 164, 255, 0) 0%, 
    rgba(95, 164, 255, 0.1) 50%, 
    rgba(79, 209, 197, 0.3) 100%);
  animation: shinyEffect 6s linear infinite;
  transform: rotate(25deg);
  z-index: -1;
}

@keyframes shinyEffect {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  20%, 100% {
    transform: translateX(100%) rotate(25deg);
  }
}

.button-2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5fa4ff 0%, #4fd1c5 100%);
  z-index: -2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.button-2:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(95, 164, 255, 0.5);
  text-decoration: none !important;
  letter-spacing: 0.1em;
  color: #000;
}

.button-2:hover::after {
  opacity: 0.9;
  background: linear-gradient(135deg, #4fd1c5 0%, #5fa4ff 100%);
}

.button-2:active {
  transform: translateY(1px);
  box-shadow: 0 5px 15px rgba(95, 164, 255, 0.3);
}

/* Mobile Responsive Styles for Store */
@media (max-width: 767px) {
  .section_store {
    padding: 8rem 0 6rem;
  }
  
  .heading-style-h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
  
  .store-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.5rem;
  }
  
  .product-card {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .product-image-wrapper {
    height: 260px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .product-image {
    width: 90%;
    height: 90%;
  }
  
  .product-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  
  .product-description {
    font-size: 1.4rem;
    min-height: auto;
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  
  .product-price {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    font-weight: 800;
  }
  
  .button-2 {
    padding: 1.4rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 992px) {
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
} 