:root {
    --ps-ink: #171f1f;
    --ps-slate: #2f4f4f;
    --ps-mint: #8ccaaf;
    --ps-ice: #e0eae2;
    --ps-cream: #fffdd0;
    --ps-coral: #ff6b6b;
    --ps-gold: #d7b740;
    --ps-paper: #fbfcfa;
    --ps-white: #ffffff;
    --ps-line: rgba(23, 31, 31, 0.12);
    --ps-muted: rgba(23, 31, 31, 0.68);
    --ps-shadow: 0 18px 44px rgba(23, 31, 31, 0.12);
    --ps-radius: 8px;
    --ps-wrap: min(1180px, calc(100% - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body.proshop-nav-open {
    overflow: hidden;
}

body.proshop-ajg-theme {
    margin: 0;
    background: var(--ps-paper);
    color: var(--ps-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
}

body.proshop-ajg-theme a {
    color: inherit;
    text-decoration: none;
}

body.proshop-ajg-theme img {
    max-width: 100%;
    height: auto;
}

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

.skip-link:focus {
    position: fixed;
    z-index: 100000;
    top: 14px;
    left: 14px;
    padding: 10px 14px;
    background: var(--ps-ink);
    color: var(--ps-white);
    border-radius: var(--ps-radius);
}

.proshop-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 252, 250, 0.92);
    border-bottom: 1px solid var(--ps-line);
    backdrop-filter: blur(16px);
}

.proshop-site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(23, 31, 31, 0.08);
}

.proshop-header-inner {
    width: var(--ps-wrap);
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.proshop-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.proshop-brand-mark {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    color: var(--ps-ink);
    background: linear-gradient(135deg, var(--ps-mint), var(--ps-ice));
    border: 2px solid var(--ps-slate);
    border-radius: var(--ps-radius);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42), 0 8px 18px rgba(23, 31, 31, 0.12);
    font-weight: 950;
}

.proshop-brand-mark img,
.proshop-brand-mark .custom-logo-link {
    display: block;
    width: 100%;
    height: 100%;
}

.proshop-brand-mark img {
    object-fit: contain;
    padding: 7px;
}

.proshop-brand-text {
    display: grid;
    line-height: 1.05;
}

.proshop-brand-text strong {
    font-size: 1rem;
    font-weight: 900;
}

.proshop-brand-text small {
    margin-top: 4px;
    color: var(--ps-muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.proshop-primary-nav .primary-menu,
.primary-menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.proshop-primary-nav .primary-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.proshop-primary-nav a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 13px;
    border-radius: var(--ps-radius);
    color: var(--ps-ink);
    font-weight: 800;
    font-size: 0.93rem;
}

.proshop-primary-nav a:hover,
.proshop-primary-nav a:focus-visible {
    background: var(--ps-ice);
    color: var(--ps-slate);
    outline: none;
}

.proshop-primary-nav .primary-menu,
.proshop-primary-nav .primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.proshop-primary-nav .primary-menu > .menu-item {
    position: relative;
}

.proshop-primary-nav .current-menu-item > a,
.proshop-primary-nav .current-menu-ancestor > a {
    background: var(--ps-mint);
    color: var(--ps-ink);
    box-shadow: inset 0 0 0 1px var(--ps-slate);
}

.proshop-primary-nav .menu-item-has-children > a {
    gap: 7px;
}

.proshop-primary-nav .menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

.proshop-primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 80;
    min-width: 248px;
    display: grid;
    gap: 4px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.proshop-primary-nav .menu-item-has-children:hover > .sub-menu,
.proshop-primary-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.proshop-primary-nav .sub-menu::before {
    content: "";
    position: absolute;
    left: 18px;
    top: -6px;
    width: 12px;
    height: 12px;
    background: var(--ps-white);
    border-left: 1px solid var(--ps-line);
    border-top: 1px solid var(--ps-line);
    transform: rotate(45deg);
}

.proshop-primary-nav .sub-menu a {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
    padding: 0 12px;
    color: var(--ps-ink);
    font-size: 0.9rem;
    font-weight: 850;
}

.proshop-primary-nav .sub-menu a:hover,
.proshop-primary-nav .sub-menu a:focus-visible {
    background: var(--ps-ice);
    color: var(--ps-slate);
}

.proshop-primary-nav .proshop-submenu-heading a {
    background: var(--ps-slate);
    color: var(--ps-white);
}

.proshop-header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proshop-search,
.proshop-shop-search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 260px;
    padding: 6px;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 28px rgba(23, 31, 31, 0.08);
}

.proshop-search input,
.proshop-shop-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ps-ink);
    font: inherit;
}

