/* Purchase Page Styles */

.purchase-header {
  text-align: center;
  margin-bottom: 2rem;
}

.purchase-header h1 {
  margin-bottom: 0.5rem;
}

.purchase-header p {
  color: #666;
  font-size: 1.1em;
}

/* Purchase Options Grid */
.purchase-options {
  margin-bottom: 3rem;
}

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

.purchase-option {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}

.purchase-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.purchase-option.popular {
  border-color: #007cba;
  position: relative;
  transform: scale(1.05);
}

.purchase-option.popular::before {
  content: "Most Popular";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #007cba;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: bold;
}

.purchase-option h3 {
  margin-bottom: 1rem;
  color: #333;
  font-size: 1.5em;
}

.price {
  font-size: 2.5em;
  font-weight: bold;
  color: #007cba;
  margin-bottom: 1rem;
}

.purchase-option p {
  margin-bottom: 1.5rem;
  color: #666;
  font-style: italic;
}

.purchase-option ul,
.shipping-info ul {
  text-align: center;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.purchase-option li,
.shipping-info li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.purchase-option li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  flex-shrink: 0;
}

.purchase-option li:last-child {
  border-bottom: none;
}

/* Purchase Buttons */
.purchase-btn {
  background: #007cba;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 250px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.purchase-btn:hover {
  background: #005a87;
}

.popular-btn {
  background: #28a745;
}

.popular-btn:hover {
  background: #1e7e34;
}

.contact-btn {
  background: #6c757d;
}

.contact-btn:hover {
  background: #545b62;
  color: white;
  text-decoration: none;
}

/* Purchase Info Section */
.purchase-info {
  background: #f8f9fa;
  padding: 3rem 2rem;
  border-radius: 8px;
  margin-top: 3rem;
}

.purchase-info h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #333;
}

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

.info-item {
  text-align: center;
  padding: 1.5rem;
}

.info-item h4 {
  margin-bottom: 1rem;
  color: #007cba;
  font-size: 1.2em;
}

.info-item p {
  color: #666;
  line-height: 1.5;
}

.shipping-info ul {
  list-style: none;
  padding: 0;
}

.shipping-info li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.shipping-info li::before {
  content: "✓";
  color: #28a745;
  font-weight: bold;
  flex-shrink: 0;
}

.shipping-info li:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .purchase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .purchase-option.popular {
    transform: none;
  }
  
  .purchase-option {
    padding: 1.5rem;
  }
  
  .price {
    font-size: 2em;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .purchase-header h1 {
    font-size: 1.8em;
  }
  
  .purchase-option {
    padding: 1rem;
  }
  
  .price {
    font-size: 1.8em;
  }
  
  .purchase-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1em;
  }
}
