/* ============ PRODUCT PAGE STYLES ============ */

.breadcrumb {
  padding: 100px 5% 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--teal);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 8px;
}

/* ============ PRODUCT DETAIL ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 20px 5% 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px 5% 60px;
  }
}

.product-gallery {
  position: sticky;
  top: 100px;
}

.product-main-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  object-fit: contain;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

@media (max-width: 900px) {
  .product-gallery {
    position: static;
  }
  .product-main-image {
    max-width: 100%;
  }
}

.product-content {
  padding-top: 10px;
}

.product-age-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  color: white;
  margin-bottom: 16px;
}

.product-age-badge.badge-teal { background: var(--teal); }
.product-age-badge.badge-lime { background: #9ACD32; color: var(--ink); }
.product-age-badge.badge-pink { background: var(--pink); }
.product-age-badge.badge-orange { background: #FFB347; color: var(--ink); }
.product-age-badge.badge-purple { background: #9B59B6; }

.product-detail-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}

.product-detail-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 20px;
}

.product-detail-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ============ VARIANT SELECTOR ============ */
.variant-selector-wrap {
  margin-bottom: 24px;
}

.variant-selector-wrap label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600;
}

.variant-select {
  width: 100%;
  max-width: 300px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.variant-select:focus {
  outline: none;
  border-color: var(--teal);
}

.variant-select:hover {
  border-color: #ccc;
}

/* ============ PRODUCT ACTIONS ============ */
.product-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn-add-to-cart {
  padding: 18px 48px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--lime);
  color: var(--ink);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add-to-cart:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

.btn-add-to-cart.added {
  background: var(--teal);
  color: white;
}

/* ============ PRODUCT FEATURES ============ */
.product-features {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #555;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 1.3rem;
}
</content>
</invoke>