.proshop-search button,
.proshop-shop-search button,
.proshop-tool-link,
.proshop-button,
.proshop-footer-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--ps-slate);
    border-radius: var(--ps-radius);
    background: var(--ps-slate);
    color: var(--ps-white);
    font-weight: 900;
    font-size: 0.92rem;
    line-height: 1.1;
    cursor: pointer;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.proshop-search button {
    width: 42px;
    padding: 0;
    color: transparent;
    position: relative;
    background: var(--ps-mint);
    border-color: var(--ps-slate);
}

.proshop-search button::before {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid var(--ps-ink);
    border-radius: 50%;
    position: absolute;
}

.proshop-search button::after {
    content: "";
    width: 8px;
    height: 2px;
    background: var(--ps-ink);
    position: absolute;
    transform: translate(8px, 8px) rotate(45deg);
    border-radius: 2px;
}

.proshop-tool-link:hover,
.proshop-button:hover,
.proshop-footer-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translateY(-1px);
    background: var(--ps-coral);
    border-color: var(--ps-coral);
    color: var(--ps-ink);
}

.proshop-account-link {
    width: 44px;
    padding: 0;
    position: relative;
    background: var(--ps-white);
    color: var(--ps-ink);
    border-color: var(--ps-line);
}

.proshop-account-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.proshop-account-link::before,
.proshop-account-link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid currentColor;
}

.proshop-account-link::before {
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.proshop-account-link::after {
    bottom: 9px;
    width: 20px;
    height: 11px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom: 0;
}

.proshop-cart-link {
    width: 50px;
    padding: 0;
    position: relative;
    background: var(--ps-gold);
    border-color: var(--ps-slate);
    color: var(--ps-ink);
}

.proshop-cart-link::before {
    content: "";
    width: 18px;
    height: 15px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    transform: translateY(2px);
}

.proshop-cart-link::after {
    content: "";
    position: absolute;
    top: 13px;
    width: 13px;
    height: 8px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.proshop-cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    z-index: 2;
    min-width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    padding: 0 7px;
    background: var(--ps-coral);
    color: var(--ps-ink);
    border: 2px solid var(--ps-white);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
}

.proshop-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    background: var(--ps-white);
}

.proshop-nav-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: var(--ps-ink);
    border-radius: 2px;
}

.proshop-hero {
    overflow: hidden;
    background: linear-gradient(135deg, var(--ps-paper), var(--ps-cream));
    border-bottom: 1px solid var(--ps-line);
}

.proshop-hero-inner {
    width: var(--ps-wrap);
    margin: 0 auto;
    min-height: 680px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 52px;
    padding: 72px 0 40px;
}

.proshop-eyebrow {
    margin: 0 0 16px;
    color: var(--ps-slate);
    font-weight: 900;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.proshop-hero h1,
.proshop-section-heading h2,
.proshop-trust-copy h2,
.proshop-page-header h1,
.proshop-shop-header h1,
.proshop-footer-band h2 {
    margin: 0;
    color: var(--ps-ink);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: 0;
    text-wrap: balance;
}

.proshop-hero h1 {
    max-width: 760px;
    font-size: 4.8rem;
    text-transform: uppercase;
}

.proshop-hero-lede {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--ps-muted);
    font-size: 1.16rem;
    line-height: 1.45;
}

.proshop-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.proshop-button {
    min-height: 54px;
    padding: 0 22px;
    font-size: 1rem;
}

.proshop-button--primary {
    background: var(--ps-mint);
    border-color: var(--ps-slate);
    color: var(--ps-ink);
    box-shadow: 0 14px 26px rgba(47, 79, 79, 0.16);
}

.proshop-button--secondary {
    background: var(--ps-white);
    color: var(--ps-ink);
    border-color: var(--ps-line);
}

.proshop-hero-stage {
    position: relative;
    min-height: 510px;
    display: grid;
    align-items: end;
}

.proshop-hero-stage::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 46px;
    width: 82%;
    height: 70%;
    background: linear-gradient(145deg, var(--ps-mint), var(--ps-coral));
    border-radius: var(--ps-radius);
    transform: skew(-6deg);
    opacity: 0.9;
}

.proshop-hero-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-self: center;
    width: min(520px, 100%);
    margin: 0 auto;
    padding: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow);
    backdrop-filter: blur(16px);
}

