/**
 * Premium Grooming — main stylesheet
 * Brand: black #000, gold #E6BE5A
 */

:root {
  --pgp-black: #000000;
  --pgp-gold: #e6be5a;
  --pgp-gold-light: #f7e79e;
  --pgp-gold-deep: #c5a028;
  --pgp-white: #ffffff;
  --pgp-offwhite: #f5f5f5;
  --pgp-text: #1a1a1a;
  --pgp-muted: #6b6b6b;
  --pgp-border: #e2e2e2;
  --pgp-font-display: "Syne", sans-serif;
  --pgp-font-body: "Manrope", sans-serif;
  --pgp-space: 1.25rem;
  --pgp-max: 72rem;
  --pgp-narrow: 42rem;
  --pgp-radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--pgp-font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--pgp-text);
  background: var(--pgp-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pgp-text);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--pgp-gold-deep);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pgp-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pgp-gold);
  color: var(--pgp-black);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.pgp-skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.pgp-container {
  width: min(100% - 2rem, var(--pgp-max));
  margin-inline: auto;
}

.pgp-container--narrow {
  width: min(100% - 2rem, var(--pgp-narrow));
}

/* Header */
.pgp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--pgp-border);
  backdrop-filter: blur(8px);
}

.pgp-header__inner {
  display: grid;
  grid-template-columns: auto 1fr minmax(12rem, 18rem) auto;
  grid-template-areas: "brand nav search cart";
  align-items: center;
  gap: 1rem;
  min-height: 4.25rem;
  padding-block: 0.65rem;
}

.pgp-header__brand { grid-area: brand; }
.pgp-nav { grid-area: nav; }
.pgp-header__search { grid-area: search; }
.pgp-header__cart-wrap { grid-area: cart; justify-self: end; }

.pgp-header-search {
  width: 100%;
}

.pgp-brand-text {
  font-family: var(--pgp-font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--pgp-black);
}

.pgp-header .custom-logo-link img {
  max-height: 48px;
  width: auto;
}

.pgp-nav-toggle {
  display: none;
  border: 1px solid var(--pgp-border);
  background: var(--pgp-white);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--pgp-radius);
  cursor: pointer;
}

.pgp-nav-toggle__bars,
.pgp-nav-toggle__bars::before,
.pgp-nav-toggle__bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--pgp-black);
  margin: 0 auto;
  position: relative;
}

.pgp-nav-toggle__bars::before,
.pgp-nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.pgp-nav-toggle__bars::before {
  top: -6px;
}

.pgp-nav-toggle__bars::after {
  top: 6px;
}

.pgp-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.pgp-nav__list a {
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}

.pgp-header__tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pgp-header-search input[type="search"],
.pgp-header-search input[type="text"] {
  width: 100%;
  border: 1px solid var(--pgp-border);
  border-radius: var(--pgp-radius);
  padding: 0.55rem 0.75rem;
  font: inherit;
}

.pgp-header-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 700;
  min-height: 44px;
}

.pgp-header-cart__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  background: var(--pgp-gold);
  color: var(--pgp-black);
  border-radius: 999px;
  font-size: 0.8rem;
}

/* Buttons */
.pgp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  font-family: var(--pgp-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--pgp-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pgp-btn--primary {
  background: var(--pgp-gold);
  color: var(--pgp-black);
  border-color: var(--pgp-gold);
}

.pgp-btn--primary:hover {
  background: var(--pgp-gold-light);
  color: var(--pgp-black);
}

.pgp-btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--pgp-text);
}

.pgp-btn--ghost:hover {
  border-color: var(--pgp-gold-deep);
  color: var(--pgp-gold-deep);
}

.pgp-btn--on-dark {
  color: var(--pgp-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.pgp-btn--on-dark:hover {
  color: var(--pgp-gold);
  border-color: var(--pgp-gold);
}

.pgp-btn--small {
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.pgp-link {
  font-weight: 700;
  color: var(--pgp-gold-deep);
}

/* Hero — full-bleed atmospheric plane */
.pgp-hero {
  position: relative;
  min-height: min(78vh, 40rem);
  display: grid;
  align-items: end;
  color: var(--pgp-white);
  overflow: hidden;
}

.pgp-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(230, 190, 90, 0.22), transparent 45%),
    linear-gradient(135deg, #111 0%, #000 45%, #1a1408 100%);
  z-index: 0;
}

.pgp-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 4rem 3.5rem;
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--pgp-max)) / 2));
  margin-right: auto;
  animation: pgp-rise 0.7s ease both;
}

