/* Subpage Layouts */
.page-container {
  padding: 120px 2rem 4rem;
  min-height: 80vh;
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 3rem;
  color: var(--secondary);
}

/* Product Detail Page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-detail-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.product-detail-info h1 {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.product-detail-category {
  color: var(--primary);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.product-detail-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.product-detail-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.product-features-list {
  margin-bottom: 2rem;
  padding-left: 1rem;
}

.product-features-list li {
  list-style: disc;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.action-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.qty-input {
  width: 80px;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 50px;
  text-align: center;
  font-size: 1rem;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

/* Contact Page */
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: bold;
  color: var(--secondary);
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 138, 108, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