.proshop-hero-tile {
    min-height: 210px;
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(112px, 1fr) auto;
    gap: 10px;
    padding: 12px;
    overflow: hidden;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    color: var(--ps-ink);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.proshop-hero-tile:hover,
.proshop-hero-tile:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(23, 31, 31, 0.14);
    outline: none;
}

.proshop-hero-tile--1 {
    grid-row: span 2;
    min-height: 438px;
    background: linear-gradient(145deg, var(--ps-ice), var(--ps-white));
}

.proshop-hero-tile__badge {
    width: max-content;
    max-width: 100%;
    padding: 6px 8px;
    background: var(--ps-gold);
    color: var(--ps-ink);
    border-radius: var(--ps-radius);
    font-size: 0.7rem;
    font-weight: 950;
    text-transform: uppercase;
}

.proshop-hero-tile__media {
    display: grid;
    place-items: center;
    min-height: 0;
}

.proshop-hero-tile__media img {
    width: 100%;
    max-height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 14px 18px rgba(23, 31, 31, 0.12));
}

.proshop-hero-tile--1 .proshop-hero-tile__media img {
    max-height: 292px;
}

.proshop-hero-tile__copy {
    display: grid;
    gap: 6px;
}

.proshop-hero-tile__copy strong {
    color: var(--ps-ink);
    font-size: 0.95rem;
    font-weight: 950;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.proshop-hero-tile__copy em {
    color: var(--ps-slate);
    font-style: normal;
    font-weight: 950;
}

.proshop-hero-product {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    justify-items: center;
}

.proshop-hero-product__image {
    display: grid;
    place-items: end center;
    width: min(460px, 100%);
    min-height: 440px;
}

.proshop-hero-product__image img {
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(23, 31, 31, 0.18));
}

.proshop-hero-product__placeholder {
    width: min(420px, 100%);
    min-height: 420px;
    display: grid;
    place-items: center;
    background: var(--ps-ink);
    color: var(--ps-ice);
    border-radius: var(--ps-radius);
    font-size: 3rem;
    font-weight: 950;
}

.proshop-hero-product__details,
.proshop-offer-card {
    position: absolute;
    left: -26px;
    bottom: 56px;
    width: min(250px, 72%);
    padding: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-shadow);
}

.proshop-hero-product__details span,
.proshop-offer-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--ps-coral);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.proshop-hero-product__details strong,
.proshop-offer-card strong {
    display: block;
    color: var(--ps-ink);
    font-size: 1rem;
    line-height: 1.18;
}

.proshop-hero-product__details em {
    display: block;
    margin-top: 10px;
    color: var(--ps-slate);
    font-style: normal;
    font-weight: 900;
}

.proshop-offer-card {
    left: auto;
    right: -8px;
    bottom: auto;
    top: 90px;
    width: 196px;
}

.proshop-offer-card a {
    display: inline-flex;
    margin-top: 14px;
    color: var(--ps-slate);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.proshop-hero-stats {
    width: var(--ps-wrap);
    margin: -24px auto 0;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    background: var(--ps-line);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius) var(--ps-radius) 0 0;
    box-shadow: var(--ps-shadow);
}

.proshop-hero-stats div {
    min-height: 112px;
    display: grid;
    align-content: center;
    padding: 20px 24px;
    background: var(--ps-white);
}