.pgp-hero__brand {
  font-family: var(--pgp-font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pgp-gold);
  margin: 0 0 0.75rem;
}

.pgp-hero__title {
  font-family: var(--pgp-font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.pgp-hero__lede {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 36ch;
}

.pgp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes pgp-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.pgp-section {
  padding-block: 3.5rem;
}

.pgp-section__header {
  margin-bottom: 1.75rem;
}

.pgp-section__header h2,
.pgp-trust h2,
.pgp-page-title {
  font-family: var(--pgp-font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
}

.pgp-section__header p,
.pgp-lede {
  color: var(--pgp-muted);
  margin: 0;
}

.pgp-section__more {
  margin-top: 1.5rem;
}

.pgp-featured {
  background: var(--pgp-offwhite);
}

.pgp-trust__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.pgp-trust__grid p {
  color: var(--pgp-muted);
}

.pgp-page-header {
  margin-bottom: 2rem;
}

.pgp-content {
  max-width: 65ch;
}

.pgp-content--wide {
  max-width: none;
}

.pgp-gallery-placeholder {
  padding: 2rem;
  border: 1px dashed var(--pgp-border);
  background: var(--pgp-white);
  text-align: center;
}

.pgp-gallery-placeholder .pgp-btn {
  margin-top: 0.75rem;
}

/* Our work */
.pgp-work-hero {
  position: relative;
  min-height: min(52vh, 28rem);
  display: grid;
  align-items: end;
  color: var(--pgp-white);
  overflow: hidden;
}

.pgp-work-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse at 75% 15%, rgba(230, 190, 90, 0.2), transparent 42%),
    linear-gradient(145deg, #0c0c0c 0%, #000 50%, #1a1408 100%);
  z-index: 0;
}

.pgp-work-hero__content {
  position: relative;
  z-index: 1;
  padding-block: 3.25rem 2.75rem;
  max-width: 38rem;
  animation: pgp-rise 0.7s ease both;
}

.pgp-work-hero__brand {
  font-family: var(--pgp-font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--pgp-gold);
  margin: 0 0 0.65rem;
}

.pgp-work-hero__title {
  font-family: var(--pgp-font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.75rem;
  max-width: 14ch;
}

.pgp-work-hero__lede {
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 38ch;
}

.pgp-work-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pgp-work-gallery {
  background: var(--pgp-offwhite);
}

.pgp-work-gallery__header h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.pgp-work-gallery__body {
  animation: pgp-fade-in 0.8s ease 0.12s both;
}

.pgp-work-gallery__body .foogallery,
.pgp-work-gallery__body .fg-gallery {
  margin: 0;
}

.pgp-work-gallery__body .foogallery .fg-thumb,
.pgp-work-gallery__body .fg-thumb {
  border-radius: var(--pgp-radius);
  overflow: hidden;
}

.pgp-work-gallery__body .foogallery a:focus-visible,
.pgp-work-gallery__body .fg-thumb a:focus-visible {
  outline: 2px solid var(--pgp-gold);
  outline-offset: 3px;
}

.pgp-work-gallery__body .fg-caption,
.pgp-work-gallery__body .foogallery .fg-caption-title,
.pgp-work-gallery__body .foogallery .fg-caption-desc {
  display: none;
}

.pgp-work-cta {
  padding-block: 3rem;
  border-top: 1px solid var(--pgp-border);
  background: var(--pgp-white);
}

.pgp-work-cta__inner {
  max-width: 36rem;
}

.pgp-work-cta__title {
  font-family: var(--pgp-font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.pgp-work-cta__lede {
  margin: 0 0 1.25rem;
  color: var(--pgp-muted);
}

.pgp-work-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes pgp-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Contact */
.pgp-contact__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1.1fr 0.9fr;
}

.pgp-map {
  margin-top: 1.25rem;
  border: 1px solid var(--pgp-border);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.pgp-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SDS table */
.pgp-sds-filter__input {
  width: min(100%, 24rem);
  margin-bottom: 1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--pgp-border);
  border-radius: var(--pgp-radius);
  font: inherit;
}

.pgp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pgp-border);
}

.pgp-sds-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.pgp-sds-table th,
.pgp-sds-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--pgp-border);
}

