:root {
    --fr-navy-950: #101a2b;
    --fr-navy-900: #14233a;
    --fr-navy-800: #1d3658;
    --fr-navy-700: #294d78;
    --fr-orange: #f4961d;
    --fr-orange-dark: #d76e08;
    --fr-orange-soft: #fff1dd;
    --fr-ink: #172033;
    --fr-muted: #63728a;
    --fr-page: #f5f7fa;
    --fr-white: #ffffff;
    --fr-line: #d7dee8;
    --fr-success: #0d6a4d;
    --fr-radius-sm: 12px;
    --fr-radius: 18px;
    --fr-shadow: 0 14px 32px rgba(21, 35, 58, 0.12);
    --fr-shell: 1360px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--fr-page);
    color: var(--fr-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    margin: 0;
}

button,
input,
select,
textarea { font: inherit; }

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

a { color: inherit; }

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.fr-store-shell,
.fr-store-content,
.fr-store-section,
.fr-store-confidence,
.fr-store-footer__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--fr-shell);
    padding-left: 18px;
    padding-right: 18px;
}

.fr-store-header {
    background: var(--fr-navy-950);
    color: var(--fr-white);
    position: sticky;
    top: 0;
    z-index: 30;
}

.fr-store-header__utility {
    background: var(--fr-navy-950);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #dce7f4;
    font-size: 0.75rem;
}

.fr-store-header__utility .fr-store-shell {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    min-height: 29px;
}

.fr-store-header__utility p { margin: 0; }