.proshop-hero-stats strong {
    color: var(--ps-ink);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.proshop-hero-stats span {
    margin-top: 8px;
    color: var(--ps-muted);
    font-weight: 800;
}

.proshop-section,
.proshop-page-shell,
.proshop-shop-shell {
    width: var(--ps-wrap);
    margin: 0 auto;
    padding: 76px 0;
}

.proshop-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.proshop-section-heading h2,
.proshop-trust-copy h2,
.proshop-page-header h1,
.proshop-shop-header h1,
.proshop-footer-band h2 {
    font-size: 3rem;
}

.proshop-section-heading a,
.proshop-text-link {
    color: var(--ps-slate);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.proshop-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.proshop-collection-card {
    position: relative;
    min-height: 220px;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    padding: 20px;
    background: var(--ps-ink);
    color: var(--ps-white);
    border: 1px solid transparent;
    border-radius: var(--ps-radius);
    box-shadow: 0 14px 34px rgba(23, 31, 31, 0.12);
}

.proshop-collection-card--2 {
    background: var(--ps-slate);
}

.proshop-collection-card--3 {
    background: var(--ps-coral);
    color: var(--ps-ink);
}

.proshop-collection-card:hover,
.proshop-collection-card:focus-visible {
    transform: translateY(-2px);
    outline: none;
    border-color: var(--ps-gold);
}

.proshop-collection-card__count {
    width: max-content;
    max-width: 100%;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--ps-radius);
    font-size: 0.82rem;
    font-weight: 900;
}

.proshop-collection-card strong {
    position: relative;
    z-index: 2;
    max-width: 260px;
    font-size: 1.55rem;
    font-weight: 950;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.proshop-collection-card__image,
.proshop-collection-card__mark {
    position: absolute;
    right: 14px;
    bottom: 10px;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 6rem;
    font-weight: 950;
    line-height: 1;
}

.proshop-collection-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proshop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.proshop-product-card,
.woocommerce ul.products li.product {
    overflow: hidden;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 30px rgba(23, 31, 31, 0.08);
}

.proshop-product-card__media,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
    min-height: 252px;
    display: grid;
    place-items: center;
    padding: 22px;
    background: linear-gradient(145deg, var(--ps-ice), var(--ps-white));
}

.proshop-product-card__image,
.woocommerce ul.products li.product img {
    width: 100%;
    max-height: 216px;
    object-fit: contain;
    transition: transform 180ms ease;
}

.proshop-product-card:hover .proshop-product-card__image,
.woocommerce ul.products li.product:hover img {
    transform: scale(1.03);
}

.proshop-product-card__badge,
.woocommerce span.onsale {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    min-height: auto;
    min-width: 0;
    padding: 6px 9px;
    background: var(--ps-gold);
    color: var(--ps-ink);
    border-radius: var(--ps-radius);
    font-size: 0.75rem;
    font-weight: 950;
    line-height: 1;
}

.proshop-product-card__body {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.proshop-product-card__category {
    color: var(--ps-slate);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.proshop-product-card__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    margin: 0;
    min-height: 48px;
    color: var(--ps-ink);
    font-size: 1rem;
    font-weight: 950;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.proshop-product-card__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
}

.proshop-product-card__price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--ps-slate);
    font-weight: 950;
    font-size: 1.02rem;
}

.proshop-product-card__button,
.woocommerce ul.products li.product .button {
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: 0 12px;
    font-size: 0.86rem;
    white-space: normal;
    text-align: center;
}

.proshop-section--trust {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 30px;
    padding: 36px;
    background: var(--ps-ink);
    color: var(--ps-white);
    border-radius: var(--ps-radius);
}

.proshop-section--trust h2,
.proshop-section--trust .proshop-eyebrow {
    color: var(--ps-white);
}

.proshop-trust-copy p:last-child {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.78);
}

.proshop-trust-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.proshop-trust-list div {
    min-height: 150px;
    display: grid;
    align-content: end;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--ps-radius);
}

.proshop-trust-list strong {
    display: block;
    margin-bottom: 8px;
    color: var(--ps-mint);
    font-size: 1.08rem;
    font-weight: 950;
}

.proshop-trust-list span {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.proshop-page-header,
.proshop-shop-header {
    margin-bottom: 32px;
}

.proshop-page-header h1,
.proshop-shop-header h1 {
    max-width: 840px;
}

.proshop-page-content,
.proshop-post-card,
.proshop-empty-state {
    max-width: 960px;
    padding: 28px;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 30px rgba(23, 31, 31, 0.06);
}

.proshop-page-content > *:first-child,
.proshop-post-card > *:first-child {
    margin-top: 0;
}

.proshop-page-content a {
    color: var(--ps-slate);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.proshop-post-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.proshop-post-card h2 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.2;
}

.proshop-shop-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: end;
    padding: 34px;
    background: linear-gradient(135deg, var(--ps-ice), var(--ps-white));
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
}

.proshop-shop-header p,
.proshop-shop-description {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--ps-muted);
    font-weight: 700;
}

.proshop-shop-search {
    min-width: 0;
    box-shadow: none;
}

.proshop-woocommerce-content .woocommerce-result-count {
    color: var(--ps-muted);
    font-weight: 800;
}

.proshop-woocommerce-content .woocommerce-ordering select,
.woocommerce select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    min-height: 44px;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    background: var(--ps-white);
    color: var(--ps-ink);
    font: inherit;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0 0 !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 0 16px !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    margin-left: 16px;
    margin-right: 16px;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 34px;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 42px;
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 0 12px;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    background: var(--ps-white);
    color: var(--ps-ink);
    font-weight: 900;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: var(--ps-ink);
    color: var(--ps-white);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: start;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    width: auto !important;
    float: none !important;
}

