/* Product Page Styles */
h2,
h3 {
  color: #2d3748;
}
.product-page {
  padding: 40px 0;
  background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .product-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .product-wrapper {
    padding: 20px;
  }
}

.product-image-section {
  border-radius: 10px;
  overflow: hidden;
}

.main-product-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.product-info-section {
  padding: 0;
}

.product-title {
  color: #2d3748;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 700;
}

@media (max-width: 768px) {
  .product-title {
    font-size: 24px;
  }
}

.product-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 16px;
}

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

.features-list {
  margin: 20px 0;
}

.features-list h3 {
  color: #2d3748;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.features-list li {
  margin-bottom: 10px;
  color: #4a5568;
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.5;
}

.features-list li:before {
  content: "✓";
  color: #61a734;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 16px;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #61a734;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin: 30px 0;
  width: 100%;
  text-align: center;
}

.download-btn:hover {
  background: #4a8c2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(97, 167, 52, 0.3);
}

/* Simplified Contact Section */
.contacts-section {
  margin-top: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.contacts-section h3 {
  color: #2d3748;
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts-section h3 i {
  color: #61a734;
  font-size: 20px;
}

.contacts-section > p {
  color: #718096;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.contact-item:hover {
  border-color: #61a734;
}

.contact-item i {
  font-size: 22px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #61a734;
  background: #edf2f7;
  border-radius: 6px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  color: #718096;
  font-size: 13px;
  font-weight: 500;
}

.contact-link {
  color: #2d3748;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #61a734;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0aec0;
  font-size: 14px;
}

.copyright p {
  margin: 5px 0;
}

/* Animation for scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-wrapper {
  animation: fadeInUp 0.6s ease-out;
}

/* Print styles */
@media print {
  .download-btn,
  .contacts-section,
  .site-footer {
    display: none;
  }

  .product-page {
    background: white;
    padding: 0;
  }

  .product-wrapper {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .product-page {
    background: #1a202c;
  }

  .product-wrapper {
    background: #2d3748;
    border-color: #4a5568;
  }

  .product-title {
    color: #e2e8f0;
  }

  .product-description {
    color: #cbd5e0;
  }

  .features-list li {
    color: #cbd5e0;
  }

  .contacts-section {
    background: #1a202c;
    border-color: #4a5568;
  }

  .contacts-section h3 {
    color: #e2e8f0;
  }

  .contacts-section > p {
    color: #a0aec0;
  }

  .contact-item {
    background: #2d3748;
    border-color: #4a5568;
  }

  .contact-item i {
    background: #4a5568;
    color: #68d391;
  }

  .contact-label {
    color: #a0aec0;
  }

  .contact-link {
    color: #e2e8f0;
  }

  .contact-link:hover {
    color: #68d391;
  }
}
