/*
Theme Name: Power Peptides
Theme URI: https://powerpeptides.example
Author: AI Website Factory
Description: Clinical-modern FSE block theme for Power Peptides LLC — WooCommerce-ready, conversion- and SEO-optimized, with built-in Research-Use-Only compliance patterns.
Version: 1.0.0
Requires at least: 6.5
Tested up to: 6.7
Requires PHP: 8.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: power-peptides
Tags: full-site-editing, block-patterns, e-commerce, accessibility-ready, blog
*/

/* Styling is driven by theme.json. Minimal supplemental rules only. */
.skip-link:focus { position: fixed; top: .5rem; left: .5rem; padding: .5rem 1rem; background: var(--wp--preset--color--accent); color: var(--wp--preset--color--text); z-index: 999; border-radius: 8px; }
.pp-badge { display: inline-flex; align-items: center; gap: .35rem; font-size: .8rem; font-weight: 600; padding: .25rem .6rem; border-radius: 999px; }
.pp-badge--coa { background: #e2f0e8; color: #0f5132; }
.pp-badge--ruo { background: #f5ead2; color: #7a4f00; }
/* Sticky mobile add-to-cart */
@media (max-width: 600px) { .pp-sticky-cart { position: sticky; bottom: 0; z-index: 50; } }

/* Constrain product images to square thumbnails (works for placeholders + real photos) */
.wp-block-woocommerce-product-image img,
.wc-block-grid__product-image img,
ul.products li.product img { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; height: auto; border-radius: 10px; }

/* Product cards — white, rounded, soft shadow, hover lift (matches the reference look) */
.wc-block-product,
.wp-block-woocommerce-product-template .wc-block-product,
ul.products li.product {
  background: #fff;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 1px 2px rgba(15, 27, 45, .05);
  transition: box-shadow .2s ease, transform .2s ease;
  display: flex; flex-direction: column; gap: .4rem;
}
.wc-block-product:hover,
ul.products li.product:hover { box-shadow: 0 10px 28px rgba(15, 27, 45, .12); transform: translateY(-3px); }
.wc-block-product .wp-block-post-title,
.wc-block-product .wc-block-components-product-name { font-weight: 600; line-height: 1.3; }
.wc-block-product .wp-block-post-title a,
ul.products li.product .woocommerce-loop-product__title { color: var(--wp--preset--color--ink); }
.wc-block-product .wp-block-post-title a:hover { color: var(--wp--preset--color--accent); }
.wc-block-product .wc-block-components-product-price,
.wc-block-product .price { color: var(--wp--preset--color--primary); font-weight: 700; }
.wc-block-product .wp-block-button,
.wc-block-product .wp-block-woocommerce-product-button { margin-top: auto; }
.wc-block-product .wp-block-button__link,
ul.products li.product a.button { width: 100%; text-align: center; }

/* Sale / discount badge — red pill, top-left (shows when a product has a sale price) */
.wc-block-components-product-sale-badge,
ul.products li.product .onsale {
  background: var(--wp--preset--color--sale); color: #fff; border-radius: 999px;
  padding: .15rem .6rem; font-size: .75rem; font-weight: 700; border: 0;
}

/* Bulletless footer lists + WCAG 2.2 tap targets (>=24px) for list links */
.wp-block-list.is-style-none { list-style: none; padding-left: 0; }
.wp-block-list a { display: inline-block; padding: 5px 0; line-height: 1.5; }
