/* Product Page Styles */
.product-page {
  background: #fff;
  min-height: calc(100vh - 117px);
  padding: 40px 20px;
  font-family: "aktiv-grotesk", sans-serif;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  background: #fff;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

/* Product Images */
.product-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image {
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbnail-images {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  transition: all 0.2s ease;
  object-fit: cover;
}

.thumbnail:hover {
  border-color: #000;
}

.thumbnail.active {
  border-color: #000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Product Info */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-info h1 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #000;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.product-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  width: fit-content;
  letter-spacing: 0.5px;
}

.product-description {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.product-description p {
  margin: 0 0 15px;
}

.product-features {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.product-features h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000;
}

.coming-soon-notice {
  background: #fff3cd;
  border: 2px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.coming-soon-notice p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #856404;
}

/* Checklist Section */
.checklist-section {
  max-width: 1200px;
  margin: 60px auto 0;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.checklist-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.checklist-description {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.checklist-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #000;
  transition: all 0.2s ease;
  position: relative;
}

.checklist-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.player-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.team-name {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.player-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.player-list li {
  font-size: 15px;
  color: #333;
  padding: 4px 0;
  border-bottom: 1px solid #eee;
}

.player-list li:last-child {
  border-bottom: none;
}

.loading {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: #666;
}

.error {
  text-align: center;
  padding: 40px;
  color: #721c24;
  background: #f8d7da;
  border-radius: 8px;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
  }

  .product-info h1 {
    font-size: 32px;
  }

  .checklist-section {
    padding: 30px 20px;
  }

  .checklist-section h2 {
    font-size: 26px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .product-page {
    padding: 20px 10px;
  }

  .product-info h1 {
    font-size: 28px;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }
}