.woocommerce div.product div.images {
    padding: 20px;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 30px rgba(23, 31, 31, 0.08);
}

.woocommerce div.product div.images img {
    border-radius: var(--ps-radius);
}

.woocommerce div.product div.summary {
    padding: 28px;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 30px rgba(23, 31, 31, 0.08);
}

.woocommerce div.product .product_title {
    margin: 0 0 16px;
    color: var(--ps-ink);
    font-size: 2.65rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
}

.woocommerce div.product form.cart,
.woocommerce div.product form.cart .variations {
    margin-top: 22px;
}

.woocommerce div.product form.cart .button {
    min-height: 52px;
    padding: 0 22px;
    background: var(--ps-coral);
    color: var(--ps-ink);
    border-color: var(--ps-coral);
}

.woocommerce .quantity .qty {
    min-height: 52px;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 42px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    background: var(--ps-white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 12px 16px;
    color: var(--ps-ink);
    font-weight: 900;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--ps-ink);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--ps-white);
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce .cart-collaterals,
.woocommerce form.checkout,
.woocommerce table.shop_table,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
    padding: 24px;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 30px rgba(23, 31, 31, 0.06);
}

.woocommerce table.shop_table {
    border-collapse: separate;
    overflow: hidden;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    border-top: 0;
    border-radius: var(--ps-radius);
    background: var(--ps-ice);
    color: var(--ps-ink);
    font-weight: 800;
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--ps-slate);
}

.proshop-site-footer {
    margin-top: 40px;
    background: var(--ps-ink);
    color: var(--ps-white);
}

.proshop-footer-band,
.proshop-footer-inner,
.proshop-footer-bottom {
    width: var(--ps-wrap);
    margin: 0 auto;
}

.proshop-footer-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.proshop-footer-kicker {
    display: block;
    margin-bottom: 10px;
    color: var(--ps-mint);
    font-weight: 900;
    text-transform: uppercase;
}

.proshop-footer-band h2 {
    max-width: 720px;
    color: var(--ps-white);
}

.proshop-footer-button {
    background: var(--ps-mint);
    color: var(--ps-ink);
    border-color: var(--ps-mint);
    white-space: nowrap;
}

.proshop-footer-inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 28px;
    padding: 32px 0;
}

.proshop-footer-brand strong {
    font-size: 1.1rem;
    font-weight: 950;
}

.proshop-footer-brand p {
    max-width: 360px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-end;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.footer-menu a:hover {
    color: var(--ps-mint);
}

.proshop-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0 28px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.9rem;
    font-weight: 700;
}

.proshop-page-intro {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--ps-muted);
    font-weight: 700;
}

.proshop-page-content--wide {
    max-width: none;
}

.proshop-support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    align-items: start;
}

.proshop-support-cards {
    display: grid;
    gap: 12px;
}

.proshop-support-card,
.proshop-account-subscription,
.proshop-confirmation-panel {
    display: grid;
    gap: 8px;
    padding: 20px;
    background: var(--ps-white);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    box-shadow: 0 12px 30px rgba(23, 31, 31, 0.06);
}

.proshop-support-card strong,
.proshop-account-subscription summary,
.proshop-confirmation-panel h2 {
    color: var(--ps-ink);
    font-weight: 950;
}

.proshop-support-card span,
.proshop-confirmation-panel p {
    color: var(--ps-muted);
    font-weight: 700;
}

.proshop-support-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.proshop-form-row {
    display: grid;
    gap: 7px;
}

.proshop-form-row--full {
    grid-column: 1 / -1;
}

.proshop-form-row label {
    color: var(--ps-slate);
    font-weight: 900;
}

.proshop-form-row label span {
    color: var(--ps-coral);
}

.proshop-support-form input,
.proshop-support-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    background: var(--ps-paper);
    color: var(--ps-ink);
    font: inherit;
}

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

.proshop-support-form button {
    grid-column: 1 / -1;
    width: max-content;
}

.proshop-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.proshop-form-status {
    margin-bottom: 18px;
    padding: 12px 14px;
    background: var(--ps-ice);
    border: 1px solid var(--ps-line);
    border-radius: var(--ps-radius);
    color: var(--ps-ink);
    font-weight: 900;
}

.proshop-account-subscription {
    margin-top: 24px;
}

.proshop-account-subscription summary {
    cursor: pointer;
}

.proshop-assist-panel {
    min-height: 480px;
}

