/* === ALBUKARAOQUE WEBSITE - MERCHANDISE PAGE === */
/* Merchandise page specific styles and components */

/* === MERCHANDISE PAGE STYLES === */
.merch-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #40B5A3 100%);
  color: white;
  padding: 10rem 0 8rem;
  text-align: center;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  left: 0;
  right: 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.merch-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.merch-hero::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.merch-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.merch-hero .page-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.5px;
  transform: scale(1);
  transition: transform 0.3s ease;
  display: inline-block;
}

.merch-hero:hover .page-title {
  transform: scale(1.02);
}

.merch-hero .page-subtitle {
  font-size: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.merchandise-section {
  padding: 4rem 2rem;
}

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

.merch-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.merch-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #40B5A3, #78D5C7);
}

.merch-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.merch-item.featured {
  border: 2px solid #40B5A3;
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}

.item-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.item-image {
  margin-bottom: 1.5rem;
}

.item-image i {
  font-size: 4rem;
  color: #40B5A3;
}

.item-details h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.item-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.item-sizes {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.size-label {
  font-weight: bold;
  color: #2c3e50;
}

.size-options {
  color: #666;
  margin-left: 0.5rem;
}

.item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #40B5A3;
  margin-bottom: 1.5rem;
}

.item-cta {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.item-cta:hover {
  background: linear-gradient(45deg, #e61f00, #f0c200);
  transform: translateY(-2px);
}

.ordering-info-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
  font-size: 3rem;
  color: #40B5A3;
  margin-bottom: 1rem;
}

.info-card h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.info-card p {
  color: #666;
  line-height: 1.6;
}

.custom-merch-section {
  padding: 4rem 2rem;
  background: white;
}

.custom-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.custom-content h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.custom-content p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.custom-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.feature i {
  font-size: 2rem;
  color: #40B5A3;
  margin-bottom: 0.5rem;
}

.feature span {
  font-weight: 600;
  color: #333;
  text-align: center;
}

.support-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: white;
  text-align: center;
}

.support-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.support-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #78D5C7;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-cta {
  margin-top: 2rem;
}

/* === RESPONSIVE DESIGN - MERCHANDISE === */
@media (max-width: 768px) {
  .merch-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .custom-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .support-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .merch-hero {
    padding: 4rem 1rem 3rem;
  }
  
  .merch-item {
    padding: 1.5rem;
  }
  
  .item-image {
    font-size: 3rem;
  }
  
  .custom-features {
    grid-template-columns: 1fr;
  }
  
  .support-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}
