/* Font Standardization for Product/Collection Pages */
/* Matches font styles from catalog pages (e.g., pages/serenity-natural-progesterone-cream/) */
/* Desktop styles - matching catalog pages */

/* Base text standardization */
.collection-page .product-desc-text,
.collection-page .product-container {
  font-size: 16px !important;  /* Match catalog page body font */
  line-height: 160%;
}

/* Product title standardization */
.collection-page .store_item_name {
  font-size: 21px !important;  /* Match catalog page heading sizes */
  line-height: 130%;
}

/* Product title links */
.collection-page .store_item_name a {
  font-size: 21px !important;  /* Ensure links match */
}

/* Price text standardization */
.collection-page .store_item_price {
  font-size: 18px !important;  /* Slightly larger for better visibility */
}

/* Additional content areas */
.collection-page .ingredients-text {
  font-size: 13px !important;  /* 80% of 16px base */
}

/* Product page specific (single product view) */
.collection-page .store_item_name h1 {
  font-size: 28px !important;  /* Match catalog page h1 sizes */
  line-height: 130%;
  margin-bottom: 15px;
}

/* Ensure paragraph spacing matches catalog pages */
.collection-page .product-desc-text p {
  line-height: 160%;
}

/* Collection page title if shown */
.collection-page .collection-title {
  font-size: 28px !important;
  line-height: 130%;
}

/* Postage & Packing text */
.collection-page .p-and-p-text {
  font-size: 9px !important;  /* Maintaining proportional size */
}