@media (max-width: 780px) {
    .proshop-support-layout,
    .proshop-support-form {
        grid-template-columns: 1fr;
    }

    .proshop-support-form button {
        width: 100%;
    }
}

@media (max-width: 1120px) {
    .proshop-header-inner {
        grid-template-columns: auto auto 1fr;
        gap: 14px;
    }

    .proshop-nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .proshop-primary-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        display: none;
        padding: 12px;
        background: var(--ps-white);
        border: 1px solid var(--ps-line);
        border-radius: var(--ps-radius);
        box-shadow: var(--ps-shadow);
    }

    .proshop-primary-nav.is-open {
        display: block;
    }

    .proshop-primary-nav .primary-menu {
        display: grid;
        justify-content: stretch;
        gap: 6px;
    }

    .proshop-primary-nav a {
        justify-content: space-between;
    }

    .proshop-primary-nav .sub-menu {
        position: static;
        min-width: 0;
        margin: 2px 0 8px 12px;
        padding: 8px;
        background: var(--ps-paper);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .proshop-primary-nav .sub-menu::before {
        display: none;
    }

    .proshop-primary-nav .sub-menu a {
        min-height: 40px;
    }

    .proshop-header-tools {
        justify-content: end;
    }

    .proshop-search {
        min-width: 220px;
    }

    .proshop-hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .proshop-hero h1 {
        font-size: 4rem;
    }

    .proshop-hero-stage {
        min-height: 430px;
    }

    .proshop-product-grid,
    .woocommerce ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .proshop-section--trust,
    .woocommerce div.product {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    :root {
        --ps-wrap: min(100% - 28px, 1180px);
    }

    .proshop-header-inner {
        min-height: 72px;
        grid-template-columns: auto auto;
    }

    .proshop-brand-text small {
        display: none;
    }

    .proshop-header-tools {
        grid-column: 1 / -1;
        width: 100%;
        padding-bottom: 12px;
    }

    .proshop-search {
        flex: 1;
        min-width: 0;
    }

    .proshop-cart-link {
        min-width: 84px;
    }

    .proshop-hero-inner {
        padding: 44px 0 24px;
        gap: 28px;
    }

    .proshop-hero h1,
    .proshop-section-heading h2,
    .proshop-trust-copy h2,
    .proshop-page-header h1,
    .proshop-shop-header h1,
    .proshop-footer-band h2 {
        font-size: 2.7rem;
    }

    .proshop-hero-lede {
        font-size: 1.02rem;
    }

    .proshop-hero-actions,
    .proshop-footer-band,
    .proshop-footer-inner,
    .proshop-footer-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .proshop-button,
    .proshop-footer-button {
        width: 100%;
    }

    .proshop-hero-stage {
        min-height: 360px;
    }

    .proshop-hero-stage::before {
        width: 100%;
        height: 72%;
        right: 0;
        bottom: 36px;
    }

    .proshop-hero-board {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        padding: 12px;
    }

    .proshop-hero-tile,
    .proshop-hero-tile--1 {
        min-height: 192px;
        grid-row: auto;
    }

    .proshop-hero-tile__media img,
    .proshop-hero-tile--1 .proshop-hero-tile__media img {
        max-height: 118px;
    }

    .proshop-hero-product__image {
        min-height: 320px;
    }

    .proshop-hero-product__image img {
        max-height: 330px;
    }

    .proshop-hero-product__details,
    .proshop-offer-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        margin-top: -18px;
    }

    .proshop-hero-stats,
    .proshop-collection-grid,
    .proshop-product-grid,
    .proshop-trust-list,
    .proshop-post-list,
    .proshop-shop-header,
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .proshop-hero-stats {
        margin-top: 0;
    }

    .proshop-section,
    .proshop-page-shell,
    .proshop-shop-shell {
        padding: 48px 0;
    }

    .proshop-section-heading {
        display: grid;
        align-items: start;
        gap: 12px;
    }

    .proshop-section--trust,
    .proshop-shop-header,
    .proshop-page-content,
    .proshop-post-card,
    .proshop-empty-state,
    .woocommerce div.product div.summary,
    .woocommerce div.product .woocommerce-tabs .panel,
    .woocommerce .cart-collaterals,
    .woocommerce form.checkout,
    .woocommerce table.shop_table,
    .woocommerce-MyAccount-navigation,
    .woocommerce-MyAccount-content {
        padding: 20px;
    }

    .woocommerce div.product .product_title {
        font-size: 2rem;
    }

    .footer-menu {
        justify-content: flex-start;
    }
}
