
/* PRESIDENTSHOP TYPOGRAPHY START */

@font-face {
    font-family: "Commissioner";
    src: url("../fonts/commissioner-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Commissioner";
    src: url("../fonts/commissioner-semibold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

:root {
    --presi-font-primary: "Commissioner", system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html,
body,
button,
input,
select,
textarea {
    font-family: var(--presi-font-primary);
}

body {
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
button,
.button,
.wp-element-button,
.main-navigation {
    font-weight: 600;
}

/* PRESIDENTSHOP TYPOGRAPHY END */

/* PRESIDENTSHOP TYPOGRAPHY SCALE START */

:root {
    /*
     * Responsive typography.
     * Commissioner is available only in 400 and 600.
     */
    --presi-text-xs: 0.8125rem;
    --presi-text-sm: 0.875rem;
    --presi-text-base: 1rem;
    --presi-text-md: 1.0625rem;
    --presi-text-lg: 1.125rem;

    --presi-heading-1: clamp(2rem, 1.45rem + 2.35vw, 3rem);
    --presi-heading-2: clamp(1.625rem, 1.28rem + 1.45vw, 2.25rem);
    --presi-heading-3: clamp(1.3125rem, 1.14rem + 0.72vw, 1.625rem);
    --presi-heading-4: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);

    --presi-product-title: 0.9375rem;
    --presi-product-price: 1.0625rem;
    --presi-button-text: 0.875rem;

    --presi-line-body: 1.6;
    --presi-line-heading: 1.18;
    --presi-line-compact: 1.35;

    --presi-weight-regular: 400;
    --presi-weight-semibold: 600;
}

/* Base text */

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-size: var(--presi-text-base);
    font-weight: var(--presi-weight-regular);
    line-height: var(--presi-line-body);
    text-rendering: optimizeLegibility;
}

p,
ul,
ol,
dl {
    line-height: inherit;
}

small,
.presi-text-small {
    font-size: var(--presi-text-sm);
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-block-start: 0;
    font-weight: var(--presi-weight-semibold);
    line-height: var(--presi-line-heading);
    letter-spacing: -0.018em;
}

h1 {
    font-size: var(--presi-heading-1);
}

h2 {
    font-size: var(--presi-heading-2);
}

h3 {
    font-size: var(--presi-heading-3);
}

h4 {
    font-size: var(--presi-heading-4);
}

h5 {
    font-size: var(--presi-text-lg);
}

h6 {
    font-size: var(--presi-text-base);
}

/* Navigation */

.main-navigation,
.main-navigation a {
    font-size: var(--presi-text-sm);
    font-weight: var(--presi-weight-semibold);
    line-height: var(--presi-line-compact);
    letter-spacing: 0.01em;
}

/* WooCommerce product cards */

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: var(--presi-product-title);
    font-weight: var(--presi-weight-semibold);
    line-height: var(--presi-line-compact);
    letter-spacing: -0.005em;
}

.woocommerce ul.products li.product .price {
    font-size: var(--presi-product-price);
    font-weight: var(--presi-weight-semibold);
    line-height: var(--presi-line-compact);
}

/* Single product */

.single-product .product_title {
    font-size: calc(clamp(1.75rem, 1.3rem + 1.9vw, 2.625rem) - 4px);
    font-weight: var(--presi-weight-semibold);
    line-height: var(--presi-line-heading);
    letter-spacing: -0.02em;
}

.single-product div.product p.price,
.single-product div.product span.price {
    font-size: clamp(1.25rem, 1.1rem + 0.65vw, 1.5rem);
    font-weight: var(--presi-weight-semibold);
    line-height: var(--presi-line-compact);
}

/* Buttons */

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.wp-element-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    font-size: var(--presi-button-text);
    font-weight: var(--presi-weight-semibold);
    line-height: 1;
    letter-spacing: 0.01em;
}

/*
 * Keep form controls at 16px minimum.
 * This prevents automatic zoom on iPhone.
 */
input,
select,
textarea {
    font-size: 1rem;
    line-height: var(--presi-line-compact);
}

/* Utility classes */

.presi-text-xs {
    font-size: var(--presi-text-xs);
}

.presi-text-sm {
    font-size: var(--presi-text-sm);
}

.presi-text-base {
    font-size: var(--presi-text-base);
}

.presi-text-lg {
    font-size: var(--presi-text-lg);
}

/* PRESIDENTSHOP TYPOGRAPHY SCALE END */


/* PRESI GLOBAL SALE PRICES START */

/*
 * Global WooCommerce sale-price presentation.
 *
 * Old price:
 * - dark red
 * - fully opaque
 * - 10% smaller
 *
 * Sale price:
 * - black
 * - Commissioner SemiBold
 * - 8% larger
 */
.woocommerce .price del,
.woocommerce-page .price del,
.wc-block-grid__product-price del,
[class*="wp-block-woocommerce"] del,
.presi-cart-drawer del {
    color: #b00020;
    opacity: 1 !important;
    font-size: 0.9em !important;
    text-decoration-line: line-through;
    text-decoration-color: #b00020;
    text-decoration-thickness: 1.5px;
    text-decoration-skip-ink: auto;
}

.woocommerce .price del .woocommerce-Price-amount,
.woocommerce-page .price del .woocommerce-Price-amount,
.wc-block-grid__product-price del .woocommerce-Price-amount,
[class*="wp-block-woocommerce"] del .woocommerce-Price-amount,
.presi-cart-drawer del .woocommerce-Price-amount {
    color: #b00020;
    font-size: inherit !important;
    font-weight: 400;
}

.woocommerce .price ins,
.woocommerce-page .price ins,
.wc-block-grid__product-price ins,
[class*="wp-block-woocommerce"] ins,
.presi-cart-drawer ins {
    color: #000;
    background: transparent;
    font-size: 1.08em !important;
    font-weight: 600;
    text-decoration: none;
}

.woocommerce .price ins .woocommerce-Price-amount,
.woocommerce-page .price ins .woocommerce-Price-amount,
.wc-block-grid__product-price ins .woocommerce-Price-amount,
[class*="wp-block-woocommerce"] ins .woocommerce-Price-amount,
.presi-cart-drawer ins .woocommerce-Price-amount {
    color: #000;
    font-size: inherit !important;
    font-weight: 600;
}

/* Black separator between old and sale prices. */
.woocommerce .price ins::before,
.woocommerce-page .price ins::before,
.wc-block-grid__product-price ins::before,
[class*="wp-block-woocommerce"] ins::before,
.presi-cart-drawer ins::before {
    content: " | ";
    color: #000;
    font-size: 0.9em;
    font-weight: 400;
    line-height: inherit;
    white-space: pre;
    text-decoration: none;
}

/*
 * GP Premium loads after the child-theme CSS and adds 10px
 * right padding to old prices inside product grids.
 */
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
    padding-right: 0 !important;
    margin-right: 0 !important;
}

/*
 * Product-grid markup already provides the leading whitespace.
 */
.woocommerce ul.products li.product .price ins::before,
.woocommerce-page ul.products li.product .price ins::before,
.wc-block-grid__product-price ins::before,
.wc-block-product .wc-block-components-product-price ins::before {
    content: "| ";
}

/* PRESI GLOBAL SALE PRICES END */

/* PRESI DISCOUNT BADGE CSS START */

/* Shared non-interactive discount badge. */
.presi-discount-badge {
    display: inline-flex;
    min-height: 24px;
    padding: 4px 10px;
    align-items: center;
    justify-content: center;

    color: #fff;
    background: #b00020;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgb(0 0 0 / 13%);

    font-family: "Commissioner", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.005em;
    text-align: center;
    white-space: nowrap;
}