.pgp-sds-table th {
  background: var(--pgp-offwhite);
  font-weight: 700;
}

.pgp-sds-table tr.is-hidden {
  display: none;
}

.pgp-sds-link {
  margin-top: 1rem;
}

/* Footer */
.pgp-footer {
  background: var(--pgp-black);
  color: rgba(255, 255, 255, 0.88);
  margin-top: 3rem;
  padding-top: 2.75rem;
}

.pgp-footer a {
  color: var(--pgp-gold-light);
  text-decoration: none;
}

.pgp-footer a:hover {
  color: var(--pgp-gold);
}

.pgp-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 2rem;
}

.pgp-footer__name {
  font-family: var(--pgp-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pgp-gold);
  margin: 0 0 0.35rem;
}

.pgp-footer__tagline,
.pgp-footer__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.pgp-footer__list,
.pgp-footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.pgp-footer__social-label {
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.pgp-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Shop + header: stronger window-edge gutters (slightly more left indent) */
.pgp-header .pgp-container,
.pgp-main--shop > .pgp-container {
  width: min(100% - 5.5rem, 60rem);
  max-width: 60rem;
  margin-inline: auto;
  padding-left: 0.75rem;
  padding-right: 0;
  box-sizing: border-box;
}

/* WooCommerce light overrides — shop / category archives */
.pgp-main--shop .woocommerce ul.products,
body.woocommerce-shop ul.products,
body.post-type-archive-product ul.products,
body.tax-product_cat ul.products,
body.tax-product_tag ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pgp-main--shop .woocommerce ul.products::before,
.pgp-main--shop .woocommerce ul.products::after,
body.woocommerce-shop ul.products::before,
body.woocommerce-shop ul.products::after,
body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after,
body.tax-product_cat ul.products::before,
body.tax-product_cat ul.products::after {
  display: none;
}

.pgp-main--shop .woocommerce ul.products li.product,
body.woocommerce-shop ul.products li.product,
body.post-type-archive-product ul.products li.product,
body.tax-product_cat ul.products li.product,
body.tax-product_tag ul.products li.product {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  clear: none !important;
  background: var(--pgp-white);
  border: 1px solid var(--pgp-border);
  padding: 0.75rem;
  transition: border-color 0.15s ease, transform 0.2s ease;
}

.pgp-main--shop .woocommerce ul.products li.product:hover,
body.woocommerce-shop ul.products li.product:hover,
body.post-type-archive-product ul.products li.product:hover,
body.tax-product_cat ul.products li.product:hover {
  border-color: var(--pgp-gold);
  transform: translateY(-2px);
}

/* Stack link contents — never square/flex the whole product link */
.pgp-main--shop .woocommerce ul.products li.product .woocommerce-loop-product__link,
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__link,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__link,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__link,
body.tax-product_tag ul.products li.product .woocommerce-loop-product__link {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  align-items: unset !important;
  justify-content: unset !important;
}

/* Square image well only */
.pgp-main--shop .woocommerce ul.products li.product .pgp-loop-thumb,
body.woocommerce-shop ul.products li.product .pgp-loop-thumb,
body.post-type-archive-product ul.products li.product .pgp-loop-thumb,
body.tax-product_cat ul.products li.product .pgp-loop-thumb,
body.tax-product_tag ul.products li.product .pgp-loop-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 0.5rem;
  background: #f3f3f3;
  padding: 0.9rem;
  box-sizing: border-box;
  overflow: hidden;
}

.pgp-main--shop .woocommerce ul.products li.product .pgp-loop-thumb img,
body.woocommerce-shop ul.products li.product .pgp-loop-thumb img,
body.post-type-archive-product ul.products li.product .pgp-loop-thumb img,
body.tax-product_cat ul.products li.product .pgp-loop-thumb img,
body.tax-product_tag ul.products li.product .pgp-loop-thumb img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 !important;
  object-fit: contain !important;
  background: transparent;
  padding: 0;
}

