/* Shared page styles for product pages */

.hero-section {
  padding: 3rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.hero-image {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.tagline {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.tagline a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

.tagline a:hover {
  text-decoration: underline;
  color: var(--color-accent-hover);
}

.description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.features-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.requirements-section {
  background-color: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.requirements-section p {
  margin-bottom: 1rem;
}

.requirements-section p:last-child {
  margin-bottom: 0;
}

.buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.download-section {
  background-color: var(--bg-secondary);
  padding: 3rem 0;
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.discount-banner {
  background: #057b0b;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.discount-code {
  font-weight: bold;
  font-family: monospace;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .buttons {
    flex-direction: column;
  }

  .buttons .button {
    width: 100%;
    text-align: center;
  }
}