/* Single product: native price and badge on the same row. */
.single-product .presi-single-price-row {
    display: flex;
    margin: 0 0 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.single-product .presi-single-price-row .price {
    margin: 0;
}

/* Product grids: centered below the price. */
.woocommerce ul.products li.product .presi-loop-discount {
    display: flex;
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    text-align: center;
}

@media (max-width: 768px) {
    .presi-discount-badge {
        min-height: 22px;
        padding: 3px 8px;
        font-size: 0.6875rem;
    }

    .single-product .presi-single-price-row {
        gap: 8px;
    }

    .woocommerce ul.products li.product
    .presi-loop-discount {
        margin-top: 6px;
    }
}

/* PRESI DISCOUNT BADGE CSS END */

/* PRESI PRODUCT CARDS START */

/*
 * Shared card styling for classic WooCommerce loops
 * and native WooCommerce product blocks.
 */
.woocommerce ul.products li.product,
.wc-block-grid__product,
.wc-block-product {
    position: relative;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 4%);

    overflow: hidden;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

/* Keep product links and content within the card width. */
.woocommerce ul.products li.product
.woocommerce-LoopProduct-link,
.wc-block-grid__product-link,
.wc-block-components-product-image {
    width: 100%;
    box-sizing: border-box;
}

/* Subtle image finishing without excessive rounding. */
.woocommerce ul.products li.product img,
.wc-block-grid__product img,
.wc-block-product img {
    border-radius: 1px;
}

/* Keyboard users receive the same visual indication as hover. */
.woocommerce ul.products li.product:focus-within,
.wc-block-grid__product:focus-within,
.wc-block-product:focus-within {
    border-color: #bdbdbd;
    box-shadow:
        0 0 0 2px rgb(0 0 0 / 6%),
        0 4px 14px rgb(0 0 0 / 7%);
}

/* Hover effects only on devices that actually support hover. */
@media (hover: hover) and (pointer: fine) {
    .woocommerce ul.products li.product:hover,
    .wc-block-grid__product:hover,
    .wc-block-product:hover {
        border-color: #c9c9c9;
        box-shadow: 0 4px 14px rgb(0 0 0 / 7%);
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products li.product,
    .wc-block-grid__product,
    .wc-block-product {
        padding: 8px;
        box-shadow: 0 1px 6px rgb(0 0 0 / 4%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .woocommerce ul.products li.product,
    .wc-block-grid__product,
    .wc-block-product {
        transition: none;
    }
}




/* PRESI PRODUCT CARD TITLE ALIGNMENT START */

/*
 * Keep product titles at a consistent two-line height.
 * Product images remain completely native and untouched.
 */
.woocommerce ul.products li.product
.woocommerce-loop-product__title,
.wc-block-grid__product-title,
.wc-block-product
.wc-block-components-product-name {
    display: -webkit-box;
    min-height: 2.5em;
    margin-top: 12px;
    margin-bottom: 0;

    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* PRESI PRODUCT CARD TITLE ALIGNMENT END */

/* PRESI PRODUCT CARDS END */



/* PRESI PRODUCT GRID TYPOGRAPHY START */

/*
 * Product-card typography only.
 * The main title and price of single product pages are not targeted.
 */
@media (min-width: 769px) {
    .woocommerce ul.products li.product
    .woocommerce-loop-product__title,
    .wc-block-grid__product-title,
    .wc-block-product
    .wc-block-components-product-name {
        font-size: calc(
            var(--presi-product-title) + 2px
        );
    }

    .woocommerce ul.products li.product .price,
    .wc-block-grid__product-price,
    .wc-block-product
    .wc-block-components-product-price {
        font-size: calc(
            var(--presi-product-price) + 2px
        );
    }
}

@media (max-width: 768px) {
    .woocommerce ul.products li.product
    .woocommerce-loop-product__title,
    .wc-block-grid__product-title,
    .wc-block-product
    .wc-block-components-product-name {
        font-size: calc(
            var(--presi-product-title) + 3px
        );
    }

    .woocommerce ul.products li.product .price,
    .wc-block-grid__product-price,
    .wc-block-product
    .wc-block-components-product-price {
        font-size: calc(
            var(--presi-product-price) + 3px
        );
    }
}

/* PRESI PRODUCT GRID TYPOGRAPHY END */

/* PRESI GLOBAL ACTION BUTTONS START */

/*
 * Shared action-button design.
 *
 * Icon-only header, drawer and navigation controls are intentionally
 * excluded so their specialized styling remains unaffected.
 */
body.woocommerce .site-content a.button,
body.woocommerce .site-content button.button,
body.woocommerce .site-content input.button,
body.woocommerce .site-content #respond input#submit,
body.woocommerce .site-content a.button.alt,
body.woocommerce .site-content button.button.alt,
body.woocommerce .site-content input.button.alt,
body.woocommerce .site-content button.single_add_to_cart_button,
body.woocommerce-page .site-content a.button,
body.woocommerce-page .site-content button.button,
body.woocommerce-page .site-content input.button,
body .wc-block-components-button,
body .wp-block-button .wp-block-button__link,
body input[type="submit"]:not(.search-submit),
body .presi-button {
    display: inline-flex;
    min-height: 44px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid #111;
    border-radius: 3px;
    background: #111;
    box-shadow: 0 3px 8px rgb(0 0 0 / 14%);
    color: #fff;
    font-family: Commissioner, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

body.woocommerce .site-content a.button:hover,
body.woocommerce .site-content button.button:hover,
body.woocommerce .site-content input.button:hover,
body.woocommerce .site-content #respond input#submit:hover,
body.woocommerce .site-content a.button.alt:hover,
body.woocommerce .site-content button.button.alt:hover,
body.woocommerce .site-content input.button.alt:hover,
body.woocommerce .site-content button.single_add_to_cart_button:hover,
body.woocommerce-page .site-content a.button:hover,
body.woocommerce-page .site-content button.button:hover,
body.woocommerce-page .site-content input.button:hover,
body .wc-block-components-button:hover,
body .wp-block-button .wp-block-button__link:hover,
body input[type="submit"]:not(.search-submit):hover,
body .presi-button:hover {
    border-color: #000;
    background: #000;
    box-shadow: 0 4px 10px rgb(0 0 0 / 20%);
    color: #fff;
    transform: translateY(-1px);
}

body.woocommerce .site-content a.button:focus-visible,
body.woocommerce .site-content button.button:focus-visible,
body.woocommerce .site-content input.button:focus-visible,
body.woocommerce .site-content #respond input#submit:focus-visible,
body.woocommerce .site-content button.single_add_to_cart_button:focus-visible,
body.woocommerce-page .site-content a.button:focus-visible,
body.woocommerce-page .site-content button.button:focus-visible,
body.woocommerce-page .site-content input.button:focus-visible,
body .wc-block-components-button:focus-visible,
body .wp-block-button .wp-block-button__link:focus-visible,
body input[type="submit"]:not(.search-submit):focus-visible,
body .presi-button:focus-visible {
    outline: 2px solid #b00020;
    outline-offset: 3px;
    box-shadow: 0 4px 10px rgb(0 0 0 / 18%);
}

body.woocommerce .site-content a.button:active,
body.woocommerce .site-content button.button:active,
body.woocommerce .site-content input.button:active,
body.woocommerce .site-content button.single_add_to_cart_button:active,
body.woocommerce-page .site-content a.button:active,
body.woocommerce-page .site-content button.button:active,
body.woocommerce-page .site-content input.button:active,
body .wc-block-components-button:active,
body .wp-block-button .wp-block-button__link:active,
body input[type="submit"]:not(.search-submit):active,
body .presi-button:active {
    box-shadow: 0 2px 5px rgb(0 0 0 / 16%);
    transform: translateY(0);
}

body.woocommerce .site-content .button:disabled,
body.woocommerce .site-content .button.disabled,
body.woocommerce .site-content .button:disabled[disabled],
body.woocommerce-page .site-content .button:disabled,
body .wc-block-components-button:disabled,
body input[type="submit"]:disabled {
    border-color: #777;
    background: #777;
    box-shadow: none;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    body.woocommerce .site-content .button,
    body.woocommerce-page .site-content .button,
    body .wc-block-components-button,
    body .wp-block-button .wp-block-button__link,
    body input[type="submit"],
    body .presi-button {
        transition: none;
    }
}

/* PRESI GLOBAL ACTION BUTTONS END */

/* PRESI CUSTOM SITE FOOTER CSS START */

.presi-site-footer {
    width: 100%;
    margin: 0;
    background-color: #000;
    color: #f2f2f2;
}

.presi-site-footer,
.presi-site-footer * {
    box-sizing: border-box;
}

.presi-site-footer__container {
    width: 100%;
    max-width: 1320px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.presi-site-footer__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 0.9fr)
        minmax(0, 1fr)
        minmax(0, 1.2fr);
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 44px;
}

.presi-site-footer__column {
    min-width: 0;
    text-align: center;
}

.presi-site-footer__title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 11px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.presi-site-footer__title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 38px;
    transform: translateX(-50%);
    height: 2px;
    border-radius: 2px;
    background-color: #b00020;
    content: "";
}

.presi-site-footer__address {
    margin: 0;
    color: inherit;
    font-style: normal;
}

.presi-site-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.presi-site-footer__list li {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    padding: 5px 0;
    color: #ededed;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.presi-site-footer__emoji {
    display: inline-flex;
    flex: 0 0 22px;
    width: 22px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
}

.presi-site-footer a {
    color: #ededed;
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color 150ms ease;
}

.presi-site-footer a:hover {
    color: #fff;
}

.presi-site-footer a:focus-visible {
    border-radius: 2px;
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.presi-site-footer__links li {
    padding: 0;
}

.presi-site-footer__links a {
    display: flex;
    width: 100%;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.presi-site-footer__links li:last-child a {
    border-bottom: 0;
}

.presi-site-footer__links a::before {
    flex: 0 0 auto;
    margin-right: 8px;
    color: #b00020;
    content: "›";
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}





.presi-site-footer__map {
    width: 100%;
    text-align: center;
}

.presi-site-footer__map-frame {
    position: relative;
    width: 100%;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 2px;
    background-color: #080808;
    box-shadow:
        0 4px 15px rgba(255, 255, 255, 0.035);
}

.presi-site-footer__map-card {
    display: flex;
    width: 100%;
    min-height: 180px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 18px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(255, 255, 255, 0.09),
            transparent 48%
        ),
        #080808;
}

.presi-site-footer__map-card:hover {
    color: #fff;
    background:
        radial-gradient(
            circle at 50% 25%,
            rgba(255, 255, 255, 0.13),
            transparent 50%
        ),
        #080808;
}

.presi-site-footer__map-card svg {
    width: 27px;
    height: 27px;
    margin-bottom: 2px;
    overflow: visible;
    fill: none;
    stroke: #e32745;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-site-footer__map-card strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.presi-site-footer__map-card > span:not(
    .presi-site-footer__map-action
) {
    color: #d9d9d9;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.presi-site-footer__map-action {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.presi-site-footer__map-frame iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: 0;
}


.presi-site-footer__rating {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
    color: #f5b301;
    line-height: 1;
}

.presi-site-footer__rating span {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow:
        0 1px 5px rgba(245, 179, 1, 0.24);
}

.presi-site-footer__directions {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 6px;
    padding: 5px 8px;
    color: #ededed;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.presi-site-footer__directions span {
    color: #e32745;
    font-size: 14px;
}

.presi-site-footer__hours {
    margin: 0;
}

.presi-site-footer__hours > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.presi-site-footer__hours dt,
.presi-site-footer__hours dd {
    margin: 0;
    color: #ededed;
    font-size: 14px;
    line-height: 1.45;
}

.presi-site-footer__hours dt {
    font-weight: 600;
}

.presi-site-footer__hours dd {
    flex: 0 0 auto;
    font-weight: 400;
    text-align: center;
}

.presi-site-footer__hours-note {
    margin: 14px 0 0;
    color: #cfcfcf;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;
}

.presi-site-footer__hours-note span {
    color: #e32745;
    font-weight: 600;
}

.presi-site-footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #000;
    box-shadow:
        0 -4px 14px rgba(255, 255, 255, 0.045);
}

.presi-site-footer__copyright p {
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    color: #d8d8d8;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

/* Tablet */
@media (max-width: 1024px) {
    .presi-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
        padding-top: 42px;
        padding-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .presi-site-footer__container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .presi-site-footer__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        padding-top: 36px;
        padding-bottom: 34px;
    }

    .presi-site-footer__title {
        margin-bottom: 15px;
        font-size: 15px;
    }

    .presi-site-footer__list li,
    .presi-site-footer__hours dt,
    .presi-site-footer__hours dd {
        font-size: 14px;
    }

    .presi-site-footer__links a {
        min-height: 44px;
    }

    .presi-site-footer__copyright p {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

/* PRESI CUSTOM SITE FOOTER CSS END */

/* PRESI STICKY FOOTER LAYOUT START */

/*
 * Keep the footer at the bottom of short pages without making it fixed.
 *
 * #page expands only when the page content is shorter than the viewport.
 * On normal long pages the document continues to flow naturally.
 */
html {
    min-height: 100%;
}

body {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
}

body > #page {
    width: 100%;
    flex: 1 0 auto;
    padding-bottom: 48px;
    box-sizing: border-box;
}

body > .presi-site-footer {
    flex: 0 0 auto;
}

/* Slightly smaller separation on mobile. */
@media (max-width: 768px) {
    body > #page {
        padding-bottom: 32px;
    }
}

/* PRESI STICKY FOOTER LAYOUT END */

/* PRESI FAQ PAGE CSS START */

.presi-faq-page {
    width: 100%;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 24px;
    padding-bottom: 20px;
    text-align: center;
}

.presi-faq-page,
.presi-faq-page * {
    box-sizing: border-box;
}

.presi-faq-page__header {
    max-width: 720px;
    margin: 0 auto 34px;
}

.presi-faq-page__eyebrow {
    margin: 0 0 7px;
    color: #b00020;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.12em;
}

.presi-faq-page__header h2 {
    margin: 0 0 10px;
    color: #000;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.2;
}

.presi-faq-page__header > p:last-child {
    margin: 0;
    color: #444;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.presi-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.presi-faq-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 285px;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    padding: 30px 26px 27px;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 2px;
    background-color: #fff;
    box-shadow:
        0 5px 17px rgba(0, 0, 0, 0.055);
}

.presi-faq-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: #b00020;
    content: "";
    opacity: 0.85;
}

.presi-faq-card__icon {
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    border-radius: 50%;
    background-color: #000;
    box-shadow:
        0 3px 10px rgba(0, 0, 0, 0.14);
}

.presi-faq-card__icon::before {
    display: block;
    width: 22px;
    height: 22px;
    margin: 12px;
    content: "";
    background-color: #fff;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
}

/* Shopping bag */
.presi-faq-card--order
.presi-faq-card__icon::before {
    -webkit-mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 8h14l-1 12H6L5 8Zm4 0V6a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 8h14l-1 12H6L5 8Zm4 0V6a3 3 0 0 1 6 0v2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Payment card */
.presi-faq-card--payment
.presi-faq-card__icon::before {
    -webkit-mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3 9h18M7 15h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M3 9h18M7 15h4' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* Delivery truck */
.presi-faq-card--delivery
.presi-faq-card__icon::before {
    -webkit-mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h11v11H3V6Zm11 4h4l3 3v4h-7v-7ZM7 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 6h11v11H3V6Zm11 4h4l3 3v4h-7v-7ZM7 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm10 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Product exchange */
.presi-faq-card--exchange
.presi-faq-card__icon::before {
    -webkit-mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 8h13l-3-3m3 3-3 3M20 16H7l3 3m-3-3 3-3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 8h13l-3-3m3 3-3 3M20 16H7l3 3m-3-3 3-3' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.presi-faq-card h2 {
    margin: 0 0 11px;
    color: #000;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.presi-faq-card p {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;
}

.presi-faq-card a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(176, 0, 32, 0.5);
    text-underline-offset: 3px;
}

.presi-faq-card a:hover {
    color: #b00020;
}

.presi-faq-card a:focus-visible {
    border-radius: 2px;
    outline: 2px solid #000;
    outline-offset: 3px;
}

.presi-faq-card__phones {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.presi-faq-card__phones a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
}


/* PRESI FAQ PHONE ICONS START */

.presi-faq-card__phone {
    display: inline-flex;
    min-width: 112px;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    text-align: center;
}

/*
 * Override the earlier generic phone-link touch height.
 * The combined icon and number remain an adequately sized target.
 */
.presi-faq-card__phones
.presi-faq-card__phone {
    min-height: 0;
    padding-top: 2px;
    padding-bottom: 2px;
}

.presi-faq-card__phone::before {
    display: block;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    content: "";
    background-color: #000;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
}

/* Landline telephone */
.presi-faq-card__phone--landline::before {
    -webkit-mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.7 3.4 3.2 4.9 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 3.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.2Z' fill='black'/%3E%3C/svg%3E");
    mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.7 3.4 3.2 4.9 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.3 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.7 21 3 13.3 3 3.7c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1l-2.2 2.2Z' fill='black'/%3E%3C/svg%3E");
}

/* Mobile telephone */
.presi-faq-card__phone--mobile::before {
    -webkit-mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='2' width='12' height='20' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M10 5h4M11 19h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6' y='2' width='12' height='20' rx='2' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M10 5h4M11 19h2' fill='none' stroke='black' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* PRESI FAQ PHONE ICONS END */

.presi-faq-card__phones span {
    color: #b00020;
}

.presi-faq-card__note {
    margin-top: 13px !important;
    padding-top: 12px;
    border-top: 1px solid #dedede;
    color: #666 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}








@media (max-width: 768px) {
    .presi-faq-page {
        padding-top: 15px;
        padding-bottom: 8px;
    }

    .presi-faq-page__header {
        margin-bottom: 24px;
    }

    .presi-faq-page__header h2 {
        font-size: 25px;
    }

    .presi-faq-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .presi-faq-card {
        min-height: 0;
        padding: 25px 18px 23px;
    }

    .presi-faq-card h2 {
        font-size: 18px;
    }



}

/* PRESI FAQ PAGE CSS END */

/* PRESI CONTACT PAGE CSS START */

.presi-contact-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 0 40px;
    color: #111;
    text-align: center;
}

.presi-contact-page *,
.presi-contact-page *::before,
.presi-contact-page *::after {
    box-sizing: border-box;
}

.presi-contact-hero {
    max-width: 850px;
    margin: 0 auto 34px;
}

.presi-contact-hero__icon,
.presi-contact-card__icon,
.presi-contact-location__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.presi-contact-hero__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
}

.presi-contact-hero__icon svg,
.presi-contact-card__icon svg,
.presi-contact-location__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-contact-hero h1 {
    margin: 0 0 14px;
    color: #000;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    line-height: 1.15;
}

.presi-contact-hero p {
    margin: 0 auto 10px;
    font-size: 17px;
    line-height: 1.65;
}

.presi-contact-hero__lead {
    font-weight: 600;
}

.presi-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.presi-contact-card {
    padding: 28px 24px;
    overflow-wrap: anywhere;
    background: #fafafa;
    border: 1px solid #dedede;
    border-radius: 3px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.055);
}

.presi-contact-card__icon {
    width: 34px;
    height: 34px;
    margin-bottom: 9px;
}

.presi-contact-card h2,
.presi-contact-location h2 {
    margin: 0 0 18px;
    color: #000;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.presi-contact-card address {
    margin: 0 0 18px;
    font-style: normal;
    line-height: 1.6;
}

.presi-contact-card address p {
    margin: 0;
}

.presi-contact-links {
    display: grid;
    gap: 8px;
}

.presi-contact-links a {
    display: flex;
    min-height: 48px;
    padding: 8px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #000;
    text-decoration: none;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 2px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.presi-contact-links a:hover {
    border-color: #8c8c8c;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.07);
}

.presi-contact-links a:focus-visible,
.presi-contact-directions:focus-visible {
    outline: 3px solid #b00020;
    outline-offset: 3px;
}

.presi-contact-links span {
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

.presi-contact-links strong {
    font-size: 15px;
    font-weight: 700;
}

.presi-contact-hours {
    max-width: 430px;
    margin: 0 auto 17px;
}

.presi-contact-hours div {
    display: flex;
    min-height: 43px;
    padding: 8px 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #d7d7d7;
}

.presi-contact-hours dt,
.presi-contact-hours dd {
    margin: 0;
}

.presi-contact-hours dt {
    font-weight: 600;
}

.presi-contact-hours dd {
    color: #b00020;
    font-weight: 700;
}

.presi-contact-hours__note {
    max-width: 440px;
    margin: 0 auto;
    color: #444;
    font-size: 14px;
    line-height: 1.55;
}

.presi-contact-location {
    padding: 26px;
    background: #fafafa;
    border: 1px solid #dedede;
    border-radius: 3px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.055);
}

.presi-contact-location__header {
    margin-bottom: 18px;
}

.presi-contact-location__icon {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
}

.presi-contact-location h2 {
    margin-bottom: 6px;
}

.presi-contact-location__header p {
    margin: 0;
    font-weight: 600;
}

.presi-contact-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ededed;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    aspect-ratio: 16 / 6.7;
}

.presi-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.presi-contact-directions {
    display: inline-flex;
    min-height: 48px;
    margin-top: 18px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    background: #000;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    transition:
        transform 160ms ease,
        background-color 160ms ease;
}

.presi-contact-directions:hover {
    color: #fff;
    background: #202020;
    transform: translateY(-1px);
}

.presi-contact-directions svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .presi-contact-page {
        padding-top: 4px;
        padding-bottom: 28px;
    }

    .presi-contact-hero {
        margin-bottom: 25px;
    }

    .presi-contact-hero__icon {
        width: 42px;
        height: 42px;
    }

    .presi-contact-hero p {
        font-size: 15px;
        line-height: 1.6;
    }

    .presi-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .presi-contact-card,
    .presi-contact-location {
        padding: 21px 15px;
    }

    .presi-contact-card h2,
    .presi-contact-location h2 {
        font-size: 19px;
    }

    .presi-contact-links a {
        min-height: 52px;
        flex-direction: column;
        justify-content: center;
        gap: 1px;
    }

    .presi-contact-links strong {
        font-size: 14px;
    }

    .presi-contact-hours div {
        flex-direction: column;
        justify-content: center;
        gap: 2px;
    }

    .presi-contact-map {
        aspect-ratio: auto;
    }

    .presi-contact-map iframe {
        min-height: 360px;
    }

    .presi-contact-directions {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .presi-contact-links a,
    .presi-contact-directions {
        transition: none;
    }
}

/* PRESI CONTACT PAGE CSS END */



/* PRESI CONTACT DESKTOP ALIGNMENT START */

/*
 * Final contact-page alignment.
 *
 * Two equal primary cards on desktop.
 * Three vertically stacked and centered rows inside each card.
 */
@media (min-width: 769px) {
    .presi-contact-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 24px;
    }

    .presi-contact-card {
        display: flex;
        width: 100%;
        min-width: 0;
        height: 100%;
        padding: 28px 26px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .presi-contact-card > h2,
    .presi-contact-card > address {
        width: 100%;
        text-align: center;
    }

    .presi-contact-card > address {
        margin-bottom: 18px;
    }

    /*
     * Contact links are deliberately stacked.
     * This prevents the longer email address from breaking alignment.
     */
    .presi-contact-links {
        display: grid;
        width: 100%;
        max-width: 440px;
        margin: auto auto 0;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .presi-contact-links a {
        display: flex;
        width: 100%;
        min-width: 0;
        min-height: 82px;
        padding: 10px 14px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        color: #000;
        text-align: center;
        background: #fff;
        border: 1px solid #dedede;
        border-radius: 2px;
    }

    .presi-contact-links a > span,
    .presi-contact-links a > strong {
        display: block;
        width: 100%;
        min-width: 0;
        text-align: center;
    }

    .presi-contact-links a > span {
        color: #555;
        font-size: 12px;
        font-weight: 600;
        line-height: 1.2;
    }

    .presi-contact-links a > strong {
        color: #000;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    /*
     * Opening hours use the same visual rhythm as the contact rows.
     */
    .presi-contact-hours {
        display: grid;
        width: 100%;
        max-width: 440px;
        margin: 0 auto 18px;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .presi-contact-hours div {
        display: flex;
        width: 100%;
        min-width: 0;
        min-height: 82px;
        padding: 10px 14px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-align: center;
        background: #fff;
        border: 1px solid #dedede;
        border-radius: 2px;
    }

    .presi-contact-hours dt,
    .presi-contact-hours dd {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
    }

    .presi-contact-hours dt {
        color: #000;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.3;
    }

    .presi-contact-hours dd {
        color: #b00020;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
        white-space: normal;
    }

    .presi-contact-hours__note {
        width: 100%;
        max-width: 440px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }
}

/*
 * Shared contact icons.
 * Existing theme pseudo-element icons are fully reset first.
 */
.presi-contact-page
.presi-contact-links
a::before {
    display: block !important;
    position: static !important;
    inset: auto !important;
    flex: 0 0 25px;
    width: 25px !important;
    height: 25px !important;
    margin: 0 auto 4px !important;
    padding: 0 !important;
    content: "" !important;
    pointer-events: none !important;
    color: #000 !important;
    background: #000 !important;
    background-image: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    opacity: 1 !important;
    -webkit-mask-repeat: no-repeat !important;
    -webkit-mask-position: center !important;
    -webkit-mask-size: contain !important;
    mask-repeat: no-repeat !important;
    mask-position: center !important;
    mask-size: contain !important;
}

/* Landline icon — selected by the exact telephone number. */
.presi-contact-page
.presi-contact-links
a[href="tel:2112347993"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4h14v16H5zM8 7h8M8 10h2m2 0h2m2 0h2M8 13h2m2 0h2m2 0h2M8 16h2m2 0h2m2 0h2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 4h14v16H5zM8 7h8M8 10h2m2 0h2m2 0h2M8 13h2m2 0h2m2 0h2M8 16h2m2 0h2m2 0h2' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/* Mobile telephone icon. */
.presi-contact-page
.presi-contact-links
a[href="tel:6906532347"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6.5' y='2.5' width='11' height='19' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M10 5h4M11 18.5h2' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='6.5' y='2.5' width='11' height='19' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='M10 5h4M11 18.5h2' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/*
 * Email envelope.
 * Targeted by mailto rather than element position, so it cannot inherit
 * either telephone icon.
 */
.presi-contact-page
.presi-contact-links
a[href^="mailto:"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='m4 7 8 6 8-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2' fill='none' stroke='black' stroke-width='1.8'/%3E%3Cpath d='m4 7 8 6 8-6' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}

/*
 * Mobile retains the vertical layout, with identical centered icons.
 */
@media (max-width: 768px) {
    .presi-contact-links a {
        display: flex;
        min-height: 76px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1px;
        text-align: center;
    }

    .presi-contact-links a > span,
    .presi-contact-links a > strong {
        width: 100%;
        text-align: center;
    }

    .presi-contact-page
    .presi-contact-links
    a::before {
        flex-basis: 23px;
        width: 23px !important;
        height: 23px !important;
        margin-bottom: 3px !important;
    }
}

/* Keep directions-button content visible. */
.presi-contact-page
a.presi-contact-directions {
    display: inline-flex !important;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff !important;
    background-color: #000 !important;
    text-decoration: none !important;
}

.presi-contact-page
a.presi-contact-directions > span {
    display: inline-block !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.presi-contact-page
a.presi-contact-directions > svg {
    display: block !important;
    flex: 0 0 22px;
    width: 22px !important;
    height: 22px !important;
    color: #fff !important;
    fill: none !important;
    stroke: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.presi-contact-page
a.presi-contact-directions:hover,
.presi-contact-page
a.presi-contact-directions:focus {
    color: #fff !important;
    background-color: #202020 !important;
}

@media (max-width: 768px) {
    .presi-contact-page
    a.presi-contact-directions {
        width: 100%;
    }
}

/* PRESI CONTACT DESKTOP ALIGNMENT END */

/* PRESI MOBILE FOOTER PHONE SPACING START */

@media (max-width: 768px) {
    .presi-site-footer a[href^="tel:"] {
        display: inline-flex;
        min-height: 42px;
        padding-top: 3px;
        padding-bottom: 3px;
        align-items: center;
        justify-content: center;
    }
}

/* PRESI MOBILE FOOTER PHONE SPACING END */

/* PRESI WOOCOMMERCE NOTICES START */

/*
 * Final WooCommerce notice cascade guard.
 * Covers classic templates and WooCommerce Blocks globally.
 */

/* Classic WooCommerce notices. */
html body .woocommerce-message,
html body .woocommerce-info,
html body .woocommerce-error,
html body .woocommerce-notice {
    color: #fff !important;
    background: #000 !important;
    background-color: #000 !important;
    background-image: none !important;
    border-color: #000 !important;
    border-top-color: #000 !important;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 14%);
}

/* Classic notice icons. */
html body .woocommerce-message::before,
html body .woocommerce-info::before,
html body .woocommerce-error::before,
html body .woocommerce-notice::before {
    color: #fff !important;
}

/* Classic notice content. */
html body .woocommerce-message p,
html body .woocommerce-message li,
html body .woocommerce-message span,
html body .woocommerce-info p,
html body .woocommerce-info li,
html body .woocommerce-info span,
html body .woocommerce-error p,
html body .woocommerce-error li,
html body .woocommerce-error span,
html body .woocommerce-notice p,
html body .woocommerce-notice li,
html body .woocommerce-notice span {
    color: #fff !important;
}

/* Ordinary links inside classic notices. */
html body .woocommerce-message a:not(.button),
html body .woocommerce-info a:not(.button),
html body .woocommerce-error a:not(.button),
html body .woocommerce-notice a:not(.button) {
    color: #fff !important;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* Buttons inside classic notices. */
html body .woocommerce-message .button,
html body .woocommerce-info .button,
html body .woocommerce-error .button,
html body .woocommerce-notice .button {
    color: #000 !important;
    background: #fff !important;
    background-color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 2px;
    box-shadow: none !important;
}

html body .woocommerce-message .button:hover,
html body .woocommerce-info .button:hover,
html body .woocommerce-error .button:hover,
html body .woocommerce-notice .button:hover,
html body .woocommerce-message .button:focus,
html body .woocommerce-info .button:focus,
html body .woocommerce-error .button:focus,
html body .woocommerce-notice .button:focus {
    color: #fff !important;
    background: #242424 !important;
    border-color: #fff !important;
}

/* WooCommerce Blocks notices. */
html body .wc-block-components-notice-banner,
html body .wc-block-components-notice-banner.is-info,
html body .wc-block-components-notice-banner.is-success,
html body .wc-block-components-notice-banner.is-error,
html body .wc-block-components-notice-banner.is-warning {
    color: #fff !important;
    background: #000 !important;
    background-color: #000 !important;
    background-image: none !important;
    border-color: #000 !important;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgb(0 0 0 / 14%);
}

/* Block notice content. */
html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content,
html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content
p,
html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content
span {
    color: #fff !important;
}

/* Block status icon. */
html body .wc-block-components-notice-banner > svg {
    color: #000 !important;
    fill: #000 !important;
    background: #fff !important;
}

/* Links inside block notices. */
html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content
a:not(.wc-forward) {
    color: #fff !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Action button inside block notices. */
html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content
.wc-forward {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 2px;
}

html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content
.wc-forward:hover,
html body
.wc-block-components-notice-banner
.wc-block-components-notice-banner__content
.wc-forward:focus {
    color: #fff !important;
    background: #242424 !important;
}

/* Accessible keyboard focus. */
html body .woocommerce-message a:focus-visible,
html body .woocommerce-info a:focus-visible,
html body .woocommerce-error a:focus-visible,
html body .woocommerce-notice a:focus-visible,
html body .wc-block-components-notice-banner a:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* PRESI WOOCOMMERCE NOTICES END */

/* PRESI EDITABLE HOMEPAGE HERO CSS START */

/*
 * The Hero is output directly after the header, outside the
 * GeneratePress article container. It therefore needs no 100vw,
 * negative margins or positioning corrections.
 */
.presi-home-hero {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #111;
    line-height: 0;
}

.presi-home-hero__link,
.presi-home-hero picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.presi-home-hero__image {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
}

/*
 * Hide only the normal page title on the static homepage.
 * Other page, product and archive titles remain unchanged.
 */
body.home.page
.site-main
> article
> .inside-article
> .entry-header {
    display: none;
}

body.home.page
.site-main
> article
> .inside-article
> .entry-content {
    margin-top: 0;
}

/* PRESI EDITABLE HOMEPAGE HERO CSS END */

/* PRESI HOMEPAGE FEATURES START */

.presi-home-features {
    width: 100%;
    margin: 0;
    padding: 30px 24px 40px;
    color: #090909;
    background: #fff;
    box-sizing: border-box;
}

.presi-home-features__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.presi-home-features__heading {
    margin: 0 0 24px;
    color: #090909;
    font-size: clamp(20px, 1.7vw, 27px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    letter-spacing: .015em;
}

.presi-home-features__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.presi-home-feature {
    min-width: 0;
    margin: 0;
    padding: 19px 14px 20px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 1),
            rgba(248, 248, 248, .82)
        );
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 3px;
    box-shadow:
        0 7px 20px rgba(0, 0, 0, .065),
        inset 0 1px 0 rgba(255, 255, 255, .95);
    box-sizing: border-box;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.presi-home-feature__icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    margin: 0 auto 12px;
    align-items: center;
    justify-content: center;
    color: #090909;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    box-shadow:
        0 5px 13px rgba(0, 0, 0, .09),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    box-sizing: border-box;
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.presi-home-feature__icon svg {
    display: block;
    width: 34px;
    height: 34px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-home-feature__title {
    margin: 0 0 7px;
    color: #090909;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .015em;
}

.presi-home-feature__text {
    margin: 0;
    color: #242424;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

/*
 * Apply the subtle interaction only on devices that genuinely support hover.
 */
@media (hover: hover) and (pointer: fine) {
    .presi-home-feature:hover {
        border-color: rgba(0, 0, 0, .16);
        box-shadow:
            0 11px 25px rgba(0, 0, 0, .1),
            inset 0 1px 0 rgba(255, 255, 255, .95);
        transform: translateY(-3px);
    }

    .presi-home-feature:hover
    .presi-home-feature__icon {
        box-shadow:
            0 8px 17px rgba(0, 0, 0, .14),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        transform: translateY(-2px);
    }
}

/*
 * Mobile: one full-width 2 × 2 grid.
 * The cards meet at full-length dividers without gaps.
 */
@media (max-width: 768px) {
    .presi-home-features {
        padding: 25px 0 30px;
    }

    .presi-home-features__heading {
        margin: 0;
        padding: 0 16px 20px;
        font-size: 20px;
        line-height: 1.3;
    }

    .presi-home-features__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        width: 100%;
        border-top: 1px solid rgba(0, 0, 0, .15);
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }

    .presi-home-feature {
        display: flex;
        min-height: 190px;
        padding: 19px 10px 18px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        background: #fff;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        transform: none;
    }

    .presi-home-feature:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, .15);
    }

    .presi-home-feature:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
    }

    .presi-home-feature__icon {
        width: 54px;
        height: 54px;
        margin-bottom: 10px;
        box-shadow: 0 4px 11px rgba(0, 0, 0, .09);
    }

    .presi-home-feature__icon svg {
        width: 30px;
        height: 30px;
    }

    .presi-home-feature__title {
        margin-bottom: 7px;
        font-size: 14px;
        line-height: 1.28;
    }

    .presi-home-feature__text {
        max-width: 180px;
        font-size: 12px;
        line-height: 1.42;
    }
}

@media (prefers-reduced-motion: reduce) {
    .presi-home-feature,
    .presi-home-feature__icon {
        transition: none;
    }
}

/* PRESI HOMEPAGE FEATURES PREMIUM ACCENTS START */

.presi-home-features {
    --presi-feature-accent: #b00020;
}

/*
 * Small brand underline beneath the main section heading.
 */
.presi-home-features__heading::after {
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px auto 0;
    content: "";
    background: var(--presi-feature-accent);
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(176, 0, 32, .2);
}

/*
 * Deep red titles provide the main brand accent.
 */
.presi-home-feature__title {
    color: var(--presi-feature-accent);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
}

/*
 * Keep icons black, but add a restrained red detail around them.
 */
.presi-home-feature__icon {
    border-color: rgba(176, 0, 32, .28);
    box-shadow:
        0 5px 13px rgba(0, 0, 0, .09),
        0 0 0 3px rgba(176, 0, 32, .035),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/*
 * A short accent line at the top of each desktop card.
 * It deliberately does not span the whole card.
 */
@media (min-width: 769px) {
    .presi-home-feature {
        position: relative;
        overflow: hidden;
    }

    .presi-home-feature::before {
        position: absolute;
        top: 0;
        left: 50%;
        width: 48px;
        height: 3px;
        content: "";
        background: var(--presi-feature-accent);
        border-radius: 0 0 3px 3px;
        box-shadow: 0 2px 5px rgba(176, 0, 32, .18);
        transform: translateX(-50%);
        transition: width .2s ease;
    }
}

@media (hover: hover) and (pointer: fine) {
    .presi-home-feature:hover::before {
        width: 74px;
    }

    .presi-home-feature:hover
    .presi-home-feature__icon {
        border-color: rgba(176, 0, 32, .46);
        box-shadow:
            0 8px 17px rgba(0, 0, 0, .13),
            0 0 0 4px rgba(176, 0, 32, .055),
            inset 0 1px 0 rgba(255, 255, 255, 1);
    }
}

@media (max-width: 768px) {
    .presi-home-features__heading::after {
        width: 42px;
        height: 2px;
        margin-top: 10px;
    }

    .presi-home-feature__icon {
        border-color: rgba(176, 0, 32, .25);
        box-shadow:
            0 4px 11px rgba(0, 0, 0, .085),
            0 0 0 2px rgba(176, 0, 32, .035);
    }

    .presi-home-feature__title {
        color: var(--presi-feature-accent);
    }
}

/* PRESI MOBILE FEATURE TITLE LINES START */

@media (max-width: 768px) {
    /*
     * Small red line under each mobile card title.
     */
    .presi-home-feature__title::after {
        display: block;
        width: 28px;
        height: 2px;
        margin: 7px auto 0;
        content: "";
        background: var(--presi-feature-accent, #b00020);
        border-radius: 2px;
        box-shadow: 0 1px 3px rgba(176, 0, 32, .18);
    }

    /*
     * Preserve balanced spacing between the accent
     * and the card description.
     */
    .presi-home-feature__title {
        margin-bottom: 8px;
    }
}

/* PRESI MOBILE FEATURE TITLE LINES END */

/* PRESI HOMEPAGE FEATURES PREMIUM ACCENTS END */

/* PRESI HOMEPAGE FEATURES END */

/* PRESI PREFOOTER STATS START */

.presi-prefooter-stats {
    --presi-stats-accent: #b00020;
    width: 100%;
    margin: 0;
    padding: 38px 24px 42px;
    color: #090909;
    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #f6f6f6 100%
        );
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-sizing: border-box;
}

.presi-prefooter-stats__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.presi-prefooter-stats__heading {
    margin: 0 0 28px;
    color: #090909;
    font-size: clamp(21px, 1.8vw, 28px);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    letter-spacing: .02em;
}

.presi-prefooter-stats__heading::after {
    display: block;
    width: 50px;
    height: 3px;
    margin: 12px auto 0;
    content: "";
    background: var(--presi-stats-accent);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(176, 0, 32, .2);
}

.presi-prefooter-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 3px;
    box-shadow:
        0 10px 26px rgba(0, 0, 0, .075),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    overflow: hidden;
}

.presi-prefooter-stat {
    position: relative;
    min-width: 0;
    min-height: 210px;
    margin: 0;
    padding: 24px 14px 22px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}

.presi-prefooter-stat:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, .11);
}

.presi-prefooter-stat::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 45px;
    height: 3px;
    content: "";
    background: var(--presi-stats-accent);
    border-radius: 0 0 3px 3px;
    transform: translateX(-50%);
}

.presi-prefooter-stat__icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    margin: 0 auto 13px;
    align-items: center;
    justify-content: center;
    color: #090909;
    background: #fff;
    border: 1px solid rgba(176, 0, 32, .25);
    border-radius: 50%;
    box-shadow:
        0 6px 15px rgba(0, 0, 0, .09),
        0 0 0 3px rgba(176, 0, 32, .035);
    box-sizing: border-box;
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.presi-prefooter-stat__icon svg {
    display: block;
    width: 35px;
    height: 35px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-prefooter-stat__number {
    display: block;
    margin: 0 0 5px;
    color: var(--presi-stats-accent);
    font-size: clamp(27px, 2.4vw, 35px);
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -.025em;
}

.presi-prefooter-stat__label {
    margin: 0;
    color: #151515;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
    .presi-prefooter-stat:hover
    .presi-prefooter-stat__icon {
        border-color: rgba(176, 0, 32, .48);
        box-shadow:
            0 9px 20px rgba(0, 0, 0, .13),
            0 0 0 4px rgba(176, 0, 32, .055);
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {
    .presi-prefooter-stats {
        padding: 31px 0 0;
    }

    .presi-prefooter-stats__heading {
        margin: 0;
        padding: 0 16px 24px;
        font-size: 21px;
    }

    .presi-prefooter-stats__heading::after {
        width: 44px;
        height: 2px;
        margin-top: 10px;
    }

    .presi-prefooter-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .presi-prefooter-stat {
        min-height: 186px;
        padding: 20px 10px 18px;
    }

    .presi-prefooter-stat:not(:last-child) {
        border-right: 0;
    }

    .presi-prefooter-stat:nth-child(odd) {
        border-right: 1px solid rgba(0, 0, 0, .13);
    }

    .presi-prefooter-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(0, 0, 0, .13);
    }

    .presi-prefooter-stat::before {
        width: 34px;
        height: 2px;
    }

    .presi-prefooter-stat__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 11px;
    }

    .presi-prefooter-stat__icon svg {
        width: 30px;
        height: 30px;
    }

    .presi-prefooter-stat__number {
        margin-bottom: 5px;
        font-size: 27px;
    }

    .presi-prefooter-stat__label {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .presi-prefooter-stat__icon {
        transition: none;
    }
}

/* PRESI PREFOOTER STATS END */

/* PRESI EDITABLE PRODUCT SECTIONS START */

.presi-product-section {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 42px 0 30px;
    box-sizing: border-box;
}

.presi-product-section__header {
    width: 100%;
    margin: 0 0 27px;
    padding: 0 16px;
    text-align: center;
    box-sizing: border-box;
}

.presi-product-section__title {
    margin: 0;
    color: #090909;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: .018em;
}

.presi-product-section__description {
    max-width: 720px;
    margin: 8px auto 0;
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.presi-product-section__accent {
    display: block;
    width: 50px;
    height: 3px;
    margin: 13px auto 0;
    background-color: #b00020;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(176, 0, 32, .2);
}

.presi-product-section__products {
    width: 100%;
    margin: 0;
}

/*
 * Remove shortcode margins that can create unnecessary empty space.
 */
.presi-product-section__products
.woocommerce {
    width: 100%;
    margin: 0;
}

.presi-product-section__products
ul.products {
    margin-bottom: 0;
}

/*
 * Gutenberg editor preview. These rules are harmless on the frontend
 * because the editor-only classes do not exist there.
 */
.presi-product-grid-editor {
    padding: 25px;
    background: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .06);
}

.presi-product-grid-editor__header {
    margin-bottom: 23px;
    text-align: center;
}

.presi-product-grid-editor__title {
    margin: 0;
    color: #090909;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.presi-product-grid-editor__description {
    margin: 8px auto 0;
    color: #3a3a3a;
    font-size: 15px;
    line-height: 1.5;
}

.presi-product-grid-editor__accent {
    display: block;
    width: 48px;
    height: 3px;
    margin: 12px auto 0;
    background: #b00020;
    border-radius: 3px;
}

.presi-product-grid-editor__loading {
    display: flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
}

.presi-product-grid-editor__preview {
    display: flex;
    min-height: 90px;
    margin-top: 18px;
    padding: 16px;
    gap: 6px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #222;
    background:
        repeating-linear-gradient(
            -45deg,
            #fafafa,
            #fafafa 10px,
            #f4f4f4 10px,
            #f4f4f4 20px
        );
    border: 1px dashed #aaa;
    text-align: center;
    box-sizing: border-box;
}

.presi-product-grid-editor__preview strong {
    color: #b00020;
    font-size: 16px;
}

.presi-product-grid-editor__preview span {
    color: #555;
    font-size: 13px;
}

@media (max-width: 768px) {
    .presi-product-section {
        padding-top: 32px;
        padding-bottom: 24px;
    }

    .presi-product-section__header {
        margin-bottom: 22px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .presi-product-section__title {
        font-size: 22px;
    }

    .presi-product-section__description {
        margin-top: 7px;
        font-size: 14px;
        line-height: 1.45;
    }

    .presi-product-section__accent {
        width: 44px;
        height: 2px;
        margin-top: 11px;
    }
}

/* PRESI PRODUCT GRID PROMO BADGE START */

.presi-product-section__title-row {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.presi-product-section__badge {
    display: inline-flex;
    min-height: 27px;
    padding: 4px 9px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #b00020;
    border: 1px solid #98001b;
    border-radius: 3px;
    box-shadow:
        0 4px 9px rgba(176, 0, 32, .19),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .025em;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translateY(-5px);
}

/*
 * Equivalent appearance inside Gutenberg.
 */
.presi-product-grid-editor__title-row {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;
}

.presi-product-grid-editor__badge {
    display: inline-flex;
    min-width: 48px;
    min-height: 27px;
    padding: 4px 9px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #b00020;
    border: 1px solid #98001b;
    border-radius: 3px;
    box-shadow: 0 4px 9px rgba(176, 0, 32, .19);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .025em;
    white-space: nowrap;
    box-sizing: border-box;
    transform: translateY(-5px);
}

.presi-product-grid-editor__badge:empty::before {
    color: rgba(255, 255, 255, .8);
    content: "-60%";
}

@media (max-width: 768px) {
    .presi-product-section__title-row {
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
    }

    .presi-product-section__badge {
        min-height: 25px;
        padding: 4px 8px;
        font-size: 12px;
        transform: translateY(-2px);
    }
}

/* PRESI PRODUCT GRID PROMO BADGE END */

/* PRESI EDITABLE PRODUCT SECTIONS END */

/* PRESI HOMEPAGE REVIEWS START */

.presi-home-reviews {
    --presi-review-accent: #b00020;
    width: 100%;
    margin: 0;
    padding: 42px 24px 44px;
    color: #090909;
    background:
        linear-gradient(
            180deg,
            #fff 0%,
            #f7f7f7 100%
        );
    border-top: 1px solid rgba(0, 0, 0, .07);
    box-sizing: border-box;
}

.presi-home-reviews__inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

.presi-home-reviews__header {
    margin: 0 0 27px;
    text-align: center;
}

.presi-home-reviews__title {
    margin: 0;
    color: #090909;
    font-size: clamp(22px, 2vw, 29px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: .018em;
}

.presi-home-reviews__subtitle {
    max-width: 660px;
    margin: 8px auto 0;
    color: #404040;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.presi-home-reviews__accent {
    display: block;
    width: 50px;
    height: 3px;
    margin: 12px auto 0;
    background: var(--presi-review-accent);
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(176, 0, 32, .2);
}

.presi-home-reviews__viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.presi-home-reviews__viewport::-webkit-scrollbar {
    display: none;
}

.presi-home-reviews__viewport:focus-visible {
    outline: 2px solid var(--presi-review-accent);
    outline-offset: 4px;
}

.presi-home-reviews__track {
    display: flex;
    width: 100%;
    gap: 18px;
    align-items: stretch;
}

.presi-review-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 275px;
    margin: 0;
    padding: 20px 18px;
    flex: 0 0 calc((100% - 54px) / 4);
    flex-direction: column;
    color: #151515;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 3px;
    box-shadow:
        0 7px 20px rgba(0, 0, 0, .065),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    scroll-snap-align: start;
    box-sizing: border-box;
}

.presi-review-card::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 42px;
    height: 3px;
    content: "";
    background: var(--presi-review-accent);
    border-radius: 0 0 3px 3px;
    transform: translateX(-50%);
}

.presi-review-card__header {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: center;
}

.presi-review-card__avatar {
    display: inline-flex;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background:
        linear-gradient(
            145deg,
            #b00020,
            #790016
        );
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(176, 0, 32, .2);
    font-size: 14px;
    font-weight: 700;
}

.presi-review-card__identity {
    min-width: 0;
    flex: 1 1 auto;
}

.presi-review-card__name {
    display: inline-flex;
    max-width: 100%;
    gap: 4px;
    align-items: center;
    color: #090909;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.presi-review-card__name:hover {
    color: var(--presi-review-accent);
}

.presi-review-card__name svg {
    display: block;
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-review-card__meta {
    display: block;
    margin-top: 3px;
    color: #696969;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
}

.presi-review-card__google {
    display: inline-flex;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    color: #4285f4;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.presi-review-card__rating {
    display: flex;
    margin-top: 16px;
    gap: 7px;
    align-items: center;
    flex-wrap: wrap;
}

.presi-review-card__stars {
    color: #f4b400;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

.presi-review-card__date {
    color: #777;
    font-size: 11px;
    font-weight: 500;
}

.presi-review-card__text {
    margin: 15px 0 0;
    padding: 0;
    color: #202020;
    border: 0;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.55;
}

.presi-review-card__verified {
    margin: 18px 0 0;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.presi-review-card__response {
    display: flex;
    margin-top: auto;
    padding: 11px 12px;
    gap: 3px;
    flex-direction: column;
    color: #222;
    background: #f6f6f6;
    border-left: 3px solid var(--presi-review-accent);
    font-size: 12px;
    line-height: 1.4;
}

.presi-review-card__response strong {
    color: #090909;
    font-weight: 700;
}

.presi-home-reviews__controls {
    display: flex;
    min-height: 42px;
    margin-top: 21px;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.presi-home-reviews__button {
    display: inline-flex;
    width: 39px;
    height: 39px;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #090909;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .16);
    cursor: pointer;
    transition:
        background-color .18s ease,
        transform .18s ease;
}

.presi-home-reviews__button:hover,
.presi-home-reviews__button:focus-visible {
    color: #fff;
    background: var(--presi-review-accent);
}

.presi-home-reviews__button:active {
    transform: scale(.94);
}

.presi-home-reviews__button:focus-visible {
    outline: 2px solid #090909;
    outline-offset: 3px;
}

.presi-home-reviews__button svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-home-reviews__dots {
    display: flex;
    min-width: 36px;
    gap: 7px;
    align-items: center;
    justify-content: center;
}

.presi-home-reviews__dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    background: #a9a9a9;
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    transition:
        width .18s ease,
        background-color .18s ease;
}

.presi-home-reviews__dot.is-active {
    width: 20px;
    background: var(--presi-review-accent);
    border-radius: 5px;
}

@media (max-width: 768px) {
    .presi-home-reviews {
        padding: 34px 12px 36px;
    }

    .presi-home-reviews__header {
        margin-bottom: 23px;
        padding: 0 4px;
    }

    .presi-home-reviews__title {
        font-size: 22px;
    }

    .presi-home-reviews__subtitle {
        font-size: 13px;
        line-height: 1.45;
    }

    .presi-home-reviews__accent {
        width: 44px;
        height: 2px;
        margin-top: 10px;
    }

    .presi-home-reviews__track {
        gap: 12px;
    }

    .presi-review-card {
        min-height: 285px;
        padding: 18px 13px;
        flex-basis: calc((100% - 12px) / 2);
    }

    .presi-review-card__header {
        gap: 7px;
    }

    .presi-review-card__avatar {
        width: 39px;
        height: 39px;
        flex-basis: 39px;
        font-size: 12px;
    }

    .presi-review-card__name {
        font-size: 12px;
    }

    .presi-review-card__meta {
        font-size: 9px;
    }

    .presi-review-card__google {
        width: 23px;
        height: 23px;
        flex-basis: 23px;
        font-size: 14px;
    }

    .presi-review-card__rating {
        margin-top: 13px;
        gap: 5px;
    }

    .presi-review-card__stars {
        font-size: 14px;
        letter-spacing: 0;
    }

    .presi-review-card__date {
        font-size: 9px;
    }

    .presi-review-card__text,
    .presi-review-card__verified {
        font-size: 11px;
        line-height: 1.48;
    }

    .presi-review-card__response {
        padding: 8px;
        font-size: 10px;
    }

    .presi-home-reviews__controls {
        margin-top: 18px;
    }

    .presi-home-reviews__button {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .presi-home-reviews__viewport {
        scroll-behavior: auto;
    }

    .presi-home-reviews__button,
    .presi-home-reviews__dot {
        transition: none;
    }
}

/* PRESI HOMEPAGE REVIEWS END */

/* PRESI PRODUCT CHANGE FORM START */

.presi-product-change {
    width: 100%;
    max-width: 660px;
    margin: 25px auto 45px;
    padding: 30px;
    color: #111;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 4px;
    box-shadow: 0 9px 26px rgba(0, 0, 0, .07);
    box-sizing: border-box;
}

.presi-product-change__header {
    margin-bottom: 26px;
    text-align: center;
}

.presi-product-change__icon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    margin-bottom: 13px;
    align-items: center;
    justify-content: center;
    color: #111;
    background: #fff;
    border: 1px solid rgba(176, 0, 32, .25);
    border-radius: 50%;
    box-shadow:
        0 5px 14px rgba(0, 0, 0, .09),
        0 0 0 3px rgba(176, 0, 32, .035);
}

.presi-product-change__icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-product-change__title {
    margin: 0;
    color: #111;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
}

.presi-product-change__instructions {
    max-width: 560px;
    margin: 10px auto 0;
    color: #3d3d3d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.presi-product-change__accent {
    display: block;
    width: 46px;
    height: 3px;
    margin: 13px auto 0;
    background: #b00020;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(176, 0, 32, .18);
}

.presi-product-change__form {
    display: grid;
    gap: 19px;
}

.presi-product-change__field label {
    display: block;
    margin-bottom: 7px;
    color: #111;
    font-size: 14px;
    font-weight: 650;
}

.presi-product-change__field label span {
    color: #b00020;
}

.presi-product-change__field input {
    display: block;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 10px 13px;
    color: #111;
    background: #fff;
    border: 1px solid #bcbcbc;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .04);
    font: inherit;
    box-sizing: border-box;
}

.presi-product-change__field input:focus {
    border-color: #111;
    box-shadow:
        0 0 0 2px rgba(0, 0, 0, .09),
        inset 0 1px 2px rgba(0, 0, 0, .04);
    outline: 0;
}

.presi-product-change__field small {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

.presi-product-change__submit {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    margin: 3px 0 0;
    padding: 11px 18px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #090909;
    border: 1px solid #090909;
    border-radius: 3px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, .17);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.presi-product-change__submit:hover,
.presi-product-change__submit:focus-visible {
    color: #fff;
    background: #b00020;
    border-color: #b00020;
    box-shadow: 0 7px 16px rgba(176, 0, 32, .2);
}

.presi-product-change__submit:active {
    transform: scale(.99);
}

.presi-product-change__submit svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.presi-product-change__trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.presi-change-message {
    display: flex;
    margin: 0 0 22px;
    padding: 13px 14px;
    gap: 10px;
    align-items: center;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.presi-change-message__icon {
    display: inline-flex;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
}

.presi-change-message--success {
    color: #14532d;
    background: #ecfdf3;
    border: 1px solid #86d9a4;
}

.presi-change-message--success
.presi-change-message__icon {
    color: #fff;
    background: #15803d;
}

.presi-change-message--error {
    color: #7f1d1d;
    background: #fff1f2;
    border: 1px solid #e7a1aa;
}

.presi-change-message--error
.presi-change-message__icon {
    color: #fff;
    background: #b00020;
}

@media (max-width: 768px) {
    .presi-product-change {
        margin-top: 15px;
        margin-bottom: 30px;
        padding: 24px 16px;
    }

    .presi-product-change__icon {
        width: 56px;
        height: 56px;
    }

    .presi-product-change__icon svg {
        width: 31px;
        height: 31px;
    }

    .presi-product-change__title {
        font-size: 22px;
    }

    .presi-product-change__instructions {
        font-size: 13px;
    }

    .presi-product-change__field input {
        min-height: 50px;
        font-size: 16px;
    }

    .presi-product-change__submit {
        min-height: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .presi-product-change__submit {
        transition: none;
    }
}

/* PRESI PRODUCT CHANGE FORM END */