.pgp-main--shop .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title,
body.tax-product_cat ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--pgp-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.25rem 0 0.2rem;
  line-height: 1.35;
}

.pgp-main--shop .woocommerce ul.products li.product .price,
body.woocommerce-shop ul.products li.product .price,
body.post-type-archive-product ul.products li.product .price,
body.tax-product_cat ul.products li.product .price {
  color: var(--pgp-text);
  font-weight: 700;
  font-size: 0.9rem;
}

/* Home featured shortcode — keep larger 4-up cards (do not use shop thumbnail caps) */
.pgp-featured .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pgp-featured .woocommerce ul.products::before,
.pgp-featured .woocommerce ul.products::after {
  display: none;
}

.pgp-featured .woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  background: var(--pgp-white);
  border: 1px solid var(--pgp-border);
  padding: 0.75rem;
  transition: border-color 0.15s ease, transform 0.2s ease;
}

.pgp-featured .woocommerce ul.products li.product:hover {
  border-color: var(--pgp-gold);
  transform: translateY(-2px);
}

.pgp-featured .woocommerce ul.products li.product a img,
.pgp-featured .woocommerce ul.products li.product img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0 0 0.35rem;
  object-fit: contain;
  background: transparent;
  padding: 0;
}

.pgp-featured .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--pgp-font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 0 0.25rem;
}

.pgp-featured .woocommerce ul.products li.product .price {
  color: var(--pgp-text);
  font-weight: 700;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--pgp-gold) !important;
  color: var(--pgp-black) !important;
  border-radius: var(--pgp-radius) !important;
  font-weight: 700 !important;
  min-height: 44px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--pgp-gold-light) !important;
}

.woocommerce span.onsale {
  background: var(--pgp-black);
  color: var(--pgp-gold);
}

.woocommerce div.product .product_title {
  font-family: var(--pgp-font-display);
}

.pgp-single-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.pgp-single-product .woocommerce-product-gallery {
  margin: 0;
}

.pgp-single-product__summary {
  max-width: 36rem;
}

.pgp-single-product .woocommerce-tabs,
.pgp-single-product .related,
.pgp-single-product .upsells {
  grid-column: 1 / -1;
}

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

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--pgp-gold);
}

/* Mobile */
@media (max-width: 900px) {
  .pgp-header__inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand toggle cart"
      "search search search";
  }

  .pgp-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-area: toggle;
    justify-self: end;
  }

  .pgp-header__search {
    width: 100%;
  }

  .pgp-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--pgp-white);
    border-bottom: 1px solid var(--pgp-border);
    padding: 1rem;
    grid-area: unset;
  }

  .pgp-nav.is-open {
    display: block;
  }

  .pgp-nav__list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .pgp-trust__grid,
  .pgp-footer__grid,
  .pgp-contact__grid {
    grid-template-columns: 1fr;
  }

  .pgp-header .pgp-container,
  .pgp-main--shop > .pgp-container {
    width: min(100% - 3rem, 60rem);
    padding-left: 0.5rem;
  }

  .pgp-main--shop .woocommerce ul.products,
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pgp-featured .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .pgp-hero__content {
    margin-left: 1rem;
    padding-block: 3rem 2.5rem;
  }

  .pgp-work-hero {
    min-height: min(48vh, 24rem);
  }

  .pgp-work-hero__content {
    padding-block: 2.75rem 2.25rem;
  }

  .woocommerce div.product {
    display: grid;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .pgp-header .pgp-container,
  .pgp-main--shop > .pgp-container {
    width: min(100% - 2.5rem, 60rem);
    padding-left: 0.35rem;
  }

  .pgp-main--shop .woocommerce ul.products,
  body.woocommerce-shop ul.products,
  body.post-type-archive-product ul.products,
  body.tax-product_cat ul.products {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .pgp-featured .woocommerce ul.products {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pgp-hero__content,
  .pgp-work-hero__content,
  .pgp-work-gallery__body {
    animation: none;
  }

  .pgp-main--shop .woocommerce ul.products li.product,
  .pgp-featured .woocommerce ul.products li.product {
    transition: none;
  }
}