.fr-store-header__utility a {
    color: var(--fr-white);
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.fr-store-header__utility-links {
    align-items: center;
    display: flex;
    gap: 18px;
}

.fr-store-header__main {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: auto 1fr auto;
    min-height: 70px;
}

.fr-store-logo {
    color: var(--fr-white);
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.fr-store-logo span { color: #ffbc59; }

.fr-store-search {
    align-items: stretch;
    display: flex;
    min-width: 0;
}

.fr-store-search input[type="search"] {
    border: 0;
    border-radius: 10px 0 0 10px;
    color: var(--fr-ink);
    min-width: 0;
    outline: 0;
    min-height: 44px;
    padding: 10px 15px;
    width: 100%;
}

.fr-store-search input[type="search"]:focus { box-shadow: inset 0 0 0 3px #ffbd5e; }

.fr-store-search button {
    background: var(--fr-orange);
    border: 0;
    border-radius: 0 10px 10px 0;
    color: var(--fr-white);
    cursor: pointer;
    min-width: 52px;
    font-weight: 900;
    padding: 0 14px;
}

.fr-store-search button .dashicons {
    font-size: 23px;
    height: 23px;
    width: 23px;
}

.fr-store-search button:hover { background: #ffad43; }

.fr-store-header__actions {
    align-items: center;
    display: flex;
    gap: 8px;
}

.fr-store-cart,
.fr-store-menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--fr-white);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.8rem;
    gap: 5px;
    font-weight: 800;
    min-height: 42px;
    padding: 7px 9px;
    text-decoration: none;
    white-space: nowrap;
}

.fr-store-cart:hover,
.fr-store-menu-toggle:hover { background: rgba(255, 255, 255, 0.09); color: #ffcf84; }

.fr-store-cart { position: relative; }

.fr-store-cart__count {
    align-items: center;
    background: var(--fr-orange);
    border-radius: 999px;
    color: var(--fr-white);
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 900;
    height: 19px;
    justify-content: center;
    min-width: 19px;
    padding: 0 5px;
}

.fr-store-header__navigation {
    background: var(--fr-white);
    border-bottom: 1px solid var(--fr-line);
    color: var(--fr-navy-900);
    display: none;
}

.fr-store-header__navigation.is-open { display: block; }

.fr-store-header__navigation-inner {
    display: grid;
    gap: 0;
    padding-bottom: 10px;
    padding-top: 10px;
}

.fr-store-navigation { padding-top: 9px; }

.fr-store-menu,
.fr-store-category-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fr-store-menu a,
.fr-store-category-navigation a {
    color: var(--fr-navy-900);
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.fr-store-menu a:hover,
.fr-store-category-navigation a:hover { color: var(--fr-orange-dark); }

.fr-store-category-navigation {
    align-items: center;
    border-bottom: 1px solid var(--fr-line);
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    padding-bottom: 10px;
}

.fr-store-category-navigation__all {
    align-items: center;
    display: inline-flex;
    gap: 6px;
    font-weight: 900 !important;
}

.fr-store-service-strip {
    background: var(--fr-orange);
    color: var(--fr-white);
    display: grid;
    gap: 0;
    padding: 0 max(18px, calc((100vw - var(--fr-shell)) / 2 + 18px));
}

.fr-store-service-strip__item {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--fr-white);
    display: flex;
    gap: 12px;
    min-height: 67px;
    padding: 11px 4px;
    text-decoration: none;
}

.fr-store-service-strip__item > .dashicons {
    flex: 0 0 auto;
    font-size: 29px;
    height: 29px;
    width: 29px;
}

.fr-store-service-strip p {
    margin: 0;
}

.fr-store-service-strip__item:last-child { border-bottom: 0; }
.fr-store-service-strip__item strong,
.fr-store-service-strip__item small,
.fr-store-service-strip__item p span { display: block; }
.fr-store-service-strip__item strong { font-size: 0.88rem; }
.fr-store-service-strip__item small,
.fr-store-service-strip__item p span { font-size: 0.76rem; margin-top: 1px; }
.fr-store-service-strip__item:hover strong { text-decoration: underline; }

.fr-store-section { padding-bottom: 25px; padding-top: 24px; }
.fr-store-section--products { padding-top: 8px; }

.fr-store-section__heading {
    align-items: flex-end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.fr-store-section h1,
.fr-store-section h2 {
    color: var(--fr-navy-900);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0;
}

.fr-store-section h1 { font-size: clamp(1.9rem, 4vw, 2.65rem); }
.fr-store-section h2 { font-size: clamp(1.45rem, 3vw, 1.85rem); }
.fr-store-section__heading p { color: var(--fr-muted); font-size: 0.9rem; margin: 6px 0 0; }

.fr-store-section__heading > a {
    color: var(--fr-navy-800);
    font-size: 0.88rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.fr-store-section__heading > a:hover { color: var(--fr-orange-dark); text-decoration: underline; }

.fr-store-category-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.fr-store-category-card {
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius-sm);
    color: var(--fr-ink);
    display: grid;
    grid-template-rows: clamp(185px, 25vw, 230px) auto;
    min-height: 260px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 160ms ease, transform 160ms ease;
}

.fr-store-category-card:hover { box-shadow: var(--fr-shadow); transform: translateY(-2px); }

.fr-store-category-card__image {
    background: #edf1f5;
    display: block;
    min-height: 185px;
    overflow: hidden;
}

.fr-store-category-card img {
    height: 100%;
    min-height: 185px;
    object-fit: cover;
    width: 100%;
}

.fr-store-category-card--no-image .fr-store-category-card__image { display: none; }
.fr-store-category-card--no-image { grid-template-rows: 1fr; min-height: 96px; }

.fr-store-category-card__content {
    background: var(--fr-white);
    display: grid;
    gap: 2px;
    min-height: 70px;
    padding: 13px 15px;
}

.fr-store-category-card__content strong { color: var(--fr-navy-900); font-size: 1rem; line-height: 1.2; }
.fr-store-category-card__content small { color: var(--fr-muted); font-size: 0.8rem; }

.fr-store-catalog-empty {
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius-sm);
    color: var(--fr-muted);
    margin: 0;
    padding: 20px;
}

.woocommerce ul.products {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

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

.woocommerce ul.products li.product {
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius-sm);
    display: flex;
    flex-direction: column;
    float: none;
    margin: 0;
    min-width: 0;
    overflow: hidden;
    min-height: 100%;
    padding: 0 0 15px;
    position: relative;
    transition: box-shadow 160ms ease, transform 160ms ease;
    width: auto;
}

.woocommerce ul.products.columns-5 li.product {
    width: 100%;
}

.woocommerce ul.products li.product:hover { box-shadow: var(--fr-shadow); transform: translateY(-2px); }

.woocommerce ul.products li.product a img {
    height: clamp(150px, 13vw, 200px);
    background: #f7f8fa;
    margin: 0 0 11px;
    object-fit: contain;
    padding: 12px;
    width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: var(--fr-navy-900);
    font-size: 0.88rem;
    font-weight: 760;
    line-height: 1.32;
    padding: 0 12px;
}

.woocommerce ul.products li.product .price {
    color: var(--fr-navy-900);
    font-size: 0.98rem;
    font-weight: 900;
    margin: 9px 12px 13px;
}

.woocommerce ul.products li.product .button {
    align-self: stretch;
    background: var(--fr-orange);
    border: 0;
    border-radius: 8px;
    color: var(--fr-navy-950);
    font-size: 0.78rem;
    font-weight: 900;
    margin: auto 12px 0;
    padding: 9px 11px;
    text-align: center;
}

.woocommerce ul.products li.product .button:hover { background: #ffad43; }

.fr-store-confidence {
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius-sm);
    display: grid;
    gap: 0;
    margin-bottom: 40px;
    margin-top: 10px;
    overflow: hidden;
    padding: 0;
}

.fr-store-confidence__item {
    align-items: center;
    border-bottom: 1px solid var(--fr-line);
    color: var(--fr-navy-900);
    display: flex;
    gap: 13px;
    min-height: 94px;
    padding: 17px 20px;
    text-decoration: none;
}

.fr-store-confidence__item:last-child { border-bottom: 0; }
.fr-store-confidence__item > .dashicons { color: var(--fr-navy-800); flex: 0 0 auto; font-size: 31px; height: 31px; width: 31px; }
.fr-store-confidence__item p { margin: 0; }
.fr-store-confidence__item strong,
.fr-store-confidence__item small,
.fr-store-confidence__item p span { display: block; }
.fr-store-confidence__item strong { font-size: 0.9rem; }
.fr-store-confidence__item small,
.fr-store-confidence__item p span { color: var(--fr-muted); font-size: 0.79rem; margin-top: 3px; }
.fr-store-confidence__item:hover strong { color: var(--fr-orange-dark); text-decoration: underline; }

.fr-store-content { min-height: 62vh; padding-bottom: 58px; padding-top: 30px; }

.fr-store-content--commerce .woocommerce { max-width: 100%; }

.fr-store-content--commerce .button,
.fr-store-content button,
.fr-store-content input[type="submit"] {
    background: var(--fr-orange);
    border: 0;
    border-radius: 8px;
    color: var(--fr-navy-950);
    font-weight: 900;
    padding: 11px 15px;
}

.fr-store-content--commerce input.input-text,
.fr-store-content--commerce textarea,
.fr-store-content--commerce select {
    border: 1px solid var(--fr-line);
    border-radius: 8px;
    min-height: 43px;
    padding: 9px;
}

.fr-store-footer { background: var(--fr-navy-950); color: #cdd9e8; padding: 38px 0 21px; }

.fr-store-footer__inner { display: grid; gap: 25px; }
.fr-store-footer .fr-store-logo { color: var(--fr-white); }
.fr-store-footer p { margin-bottom: 0; max-width: 370px; }

.fr-store-footer__links {
    display: grid;
    gap: 9px;
}

.fr-store-footer__links a { color: var(--fr-white); font-size: 0.9rem; font-weight: 750; text-decoration: none; }
.fr-store-footer__links a:hover { color: #ffcf84; }

.fr-store-footer__legal {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.81rem;
    margin: 26px auto 0;
    max-width: var(--fr-shell);
    padding: 17px 18px 0;
}

:focus-visible {
    outline: 3px solid #ffb545;
    outline-offset: 3px;
}

.fr-store-skip-link {
    background: var(--fr-white);
    border: 3px solid var(--fr-orange);
    color: var(--fr-navy-950);
    font-weight: 900;
    left: 18px;
    padding: 10px 14px;
    position: fixed;
    top: 12px;
    transform: translateY(-180%);
    z-index: 1200;
}

.fr-store-skip-link:focus { transform: translateY(0); }

.fr-store-service-strip__item > .dashicons { color: var(--fr-navy-950); }

.fr-store-home-collections {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scrollbar-width: thin;
}

.fr-store-home-collections a {
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: 10px;
    color: var(--fr-navy-900);
    display: grid;
    flex: 0 0 min(230px, 72vw);
    gap: 3px;
    min-height: 76px;
    padding: 14px 16px;
    text-decoration: none;
}

.fr-store-home-collections a:hover { border-color: var(--fr-orange-dark); }
.fr-store-home-collections small { color: var(--fr-muted); }

@media (min-width: 560px) {
    .fr-store-service-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fr-store-service-strip__item { border-bottom: 0; border-right: 1px solid rgba(255, 255, 255, 0.35); padding-left: 18px; padding-right: 18px; }
    .fr-store-service-strip__item:last-child { border-right: 0; }
    .fr-store-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
    .fr-store-menu-toggle { display: none; }
    .fr-store-header__navigation { display: block; }
    .fr-store-header__navigation-inner { align-items: center; display: flex; gap: 22px; padding-bottom: 0; padding-top: 0; }
    .fr-store-category-navigation { border-bottom: 0; flex: 1 1 auto; padding-bottom: 0; }
    .fr-store-navigation { flex: 0 0 auto; padding-top: 0; }
    .fr-store-menu { justify-content: flex-end; }
    .fr-store-footer__inner { grid-template-columns: 1fr auto; }
    .fr-store-footer__links { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
}

@media (min-width: 980px) {
    .fr-store-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .woocommerce ul.products { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .fr-store-confidence { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fr-store-confidence__item { border-bottom: 0; border-right: 1px solid var(--fr-line); }
    .fr-store-confidence__item:last-child { border-right: 0; }
}

@media (max-width: 559px) {
    .fr-store-header__utility p { display: none; }
    .fr-store-header__utility .fr-store-shell { justify-content: flex-end; }
    .fr-store-header__main { grid-template-columns: auto auto; }
    .fr-store-search { grid-column: 1 / -1; grid-row: 2; margin-bottom: 10px; }
    .fr-store-header__actions { justify-content: flex-end; }
    .fr-store-cart__label { display: none; }
    .fr-store-section__heading { align-items: start; flex-direction: column; gap: 7px; }
}

@media (max-width: 759px) {
    .fr-store-category-navigation,
    .fr-store-menu { align-items: flex-start; flex-direction: column; }
}

.fr-store-content--commerce div.product {
    display: grid;
    gap: clamp(22px, 4vw, 54px);
    min-width: 0;
}

.fr-store-content--commerce div.product::before,
.fr-store-content--commerce div.product::after { display: none; }

.fr-store-content--commerce div.product .woocommerce-product-gallery,
.fr-store-content--commerce div.product .summary {
    float: none !important;
    margin: 0 !important;
    min-width: 0;
    width: 100% !important;
}

.fr-store-content--commerce div.product .woocommerce-product-gallery {
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius);
    overflow: hidden;
    padding: clamp(10px, 2vw, 20px);
}

.fr-store-content--commerce div.product .woocommerce-product-gallery img {
    border-radius: var(--fr-radius-sm);
    object-fit: contain;
}

.fr-store-content--commerce div.product .summary {
    align-self: start;
    background: var(--fr-white);
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius);
    box-shadow: 0 12px 28px rgba(21, 35, 58, 0.08);
    padding: clamp(20px, 3vw, 34px);
}

.fr-store-content--commerce div.product .summary .product_title {
    color: var(--fr-navy-950);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0 0 12px;
}

.fr-store-content--commerce div.product .summary > .price,
.fr-store-content--commerce div.product .woocommerce-variation-price .price {
    color: var(--fr-navy-900);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 900;
}

.fr-store-content--commerce div.product .summary .stock {
    color: var(--fr-success);
    font-weight: 800;
}

.fr-store-content--commerce div.product .woocommerce-tabs,
.fr-store-content--commerce div.product .related,
.fr-store-content--commerce div.product .up-sells {
    grid-column: 1 / -1;
    min-width: 0;
}

.fr-store-content--commerce .fr-store-ranking-badge {
    align-items: center;
    background: var(--fr-orange-soft);
    border: 1px solid #f5c47f;
    border-radius: 999px;
    color: var(--fr-navy-900);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.025em;
    margin: 0 0 16px;
    min-height: 30px;
    padding: 5px 11px;
    text-transform: uppercase;
}

.fr-store-content--commerce .fr-store-variation-chips {
    background: #f8fafc;
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius-sm);
    display: grid;
    gap: 16px;
    margin: 0 0 20px;
    padding: 16px;
}

.fr-store-content--commerce .fr-store-variation-chip-group { display: grid; gap: 8px; }
.fr-store-content--commerce .fr-store-variation-chip-group__label { color: var(--fr-navy-900); font-weight: 800; margin: 0; }
.fr-store-content--commerce .fr-store-variation-chip-group__options { display: flex; flex-wrap: wrap; gap: 8px; }

.fr-store-content--commerce .fr-store-variation-chip,
.fr-store-content--commerce .fr-store-variation-reset {
    appearance: none;
    background: var(--fr-white);
    border: 2px solid var(--fr-line);
    color: var(--fr-navy-900);
    cursor: pointer;
    min-height: 44px;
}

.fr-store-content--commerce .fr-store-variation-chip {
    border-radius: 9px;
    min-width: 48px;
    padding: 9px 14px;
}

.fr-store-content--commerce .fr-store-variation-chip:hover { border-color: var(--fr-orange-dark); }

.fr-store-content--commerce .fr-store-variation-chip.is-selected {
    background: var(--fr-navy-900);
    border-color: var(--fr-navy-900);
    color: var(--fr-white);
}

.fr-store-content--commerce .fr-store-variation-chip:disabled {
    background: #edf1f6;
    border-color: #c6cfdb;
    border-style: dashed;
    color: var(--fr-muted);
    cursor: not-allowed;
    opacity: 0.68;
}

.fr-store-content--commerce .fr-store-variation-reset {
    background: transparent;
    border-color: transparent;
    border-radius: 7px;
    justify-self: start;
    min-height: 40px;
    padding: 7px 4px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.fr-store-content--commerce .fr-store-variation-reset:hover,
.fr-store-content--commerce .reset_variations:hover { color: var(--fr-orange-dark); }

.fr-store-content--commerce .fr-store-variation-chip:focus-visible,
.fr-store-content--commerce .fr-store-variation-reset:focus-visible,
.fr-store-content--commerce .reset_variations:focus-visible {
    box-shadow: 0 0 0 6px var(--fr-navy-900);
    outline: 3px solid var(--fr-white);
    outline-offset: 0;
}

.fr-store-content--commerce .reset_variations {
    color: var(--fr-navy-900);
    font-weight: 800;
    text-underline-offset: 3px;
}

.fr-store-content--commerce div.product form.cart {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.fr-store-content--commerce div.product form.cart .variations {
    flex: 1 0 100%;
    margin-bottom: 6px;
}

.fr-store-content--commerce div.product form.cart .variations th,
.fr-store-content--commerce div.product form.cart .variations td {
    display: block;
    padding: 4px 0;
    text-align: left;
}

.fr-store-content--commerce div.product form.cart .variations select { width: 100%; }
.fr-store-content--commerce div.product form.cart .quantity { margin: 0; }

.fr-store-content--commerce div.product form.cart .single_add_to_cart_button {
    flex: 1 1 220px;
    min-height: 48px;
}

.fr-store-content--commerce .fr-store-confidence-strip {
    background: #f7fafc;
    border: 1px solid var(--fr-line);
    border-radius: var(--fr-radius-sm);
    margin: 18px 0 12px;
    padding: 14px 16px;
}

.fr-store-content--commerce .fr-store-confidence-strip ul {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fr-store-content--commerce .fr-store-confidence-strip li {
    align-items: flex-start;
    color: var(--fr-navy-800);
    display: flex;
    font-size: 0.88rem;
    font-weight: 700;
    gap: 8px;
}

.fr-store-content--commerce .fr-store-confidence-strip li::before {
    color: var(--fr-success);
    content: "✓";
    flex: 0 0 auto;
    font-weight: 900;
}

.fr-store-content--commerce .fr-store-whatsapp-draft-button {
    align-items: center;
    background: var(--fr-navy-900);
    border: 2px solid var(--fr-navy-900);
    border-radius: 9px;
    color: var(--fr-white);
    display: flex;
    justify-content: center;
    min-height: 48px;
    padding: 11px 16px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.fr-store-content--commerce .fr-store-whatsapp-draft-button:hover {
    background: var(--fr-white);
    color: var(--fr-navy-900);
}

.fr-store-content--commerce .fr-store-whatsapp-draft-button:focus-visible {
    box-shadow: 0 0 0 6px var(--fr-navy-900);
    outline: 3px solid var(--fr-white);
    outline-offset: 0;
}

@media (min-width: 900px) {
    .fr-store-content--commerce div.product {
        grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    }

    .fr-store-content--commerce div.product .woocommerce-product-gallery { grid-column: 1; }
    .fr-store-content--commerce div.product .summary { grid-column: 2; }
}

@media (max-width: 899px) {
    .fr-store-content--commerce { padding-top: 18px; }

    .fr-store-content--commerce div.product .summary {
        border-radius: var(--fr-radius-sm);
        padding: 18px;
    }

    .fr-store-content--commerce .fr-store-variation-chip-group__options { gap: 10px; }

    .fr-store-content--commerce div.product form.cart .quantity,
    .fr-store-content--commerce div.product form.cart .single_add_to_cart_button {
        flex: 1 0 100%;
        width: 100%;
    }

    .fr-store-content--commerce div.product form.cart .quantity .qty { width: 100%; }
}
