/* Shop pages (commissions, prints) specific styles */

.content-section {
  padding: 24px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 100;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Shop content */
.shop-content {
  max-width: 800px;
  margin: 0 auto;
}

.shop-info {
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-info h3 {
  color: rgb(184, 29, 76);
  margin-bottom: 16px;
}

.shop-info p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.shop-info ul {
  margin: 16px 0;
  padding-left: 20px;
}

.shop-info li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Pricing tables */
.pricing-table {
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pricing-header {
  background: rgba(184, 29, 76, 0.1);
  padding: 16px 24px;
  font-weight: 700;
  color: rgb(184, 29, 76);
}

.pricing-row {
  display: flex;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-item {
  flex: 1;
  padding-right: 16px;
}

.pricing-price {
  min-width: 120px;
  text-align: right;
  font-weight: 700;
  color: rgb(184, 29, 76);
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: rgba(184, 29, 76, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(184, 29, 76, 0.3);
}

.contact-cta h3 {
  color: rgb(184, 29, 76);
  margin-bottom: 16px;
}

.contact-button {
  display: inline-block;
  padding: 12px 24px;
  background: rgb(184, 29, 76);
  color: white;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s ease;
  margin-top: 16px;
}

.contact-button:hover {
  background: rgb(166, 27, 69);
  color: white;
}

/* Product flex layout for prints */
.product-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.product-card {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.product-card h3 {
  color: #b81d4c;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.product-card p {
  line-height: 1.6;
  margin-bottom: 16px;
  opacity: 0.9;
}

.product-price {
  font-weight: 700;
  color: #b81d4c;
  font-size: 1.1rem;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

/* Contact section improvements */
.contact-section {
  margin-top: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section h2 {
  color: #b81d4c;
  margin-bottom: 24px;
  font-size: 2rem;
}

.contact-info a {
  color: #b81d4c;
  transition: opacity 0.2s ease;
}

.contact-info a:hover {
  opacity: 0.8;
}

.contact-note {
  margin-top: 16px;
  font-style: italic;
  opacity: 0.8;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .pricing-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .pricing-price {
    text-align: left;
    min-width: auto;
  }
  
  .product-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .product-card {
    max-width: 100%;
    min-width: unset;
  }
}

@media (max-width: 480px) {
  .shop-info,
  .contact-cta {
    padding: 24px;
  }
  
  .pricing-table {
    margin: 24px -16px;
    border-radius: 0;
  }
}
