@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f7f4ee;
    --surface: #fffdf8;
    --ink: #171a1d;
    --muted: #65625b;
    --line: #ded7ca;
    --gold: #d1aa59;
    --gold-dark: #b98d35;
    --steel: #2f3b43;
    --dark: #101417;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(20, 18, 14, .12);
    --container: min(1180px, calc(100vw - 32px));
    --font-body: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: var(--font-body);
    line-height: 1.58;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a,
button,
[role="button"] {
    cursor: pointer;
}

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

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

.topbar {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px max(16px, calc((100vw - 1180px) / 2));
    color: #f5ead8;
    background: var(--dark);
    font-size: 13px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 253, 248, .94);
    border-bottom: 1px solid rgba(222, 215, 202, .85);
    backdrop-filter: blur(16px);
}

.header-inner {
    width: var(--container);
    min-height: 76px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-mark__sign {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    color: var(--gold);
    background: var(--ink);
    border-radius: 50%;
    font-size: 15px;
}

.brand-mark__text {
    font-size: 19px;
    text-transform: uppercase;
}

.custom-logo-link img {
    max-width: 220px;
    max-height: 58px;
    object-fit: contain;
}

.primary-nav ul,
.footer-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a {
    color: var(--steel);
    font-size: 14px;
    font-weight: 700;
}

.primary-nav a:hover,
.footer-nav a:hover,
.footer-meta a:hover {
    color: var(--gold-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius);
}

.cart-count {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    color: var(--ink);
    background: var(--gold);
    border-radius: 999px;
    font-size: 12px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.site-main {
    min-height: 60vh;
}

.hero {
    min-height: min(720px, calc(100vh - 40px));
    display: grid;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.hero__content {
    width: var(--container);
    margin: 0 auto;
    padding: 96px 0 120px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.05;
}

.hero h1,
.page-hero h1,
.shop-hero h1,
.single-post__head h1 {
    font-family: var(--font-display);
    font-size: clamp(46px, 8vw, 96px);
    font-weight: 700;
    letter-spacing: 0;
}

.hero p:not(.eyebrow) {
    max-width: 640px;
    margin: 22px 0 0;
    color: #f2eee6;
    font-size: 19px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 16px;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    color: var(--ink);
    background: transparent;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    transform: translateY(-1px);
}

.button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    min-height: 58px;
    padding: 0 28px;
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
    border-radius: 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.button--ghost {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .45);
    color: inherit;
}

.trust-strip {
    width: var(--container);
    margin: -46px auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.trust-strip div {
    min-width: 0;
    padding: 22px;
    border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
    border-right: 0;
}

.trust-strip strong,
.trust-strip span {
    display: block;
}

.trust-strip strong {
    font-size: 15px;
}

.trust-strip span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.section,
.content-shell,
.shop-layout,
.shop-hero,
.page-hero,
.single-post__head,
.contact-grid,
.form-layout,
.service-grid {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 86px 0;
}

.section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.section__head h2,
.service-tile h2,
.section--split h2,
.form-layout h1,
.contact-grid h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 54px);
    letter-spacing: 0;
}

.section__head a {
    color: var(--gold-dark);
    font-weight: 800;
}

.empty-state {
    padding: 28px;
    color: var(--muted);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 16px;
    padding: 30px 0 70px;
}

.service-tile {
    min-height: 310px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.service-tile--dark {
    color: #fff;
    background: var(--ink);
}

.service-tile span {
    color: var(--gold);
    font-weight: 850;
    text-transform: uppercase;
}

.service-tile p {
    margin-bottom: 0;
    color: inherit;
    opacity: .78;
}

.section--split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps {
    display: grid;
    gap: 12px;
}

.steps div {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 18px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.steps span {
    color: var(--gold-dark);
    font-weight: 900;
}

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

.post-card a {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.post-card img,
.post-card__placeholder {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    background: linear-gradient(135deg, var(--steel), var(--gold));
}

.post-card span,
.post-card h3,
.post-card p {
    margin-left: 20px;
    margin-right: 20px;
}

.post-card span {
    margin-top: 18px;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 800;
}

.post-card h3 {
    margin-top: 8px;
    font-size: 22px;
}

.post-card p {
    margin-top: 10px;
    margin-bottom: 20px;
    color: var(--muted);
}

.page-hero,
.single-post__head {
    padding: 70px 0 34px;
}

.page-hero p:not(.eyebrow),
.shop-hero p {
    max-width: 740px;
    color: var(--muted);
    font-size: 18px;
}

.content-shell {
    max-width: 900px;
    padding: 18px 0 82px;
}

.content-shell a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.content-shell h2,
.content-shell h3 {
    margin-top: 34px;
}

.legal-page {
    color: #071326;
    background: #fbfaf7;
}

.legal-page__head {
    width: min(1180px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 72px 0 42px;
}

.legal-page__head .eyebrow {
    color: #d1aa59;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1.1;
}

.legal-page__head h1 {
    max-width: 820px;
    margin: 24px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(52px, 5vw, 78px);
    line-height: .92;
}

.legal-page__head p:not(.eyebrow) {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(7, 19, 38, .56);
    font-size: 18px;
    line-height: 1.65;
}

.legal-page__layout {
    width: min(900px, calc(100vw - 52px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(32px, 5vw, 72px);
    padding: 0 0 98px;
}

.legal-page__aside,
.legal-page__content {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
}

.legal-page__aside {
    position: sticky;
    top: 116px;
    align-self: start;
    padding: 26px;
}

.legal-page__aside span {
    color: #d1aa59;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.legal-page__aside strong {
    display: block;
    margin-top: 10px;
    color: #071326;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
}

.legal-page__aside p {
    margin: 18px 0 0;
    color: rgba(7, 19, 38, .56);
    font-size: 14px;
    line-height: 1.65;
}

.legal-page__content {
    padding: clamp(30px, 4.5vw, 58px);
    color: rgba(7, 19, 38, .74);
    font-size: 17px;
    line-height: 1.82;
}

.legal-page__content > *:first-child {
    margin-top: 0;
}

.legal-page__content h2,
.legal-page__content h3 {
    margin: 1.65em 0 .65em;
    color: #071326;
    font-family: var(--font-display);
    line-height: 1.05;
}

.legal-page__content h2 {
    font-size: clamp(34px, 3vw, 48px);
}

.legal-page__content h3 {
    font-size: clamp(26px, 2.2vw, 34px);
}

.legal-page__content p,
.legal-page__content ul,
.legal-page__content ol {
    margin-bottom: 1.1em;
}

.legal-page__content ul,
.legal-page__content ol {
    padding-left: 1.25em;
}

.legal-page__content a {
    color: #b98d35;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.legal-page__notice {
    padding: 18px 20px;
    color: #071326;
    background: #f5f2ec;
    border-left: 4px solid #d1aa59;
    font-weight: 600;
}

.search-landing,
.search-hero,
.search-results-shell {
    width: var(--container);
    margin: 0 auto;
}

.search-landing,
.search-hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 42px;
    align-items: end;
    padding: 76px 0 44px;
}

.search-landing h2,
.search-hero h1,
.search-results-head h2,
.search-empty h2 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 68px);
    letter-spacing: 0;
}

.search-landing p:not(.eyebrow),
.search-hero p:not(.eyebrow),
.search-empty p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.search-panel {
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.search-panel__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.search-panel__row input[type="search"] {
    min-height: 54px;
    font-size: 16px;
}

.search-panel__row button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 20px;
    color: #111;
    background: var(--gold);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
}

.search-panel__row button .icon {
    width: 18px;
    height: 18px;
}

.search-panel__quick {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.search-panel__quick a {
    padding: 7px 10px;
    color: var(--steel);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
}

.search-results-shell {
    padding: 16px 0 88px;
}

.search-results-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.search-type-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.search-type-nav a {
    padding: 10px 12px;
    color: var(--steel);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 900;
}

.search-type-nav a.is-active {
    color: #111;
    background: var(--gold);
    border-color: var(--gold);
}

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

.search-empty {
    padding: 34px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.single-post__image {
    width: var(--container);
    margin: 20px auto;
}

.single-post__image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius);
}

/* Blog / knowledge base. */
.knowledge-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 75% 35%, rgba(20, 89, 139, .25), transparent 35%),
        linear-gradient(105deg, #00162a 0%, #061f39 62%, #082541 100%);
}

.knowledge-hero--light {
    color: #071326;
    background: #fbfaf7;
}

.knowledge-hero--light::after {
    display: none;
}

.knowledge-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 12, 24, .04), rgba(0, 12, 24, .46));
    pointer-events: none;
}

.knowledge-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - 52px));
    min-height: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 86px 0;
}

.knowledge-hero--archive .knowledge-hero__inner {
    min-height: 410px;
}

.knowledge-hero .eyebrow,
.knowledge-feed .eyebrow,
.knowledge-related .eyebrow {
    color: #d1aa59;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1.1;
    text-transform: uppercase;
}

.knowledge-hero h1,
.knowledge-single__head h1,
.knowledge-feed__head h2,
.knowledge-related__head h2 {
    margin: 0;
    color: inherit;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0;
}

.knowledge-hero h1 {
    max-width: 920px;
    margin-top: 26px;
    color: #fff;
    font-size: clamp(54px, 5.6vw, 92px);
    line-height: .92;
}

.knowledge-hero--light h1 {
    color: #071326;
}

.knowledge-hero p:not(.eyebrow),
.knowledge-hero__description {
    max-width: 760px;
    margin-top: 28px;
    color: rgba(232, 238, 247, .72);
    font-size: 19px;
    line-height: 1.65;
}

.knowledge-hero--light p:not(.eyebrow) {
    color: rgba(7, 19, 38, .56);
}

.knowledge-search {
    width: min(760px, 100%);
    min-height: 62px;
    margin-top: 42px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    background: #fff;
    border: 0;
    box-shadow: 0 14px 36px rgba(7, 19, 38, .06);
}

.knowledge-search input,
.knowledge-search button {
    appearance: none;
    border: 0 !important;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
}

.knowledge-search input {
    min-width: 0;
    color: #071326;
    background: transparent;
}

.knowledge-search input::placeholder {
    color: rgba(7, 19, 38, .42);
}

.knowledge-search button {
    min-width: 156px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #071326;
    background: #d1aa59;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.knowledge-search:focus-within {
    box-shadow: 0 14px 36px rgba(7, 19, 38, .06), 0 0 0 2px rgba(209, 170, 89, .55);
}

.knowledge-search button svg {
    width: 18px;
    height: 18px;
}

.knowledge-index {
    color: #071326;
    background: #fbfaf7;
}

.knowledge-index__inner {
    width: min(1380px, calc(100vw - 52px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(270px, .34fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 72px);
    padding: 82px 0 98px;
}

.knowledge-sidebar {
    position: sticky;
    top: 116px;
    align-self: start;
    display: grid;
    gap: 22px;
}

.knowledge-sidebar__block,
.knowledge-card,
.knowledge-single__box,
.knowledge-author {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
}

.knowledge-sidebar__block {
    padding: 26px;
}

.knowledge-sidebar__block h2,
.knowledge-single__box h2 {
    margin: 0 0 18px;
    color: #071326;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
}

.knowledge-tax-list {
    display: grid;
    gap: 8px;
}

.knowledge-tax-list a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    color: rgba(7, 19, 38, .72);
    border-bottom: 1px solid rgba(7, 19, 38, .08);
    text-decoration: none;
}

.knowledge-tax-list a:hover,
.knowledge-tax-list a.is-active {
    color: #d1aa59;
}

.knowledge-tax-list small {
    min-width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: #071326;
    background: #f2eadb;
    font-size: 12px;
    font-weight: 800;
}

.knowledge-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.knowledge-tag-cloud a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: rgba(7, 19, 38, .68);
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.knowledge-tag-cloud a:hover,
.knowledge-tag-cloud a.is-active {
    color: #071326;
    background: #d1aa59;
    border-color: #d1aa59;
}

.knowledge-feed__head {
    max-width: 790px;
    margin-bottom: 34px;
}

.knowledge-feed__head h2 {
    margin-top: 18px;
    color: #071326;
    font-size: clamp(42px, 4vw, 64px);
    line-height: .98;
}

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

.knowledge-grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.knowledge-card {
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.knowledge-card:hover {
    transform: translateY(-4px);
    border-color: rgba(209, 170, 89, .42);
    box-shadow: 0 18px 44px rgba(7, 19, 38, .09);
}

.knowledge-card a {
    min-height: auto;
    display: inline-flex;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    text-decoration: none;
}

.knowledge-card span,
.knowledge-card h3,
.knowledge-card p {
    margin: 0;
}

.knowledge-card__image {
    width: 100%;
    display: block !important;
    overflow: hidden !important;
}

.knowledge-card__image img,
.knowledge-card__placeholder {
    width: 100%;
    aspect-ratio: 1.34;
    display: grid;
    place-items: center;
    color: #d1aa59;
    background:
        radial-gradient(circle at 70% 30%, rgba(209, 170, 89, .18), transparent 32%),
        linear-gradient(135deg, #00162a, #082541);
    object-fit: cover;
    transition: transform .28s ease;
}

.knowledge-card:hover .knowledge-card__image img {
    transform: scale(1.035);
}

.knowledge-card__placeholder svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.6;
}

.knowledge-card__body {
    min-height: 300px;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.knowledge-card__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    color: rgba(7, 19, 38, .45);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.knowledge-card__meta a {
    min-width: 0;
    color: #d1aa59;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.knowledge-card__meta span {
    justify-self: end;
    color: rgba(7, 19, 38, .45);
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    white-space: nowrap;
}

.knowledge-card h3 {
    margin-top: 16px;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.02;
}

.knowledge-card h3 a:hover,
.knowledge-card__link:hover {
    color: #d1aa59;
}

.knowledge-card p {
    margin-top: 16px;
    color: rgba(7, 19, 38, .56);
    font-size: 15px;
    line-height: 1.65;
}

.knowledge-card__link {
    width: max-content;
    display: inline-flex !important;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
    color: #d1aa59 !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 0 !important;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color .2s ease;
    cursor: pointer;
}

.knowledge-card__link::after {
    content: "";
    width: 28px;
    height: 1px;
    display: inline-block;
    background: currentColor;
    transform: translateY(-1px);
    transition: width .2s ease;
}

.knowledge-card__link:hover {
    color: #d1aa59 !important;
}

.knowledge-card__link:hover::after {
    width: 38px;
}

.knowledge-single {
    color: #071326;
    background: #fbfaf7;
}

.knowledge-single__hero {
    color: #fff;
    background:
        radial-gradient(circle at 72% 34%, rgba(20, 89, 139, .25), transparent 34%),
        linear-gradient(105deg, #00162a 0%, #061f39 58%, #082541 100%);
}

.knowledge-single__head {
    width: min(1180px, calc(100vw - 52px));
    min-height: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 82px 0;
}

.knowledge-single__head h1 {
    max-width: 1040px;
    color: #fff;
    font-size: clamp(52px, 5.2vw, 88px);
    line-height: .94;
}

.knowledge-single__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 24px;
    margin-top: 28px;
    color: rgba(232, 238, 247, .68);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.knowledge-single__meta a {
    color: #d1aa59;
    text-decoration: none;
}

.knowledge-single__meta span {
    white-space: nowrap;
}

.knowledge-single__image {
    width: min(1180px, calc(100vw - 52px));
    margin: -64px auto 0;
    position: relative;
    z-index: 2;
}

.knowledge-single__image img {
    width: 100%;
    max-height: 620px;
    display: block;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(7, 19, 38, .18);
}

.knowledge-single__layout {
    width: min(1180px, calc(100vw - 52px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(32px, 5vw, 70px);
    padding: 76px 0 92px;
}

.knowledge-single__aside {
    position: sticky;
    top: 116px;
    align-self: start;
    display: grid;
    gap: 18px;
}

.knowledge-author {
    padding: 20px;
}

.knowledge-author span {
    display: block;
    color: #d1aa59;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.knowledge-author strong {
    display: block;
    margin-top: 4px;
    color: #071326;
}

.knowledge-single__box {
    padding: 22px;
}

.knowledge-content {
    max-width: 780px;
    color: rgba(7, 19, 38, .76);
    font-size: 18px;
    line-height: 1.85;
}

.knowledge-content > *:first-child {
    margin-top: 0;
}

.knowledge-content h2,
.knowledge-content h3,
.knowledge-content h4 {
    margin-top: 1.55em;
    color: #071326;
    font-family: var(--font-display);
    line-height: 1.05;
}

.knowledge-content h2 {
    font-size: clamp(36px, 3vw, 52px);
}

.knowledge-content h3 {
    font-size: clamp(28px, 2.5vw, 38px);
}

.knowledge-content p,
.knowledge-content ul,
.knowledge-content ol,
.knowledge-content blockquote,
.knowledge-content figure {
    margin-bottom: 1.35em;
}

.knowledge-content a {
    color: #b98d35;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.knowledge-content blockquote {
    margin-left: 0;
    padding: 22px 28px;
    color: #071326;
    background: #fff;
    border-left: 4px solid #d1aa59;
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
}

.knowledge-content img {
    max-width: 100%;
    height: auto;
}

.knowledge-related {
    width: min(1380px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 0 0 98px;
}

.knowledge-related__head {
    margin-bottom: 28px;
    text-align: center;
}

.knowledge-related__head h2 {
    margin-top: 16px;
    color: #071326;
    font-size: clamp(42px, 4vw, 64px);
}

.knowledge-feed .navigation.pagination,
.knowledge-related .navigation.pagination,
.knowledge-index .navigation.pagination {
    margin-top: 42px;
}

.contact-grid,
.form-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 44px;
    padding: 24px 0 86px;
}

.contact-card,
.request-form,
.shop-filters,
.product-trust,
.checkout-trust {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.contact-card,
.request-form {
    padding: 26px;
}

.trust-list {
    padding-left: 18px;
    color: var(--muted);
}

.request-form label,
.shop-filters label,
.woocommerce form .form-row label {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
    color: var(--steel);
    font-size: 14px;
    font-weight: 800;
}

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

input,
select,
textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

textarea {
    resize: none;
}

select.select2-hidden-accessible,
.select2-hidden-accessible {
    width: 1px !important;
    min-width: 1px !important;
    max-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    max-height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* WooCommerce password controls cleanup. */
.woocommerce form .password-input,
.woocommerce-page form .password-input,
.a2-auth-card form .password-input,
.a2-password-card form .password-input,
.woocommerce-MyAccount-content form .password-input {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    position: relative !important;
}

.woocommerce form .password-input input[type="password"],
.woocommerce form .password-input input[type="text"],
.woocommerce-page form .password-input input[type="password"],
.woocommerce-page form .password-input input[type="text"],
.a2-auth-card form .password-input input,
.a2-password-card form .password-input input,
.woocommerce-MyAccount-content form .password-input input {
    padding-right: 52px !important;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input,
.a2-auth-card form .show-password-input,
.a2-password-card form .show-password-input,
.woocommerce-MyAccount-content form .show-password-input {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 2 !important;
    display: grid !important;
    place-items: center !important;
    transform: none !important;
    color: rgba(7, 19, 38, .55) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline-offset: -2px !important;
    text-indent: 0 !important;
}

.woocommerce form .show-password-input::before,
.woocommerce-page form .show-password-input::before,
.a2-auth-card form .show-password-input::before,
.a2-password-card form .show-password-input::before,
.woocommerce-MyAccount-content form .show-password-input::before {
    content: "" !important;
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    transform: none !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 10C2.75 6.95 5.8 4.75 10 4.75C14.2 4.75 17.25 6.95 18.5 10C17.25 13.05 14.2 15.25 10 15.25C5.8 15.25 2.75 13.05 1.5 10Z' stroke='%23071326' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='10' cy='10' r='2.8' stroke='%23071326' stroke-width='1.6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: 20px 20px !important;
    background-position: center !important;
    clip-path: none !important;
    opacity: .72;
}

.woocommerce form .show-password-input.display-password::before,
.woocommerce-page form .show-password-input.display-password::before,
.a2-auth-card form .show-password-input.display-password::before,
.a2-password-card form .show-password-input.display-password::before,
.woocommerce-MyAccount-content form .show-password-input.display-password::before {
    opacity: 1;
}

.woocommerce-password-strength,
.woocommerce-password-hint {
    grid-column: 1 / -1;
    width: 100%;
    margin: 10px 0 0 !important;
    color: rgba(7, 19, 38, .66);
    font-size: 13px;
    font-weight: 620;
    line-height: 1.55;
}

.woocommerce-password-strength:empty,
.woocommerce-password-hint:empty,
.wc-block-components-password-strength.hidden,
.wc-block-components-password-strength[hidden] {
    display: none !important;
}

.woocommerce-password-strength {
    padding: 10px 12px;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .1);
    border-left: 3px solid #d1aa59;
}

.wc-block-components-password-strength {
    width: 100%;
    margin: 10px 0 0 !important;
    display: grid;
    gap: 8px;
}

.wc-block-components-password-strength__meter,
meter.wc-block-components-password-strength__meter {
    width: 100% !important;
    height: 8px !important;
    min-height: 8px !important;
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: rgba(7, 19, 38, .1) !important;
}

.wc-block-components-password-strength__result {
    color: rgba(7, 19, 38, .66);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.notice-success {
    margin-bottom: 18px;
    padding: 12px 14px;
    color: #103f2c;
    background: #e4f5ed;
    border: 1px solid #b7dfc9;
    border-radius: var(--radius);
}

.shop-hero {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 32%, rgba(20, 89, 139, .27), transparent 34%),
        linear-gradient(105deg, #00162a 0%, #061f39 62%, #082541 100%);
}

.shop-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 12, 24, .04), rgba(0, 12, 24, .34));
    pointer-events: none;
}

.shop-hero__content {
    position: relative;
    z-index: 1;
    width: min(1320px, calc(100vw - 52px));
    min-height: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 86px 0;
}

.shop-hero .eyebrow {
    color: #d1aa59;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1.1;
}

.shop-hero h1 {
    max-width: 920px;
    margin-top: 26px;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(54px, 5.6vw, 92px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .92;
}

.shop-hero p {
    max-width: 760px;
    margin-top: 28px;
    color: rgba(232, 238, 247, .72);
    font-size: 19px;
    line-height: 1.65;
}

.shop-hero__search {
    margin-top: 42px;
    margin-bottom: 8px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    width: min(1380px, calc(100vw - 52px));
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
    padding: 82px 0 98px;
    color: #071326;
}

.shop-layout__filters {
    position: sticky;
    top: 104px;
}

.shop-filters {
    padding: 26px;
    background: #fff;
    border-color: rgba(7, 19, 38, .07);
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
}

.shop-filters__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.shop-filters__head h2 {
    color: #071326;
    font-family: var(--font-display);
    font-size: 30px;
    line-height: 1;
}

.shop-filters__head a {
    color: #d1aa59;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-filters label {
    color: rgba(7, 19, 38, .66);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-filters input,
.shop-filters select {
    color: #071326;
    background: #fbfaf7;
    border-color: rgba(7, 19, 38, .08);
    border-radius: 0;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

.woocommerce-result-count {
    margin: 0;
    color: rgba(7, 19, 38, .56);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.woocommerce-ordering {
    margin: 0;
}

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

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

.woocommerce ul.products li.product,
.product-card {
    float: none;
    width: auto;
    margin: 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(209, 170, 89, .42);
    box-shadow: 0 18px 44px rgba(7, 19, 38, .09);
}

.product-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #00162a;
}

.product-card__image img,
.product-card__placeholder {
    width: 100%;
    aspect-ratio: 1.34;
}

.product-card__image img {
    object-fit: cover;
    transition: transform .28s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.035);
}

.product-card__placeholder {
    display: grid;
    place-items: center;
    color: #d1aa59;
    background:
        radial-gradient(circle at 70% 30%, rgba(209, 170, 89, .18), transparent 32%),
        linear-gradient(135deg, #00162a, #082541);
}

.product-card__placeholder span {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border: 1px solid rgba(209, 170, 89, .72);
    border-radius: 50%;
    color: #d1aa59;
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    color: #fff;
    background: var(--ink);
    border-radius: 0;
    font-size: 12px;
    font-weight: 850;
}

.product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 330px;
    padding: 24px;
}

.product-card h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 0;
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(26px, 2.2vw, 34px);
    line-height: 1.02;
}

.product-card h2:hover {
    color: #d1aa59;
}

.product-card__meta {
    min-height: 22px;
    margin-top: 14px;
    color: rgba(7, 19, 38, .45);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.product-card__specs span {
    max-width: 100%;
    padding: 7px 10px;
    color: rgba(7, 19, 38, .68);
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    display: block;
    margin-top: 18px;
    color: #b98d35;
    font-size: 22px;
    font-weight: 900;
}

.product-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
    width: 100%;
    min-height: 58px;
    gap: 8px;
    padding: 0 18px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-card__actions .button--primary {
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
}

.product-card__actions .button--primary:hover {
    color: #061b31;
    background: #e0bb6b;
    border-color: #e0bb6b;
}

.product-card__actions .add_to_cart_button {
    color: #071326;
    background: transparent;
    border-color: rgba(7, 19, 38, .22);
}

.product-card__actions .add_to_cart_button:hover {
    color: #071326;
    background: #f2eadb;
    border-color: #d1aa59;
}

.woocommerce nav.woocommerce-pagination {
    margin-top: 28px;
}

.woocommerce nav.woocommerce-pagination ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    border: 0;
}

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    min-width: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.single-product .site-main {
    color: #071326;
    background: #f3f2ef;
}

.product-showcase {
    color: #071326;
    background: #f3f2ef;
}

.product-showcase__inner {
    width: min(1180px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 18px 0 0;
}

.product-showcase__context {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    color: rgba(7, 19, 38, .48);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.product-showcase__context a {
    color: #b98d35;
}

.product-showcase__context span::before {
    content: "/";
    margin-right: 10px;
    color: rgba(7, 19, 38, .22);
}

.single-product .woocommerce-notices-wrapper {
    width: min(1180px, calc(100vw - 52px));
    margin: 0 auto;
}

.single-product-layout {
    width: min(1180px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 18px 0 86px;
    display: grid;
    grid-template-columns: minmax(0, 740px) minmax(320px, 370px);
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

.single-product-layout__gallery,
.single-product-layout__summary {
    min-width: 0;
}

.single-product-layout__gallery {
    position: relative;
}

.product-media {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.product-media__thumbs {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 3px;
    max-height: calc(100vh - 132px);
    overflow: auto;
    padding: 0;
    scrollbar-width: none;
}

.product-media__thumbs::-webkit-scrollbar {
    display: none;
}

.product-media__thumb {
    width: 44px;
    height: 58px;
    display: block;
    overflow: hidden;
    background: transparent;
    border: 0;
    opacity: .72;
    transition: opacity .16s ease, transform .16s ease;
}

.product-media__thumb:hover,
.product-media__thumb.is-active {
    opacity: 1;
    transform: translateY(-1px);
}

.product-media__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-media__stack {
    display: grid;
    gap: 3px;
}

.product-media__frame {
    margin: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    scroll-margin-top: 104px;
}

.product-media__frame img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.product-media__placeholder {
    min-height: 620px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 70% 30%, rgba(209, 170, 89, .18), transparent 32%),
        linear-gradient(135deg, #00162a, #082541);
}

.product-media__placeholder span {
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    color: #d1aa59;
    border: 1px solid rgba(209, 170, 89, .72);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 700;
}

.woocommerce div.product div.images {
    float: none;
    width: 100%;
    margin: 0;
    opacity: 1 !important;
}

.woocommerce-product-gallery {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 18px 48px rgba(7, 19, 38, .09);
}

.woocommerce-product-gallery__wrapper {
    margin: 0;
}

.woocommerce div.product div.images img {
    width: 100%;
    background: #00162a;
}

.woocommerce-product-gallery__image--placeholder {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1.04;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 30%, rgba(209, 170, 89, .2), transparent 32%),
        linear-gradient(135deg, #00162a, #082541);
}

.woocommerce-product-gallery__image--placeholder img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.woocommerce-product-gallery__image--placeholder::before {
    content: "A²";
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
    color: #d1aa59;
    border: 1px solid rgba(209, 170, 89, .72);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 58px;
    font-weight: 700;
}

.woocommerce-product-gallery .flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    margin: 0;
    background: #fff;
}

.woocommerce-product-gallery .flex-control-thumbs li {
    width: auto;
}

.woocommerce div.product div.summary {
    float: none;
    width: 100%;
}

.single-product-layout__summary {
    position: sticky;
    top: 104px;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    max-height: calc(100vh - 128px);
    overflow: auto;
    scrollbar-width: none;
}

.single-product-layout__summary::-webkit-scrollbar {
    display: none;
}

.single-product div.product .product_title,
.woocommerce div.product .product_title {
    margin: 0;
    color: #071326;
    font-family: var(--font-body);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 820;
    letter-spacing: .1em;
    line-height: 1.32;
    text-transform: uppercase;
}

.single-product div.product p.price,
.single-product div.product span.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    margin: 24px 0 0;
    color: #b98d35;
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 900;
    letter-spacing: .04em;
    line-height: 1.16;
}

.a2-price {
    display: grid;
    gap: 8px;
}

.a2-price__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.a2-price__current {
    color: #b98d35;
}

.a2-price__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    color: #061b31;
    background: #d1aa59;
    border: 1px solid #d1aa59;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.a2-price__regular,
.a2-price__lowest {
    display: block;
    color: rgba(7, 19, 38, .54);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: .04em;
    line-height: 1.45;
}

.a2-price__regular del {
    color: rgba(7, 19, 38, .46);
    text-decoration-thickness: 1px;
}

.product-card__price .a2-price,
.woocommerce ul.products li.product .price .a2-price {
    gap: 6px;
}

.product-card__price .a2-price__row,
.woocommerce ul.products li.product .price .a2-price__row {
    gap: 8px;
}

.product-card__price .a2-price__badge,
.woocommerce ul.products li.product .price .a2-price__badge {
    min-height: 24px;
    padding: 0 8px;
    font-size: 10px;
}

.product-card__price .a2-price__regular,
.product-card__price .a2-price__lowest,
.woocommerce ul.products li.product .price .a2-price__regular,
.woocommerce ul.products li.product .price .a2-price__lowest {
    font-size: 10px;
    letter-spacing: .02em;
}

.woocommerce-product-details__short-description {
    display: none;
}

.product-inline-description {
    margin-top: 28px;
    padding-top: 0;
    border-top: 0;
    color: rgba(7, 19, 38, .72);
    font-size: 14px;
    line-height: 1.82;
    order: 7;
}

.product-inline-description > *:first-child {
    margin-top: 0;
}

.product-inline-description > *:last-child {
    margin-bottom: 0;
}

.single-product-layout__summary p24-installment {
    display: none !important;
}

.product-payment-box {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding: 18px;
    background: #071326;
    color: #fff;
}

.product-payment-box__head {
    display: grid;
    gap: 5px;
}

.product-payment-box__head strong {
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
}

.product-payment-box__head span,
.product-payment-box p {
    margin: 0;
    color: rgba(232, 238, 247, .68);
    font-size: 13px;
    line-height: 1.55;
}

.product-payment-box__methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-payment-box__methods span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.single-product div.product form.cart,
.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 0;
    order: 3;
}

.single-product div.product form.cart div.quantity,
.single-product div.product form.cart .quantity,
.woocommerce div.product form.cart div.quantity,
.woocommerce div.product form.cart .quantity {
    display: none !important;
}

.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button {
    width: auto;
    min-width: 238px;
    min-height: 58px;
    color: #071326;
    background: #d1aa59;
    border-color: #d1aa59;
    border-radius: 0;
    padding: 0 28px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.single-product div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover {
    background: #e0bb6b;
    border-color: #e0bb6b;
}

.single-product div.product form.cart .button.single_add_to_cart_button:disabled {
    cursor: progress;
    opacity: 1;
}

.single-product div.product form.cart .button.single_add_to_cart_button.is-loading {
    gap: 10px;
    color: #071326;
    background: #d1aa59;
    border-color: #d1aa59;
}

.button-dots {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    transform: translateY(1px);
}

.button-dots i {
    width: 5px;
    height: 5px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    animation: bywitekDotPulse 1s ease-in-out infinite;
    opacity: .32;
}

.button-dots i:nth-child(2) {
    animation-delay: .16s;
}

.button-dots i:nth-child(3) {
    animation-delay: .32s;
}

.single-product div.product form.cart .button.single_add_to_cart_button.is-added {
    color: #fff;
    background: #071326;
    border-color: #071326;
}

.ajax-cart-feedback {
    display: none;
    margin-top: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(7, 19, 38, .08);
    background: #fbfaf7;
    color: rgba(7, 19, 38, .68);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.55;
    order: 3;
}

.ajax-cart-feedback--success,
.ajax-cart-feedback--error {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: space-between;
}

.ajax-cart-feedback--success {
    border-color: rgba(209, 170, 89, .34);
    background: rgba(209, 170, 89, .12);
    color: #071326;
}

.ajax-cart-feedback--error {
    border-color: rgba(155, 31, 31, .18);
    background: rgba(155, 31, 31, .06);
    color: #6f1717;
}

.ajax-cart-feedback a {
    color: #b98d35;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-count {
    transition: transform .18s ease, background .18s ease;
}

.cart-count.is-updated {
    transform: scale(1.12);
    background: #e0bb6b;
}

@keyframes bywitekDotPulse {
    0%,
    80%,
    100% {
        opacity: .28;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

.watch-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 26px 0;
}

.product-specs-accordion {
    order: 4;
    margin-top: 24px;
    border-top: 1px solid rgba(7, 19, 38, .14);
    border-bottom: 1px solid rgba(7, 19, 38, .14);
}

.product-specs-accordion + .product-specs-accordion {
    margin-top: 0;
    border-top: 0;
}

.product-specs-accordion summary {
    position: relative;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    color: #071326;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.product-specs-accordion summary span {
    padding-right: 28px;
}

.product-specs-accordion summary::-webkit-details-marker {
    display: none;
}

.product-specs-accordion summary::before,
.product-specs-accordion summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2px;
    display: block;
    width: 13px;
    height: 2px;
    flex: 0 0 auto;
    background: #b98d35;
    border-radius: 999px;
    transform-origin: center;
    transition: transform .22s ease, opacity .18s ease;
}

.product-specs-accordion summary::before {
    transform: translateY(-50%) rotate(90deg) scaleX(1);
}

.product-specs-accordion summary::after {
    transform: translateY(-50%) rotate(0deg) scaleX(1);
}

.product-specs-accordion.is-open summary::before {
    opacity: 0;
    transform: translateY(-50%) rotate(90deg) scaleX(.2);
}

.product-specs-accordion.is-open summary::after {
    transform: translateY(-50%) rotate(180deg) scaleX(1);
}

.product-specs-accordion summary:focus-visible {
    outline: 2px solid rgba(185, 141, 53, .42);
    outline-offset: 4px;
}

.product-specs-accordion__content {
    overflow: hidden;
    contain: layout paint;
}

.product-specs-accordion.is-animating .product-specs-accordion__content {
    transition: height .34s cubic-bezier(.22, 1, .36, 1), opacity .22s ease;
}

.product-info-accordion__content {
    padding: 20px 0 30px;
    color: rgba(7, 19, 38, .72);
    font-size: 13px;
    line-height: 1.72;
}

.product-info-accordion__content > *:first-child {
    margin-top: 0;
}

.product-info-accordion__content p {
    margin: 0 0 20px;
}

.product-info-accordion__content > *:last-child {
    margin-bottom: 0;
}

.product-info-accordion .watch-check-list {
    gap: 8px;
    margin: 12px 0 0;
}

.product-info-accordion .watch-check-list li {
    padding-left: 22px;
}

.single-product-layout__summary .watch-specs {
    order: initial;
}

.product-service-notes {
    order: 5;
    display: grid;
    gap: 10px;
    margin-top: 0;
    padding: 28px 0 22px;
    border-bottom: 1px solid rgba(7, 19, 38, .14);
}

.product-service-notes div {
    display: grid;
    grid-template-columns: minmax(112px, .78fr) minmax(0, 1fr);
    gap: 12px;
}

.product-service-notes span {
    color: rgba(7, 19, 38, .48);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-service-notes strong {
    color: #071326;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.45;
}

.single-product-layout__summary .watch-specs--compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 20px 0 30px;
    background: transparent;
    border: 0;
}

.single-product-layout__summary .watch-specs--compact div {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(110px, .82fr) minmax(0, 1fr);
    gap: 12px;
    padding: 5px 0;
    background: transparent;
    border: 0;
}

.single-product-layout__summary .watch-specs--compact dt {
    color: rgba(7, 19, 38, .54);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0;
    text-transform: none;
}

.single-product-layout__summary .watch-specs--compact dt::before {
    content: "•";
    margin-right: 7px;
    color: #b98d35;
}

.single-product-layout__summary .watch-specs--compact dd {
    margin: 0;
    color: #071326;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.45;
}

.watch-specs div {
    padding: 14px;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
}

.watch-specs dt {
    color: rgba(7, 19, 38, .45);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.watch-specs dd {
    margin: 5px 0 0;
    color: #071326;
    font-weight: 850;
}

.watch-specs--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(7, 19, 38, .08);
    border: 1px solid rgba(7, 19, 38, .08);
}

.single-product-layout__summary .product-payment-box,
.single-product-layout__summary .product-trust,
.single-product-layout__summary .product_meta {
    display: none;
}

.watch-specs--compact div {
    min-height: 74px;
    padding: 14px 16px;
    background: #fbfaf7;
    border: 0;
}

.watch-specs--compact dt {
    color: rgba(7, 19, 38, .42);
    font-size: 10px;
    letter-spacing: .12em;
}

.watch-specs--compact dd {
    margin-top: 7px;
    font-size: 15px;
    line-height: 1.25;
}

.watch-sale-details {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
}

.watch-sale-details div {
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
}

.watch-sale-details dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.watch-sale-details dd {
    margin: 5px 0 0;
    font-weight: 760;
}

.watch-check-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 26px;
    padding: 0;
    list-style: none;
}

.watch-check-list li {
    position: relative;
    padding-left: 28px;
}

.watch-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-dark);
    font-weight: 900;
}

.product-trust {
    display: grid;
    gap: 6px;
    margin-top: 18px;
    padding: 18px;
    background: #fbfaf7;
    border-color: rgba(7, 19, 38, .08);
    border-radius: 0;
}

.product-trust span {
    color: rgba(7, 19, 38, .58);
    font-size: 14px;
    line-height: 1.6;
}

.product-trust strong {
    color: #071326;
    font-family: var(--font-display);
    font-size: 26px;
    line-height: 1;
}

.product-trust ul {
    display: grid;
    gap: 8px;
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
}

.product-trust li {
    position: relative;
    padding-left: 22px;
    color: rgba(7, 19, 38, .68);
    font-size: 13px;
    font-weight: 760;
}

.product-trust li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    background: #d1aa59;
}

.product_meta {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    padding-top: 18px;
    color: rgba(7, 19, 38, .54);
    border-top: 1px solid rgba(7, 19, 38, .08);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product_meta > span {
    display: block;
}

.product_meta a,
.product_meta .sku {
    color: #b98d35;
    font-weight: 850;
}

.product-confidence {
    width: min(1320px, calc(100vw - 52px));
    margin: 0 auto 78px;
    display: grid;
    gap: 28px;
}

.product-confidence__head {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .72fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: end;
}

.product-confidence__head h2,
.product-purchase-flow__intro h2 {
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(42px, 4.7vw, 70px);
    line-height: .94;
    letter-spacing: 0;
}

.product-confidence__head p:not(.eyebrow),
.product-purchase-flow__intro p:not(.eyebrow) {
    margin: 0;
    color: rgba(7, 19, 38, .64);
    font-size: 17px;
    line-height: 1.75;
}

.product-confidence__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid rgba(7, 19, 38, .08);
    background: #fff;
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
}

.product-confidence-card {
    min-width: 0;
    min-height: 248px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(22px, 2.8vw, 32px);
    border-right: 1px solid rgba(7, 19, 38, .08);
}

.product-confidence-card:last-child {
    border-right: 0;
}

.product-confidence-card span {
    color: #b98d35;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.product-confidence-card h3 {
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(25px, 2vw, 32px);
    line-height: 1.04;
}

.product-confidence-card p {
    margin: 0;
    color: rgba(7, 19, 38, .62);
    line-height: 1.7;
}

.product-purchase-flow {
    margin: 0 0 92px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 20%, rgba(209, 170, 89, .14), transparent 28%),
        linear-gradient(105deg, #00162a 0%, #061f39 58%, #082541 100%);
}

.product-purchase-flow__inner {
    width: min(1320px, calc(100vw - 52px));
    margin: 0 auto;
    padding: clamp(56px, 7vw, 88px) 0;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
}

.product-purchase-flow__intro {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 20px;
}

.product-purchase-flow__intro h2 {
    color: #fff;
}

.product-purchase-flow__intro p:not(.eyebrow) {
    color: rgba(232, 238, 247, .72);
}

.product-purchase-flow__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.product-purchase-flow__actions .button {
    min-height: 50px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-purchase-flow__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-purchase-flow__steps article {
    min-height: 230px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: clamp(22px, 3vw, 32px);
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
}

.product-purchase-flow__steps span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #071326;
    background: #d1aa59;
    font-weight: 950;
}

.product-purchase-flow__steps h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(25px, 2.1vw, 34px);
    line-height: 1.04;
}

.product-purchase-flow__steps p {
    margin: 0;
    color: rgba(232, 238, 247, .68);
    line-height: 1.72;
}

.product-details-section {
    width: min(1320px, calc(100vw - 52px));
    padding: 0 0 98px;
}

.woocommerce-tabs {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    border-radius: 0;
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
    padding: clamp(22px, 4vw, 42px);
}

.single-product .woocommerce-tabs ul.tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 0 0 34px;
    border: 0;
    list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    border: 1px solid rgba(7, 19, 38, .08);
    background: #fbfaf7;
    border-radius: 0;
    list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li.active,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: #d1aa59;
    border-color: #d1aa59;
}

.single-product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    color: rgba(7, 19, 38, .68);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #071326;
}

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

.single-product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs .panel {
    color: rgba(7, 19, 38, .72);
    font-size: 17px;
    line-height: 1.82;
}

.single-product .woocommerce-tabs .panel > h2:first-child,
.woocommerce div.product .woocommerce-tabs .panel > h2:first-child {
    margin-top: 0;
}

.single-product .woocommerce-tabs .panel h2,
.single-product .woocommerce-tabs .panel h3,
.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .woocommerce-tabs .panel h3 {
    color: #071326;
    font-family: var(--font-display);
    line-height: 1.05;
}

.single-product .woocommerce-tabs .panel h2,
.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: clamp(36px, 3vw, 52px);
}

.single-product .woocommerce-tabs .panel h3,
.woocommerce div.product .woocommerce-tabs .panel h3 {
    margin-top: 1.55em;
    font-size: clamp(26px, 2vw, 34px);
}

.single-product .related.products {
    margin-top: 54px;
}

.single-product .related.products > h2 {
    max-width: 760px;
    margin: 0 0 26px;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 58px);
    line-height: .98;
}

.woocommerce table.shop_table,
.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-account .woocommerce {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.woocommerce table.shop_table {
    overflow: hidden;
}

.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-account .woocommerce {
    padding: 22px;
}

.checkout-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding: 14px;
}

.checkout-trust span {
    padding: 10px;
    color: var(--steel);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 850;
    text-align: center;
}

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

/* Cart page. */
.cart-page {
    color: #071326;
    background: #fbfaf7;
}

.cart-page__head {
    margin-bottom: 34px;
}

.cart-page__head .eyebrow {
    color: #d1aa59;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1.1;
}

.cart-page__head h1 {
    max-width: 840px;
    margin: 24px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 72px);
    line-height: .92;
}

.cart-page__body {
    width: min(1320px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 64px 0 98px;
}

.cart-page .woocommerce {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, .55fr);
    gap: 28px;
    align-items: start;
}

.cart-page .woocommerce-notices-wrapper,
.cart-page .checkout-trust {
    grid-column: 1 / -1;
}

.cart-page .checkout-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
}

.cart-page .checkout-trust span {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    color: rgba(7, 19, 38, .64);
    background: #fff;
    border: 0;
    border-right: 1px solid rgba(7, 19, 38, .07);
    border-radius: 0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-align: center;
    text-transform: uppercase;
}

.cart-page .checkout-trust span:last-child {
    border-right: 0;
}

.cart-page .woocommerce-cart-form,
.cart-page .cart-collaterals,
.a2-empty-cart {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(7, 19, 38, .06);
}

.cart-page .woocommerce-cart-form {
    padding: 0;
    overflow: hidden;
}

.cart-page .cart-collaterals {
    position: sticky;
    top: 116px;
    padding: 30px;
}

.cart-page .woocommerce table.shop_table {
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.cart-page .woocommerce-cart-form table.shop_table thead {
    background: #061f39;
}

.cart-page .woocommerce-cart-form table.shop_table th {
    padding: 18px 16px;
    color: rgba(232, 238, 247, .72);
    border: 0;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cart-page .woocommerce-cart-form table.shop_table td {
    padding: 22px 16px;
    color: #071326;
    border-top: 1px solid rgba(7, 19, 38, .08);
    vertical-align: middle;
}

.cart-page .woocommerce-cart-form table.shop_table tbody tr:first-child td {
    border-top: 0;
}

.cart-page .woocommerce-cart-form .product-thumbnail {
    width: 118px;
}

.cart-page .woocommerce-cart-form .product-thumbnail img {
    width: 96px;
    height: 96px;
    display: block;
    object-fit: cover;
    background: #f5f2ec;
}

.cart-page .woocommerce-cart-form .product-name a {
    color: #071326;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.05;
    text-decoration: none;
}

.cart-page .woocommerce-cart-form .product-name a:hover {
    color: #d1aa59;
}

.cart-page .woocommerce-cart-form .product-price,
.cart-page .woocommerce-cart-form .product-subtotal {
    color: #071326;
    font-weight: 850;
    white-space: nowrap;
}

.cart-page .woocommerce-cart-form .product-subtotal {
    color: #b98d35;
}

.cart-page .woocommerce-cart-form .remove {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: rgba(7, 19, 38, .52) !important;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    text-decoration: none;
}

.cart-page .woocommerce-cart-form .remove:hover {
    color: #071326 !important;
    background: #d1aa59;
    border-color: #d1aa59;
}

.cart-page .quantity .qty {
    width: 82px;
    height: 46px;
    min-height: 46px;
    padding: 8px;
    text-align: center;
    border-radius: 0;
}

.cart-page .woocommerce-cart-form .actions {
    padding: 24px !important;
    background: #fbfaf7;
}

.cart-page .woocommerce-cart-form .actions .coupon {
    display: flex;
    gap: 10px;
    float: left;
}

.cart-page .woocommerce-cart-form .actions .coupon .input-text {
    width: 240px;
    min-height: 48px;
    border-radius: 0;
}

.cart-page .woocommerce-cart-form .actions .button,
.cart-page .cart_totals .wc-proceed-to-checkout .button,
.a2-empty-cart .button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    color: #071326;
    background: #d1aa59;
    border: 1px solid #d1aa59;
    border-radius: 0;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-page .woocommerce-cart-form .actions .button:hover,
.cart-page .cart_totals .wc-proceed-to-checkout .button:hover,
.a2-empty-cart .button:hover {
    color: #061b31;
    background: #e0bb6b;
    border-color: #e0bb6b;
}

.cart-page .woocommerce-cart-form .actions > .button {
    float: right;
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
}

.cart-page .cart_totals {
    float: none;
    width: 100%;
}

.cart-page .cart_totals h2 {
    margin: 0 0 22px;
    color: #071326;
    font-family: var(--font-display);
    font-size: 38px;
    line-height: 1;
}

.cart-page .cart_totals table.shop_table {
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.cart-page .cart_totals table.shop_table th,
.cart-page .cart_totals table.shop_table td {
    padding: 18px 0;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.cart-page .cart_totals table.shop_table th {
    color: rgba(7, 19, 38, .58);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.cart-page .cart_totals table.shop_table td {
    color: #071326;
    font-weight: 850;
    text-align: right;
}

.cart-page .cart_totals .order-total th,
.cart-page .cart_totals .order-total td {
    color: #071326;
    font-size: 18px;
}

.cart-page .cart_totals .order-total td {
    color: #b98d35;
    font-size: 22px;
}

.cart-page .wc-proceed-to-checkout {
    padding: 18px 0 0;
}

.cart-page .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    margin: 0;
}

.cart-page .wc-proceed-to-checkout .checkout-button svg {
    width: 17px;
    height: 17px;
}

.a2-empty-cart {
    grid-column: 1 / -1;
    max-width: 840px;
    margin: 0 auto;
    padding: clamp(34px, 5vw, 64px);
    text-align: center;
}

.a2-empty-cart .woocommerce-info {
    display: none;
}

.a2-empty-cart .eyebrow {
    color: #d1aa59;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .32em;
}

.a2-empty-cart h2 {
    max-width: 680px;
    margin: 20px auto 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(42px, 4.4vw, 68px);
    line-height: .94;
}

.a2-empty-cart p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px auto 0;
    color: rgba(7, 19, 38, .56);
    font-size: 17px;
    line-height: 1.65;
}

.a2-empty-cart .button {
    margin-top: 34px;
}

.site-footer {
    margin-top: 0;
    scroll-margin-top: 110px;
    color: rgba(219, 229, 242, .68);
    background: #061f39;
    border-radius: 0 0 18px 18px;
    border-bottom: 1px solid rgba(209, 170, 89, .28);
}

.footer-inner {
    width: min(1455px, calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1.15fr;
    gap: clamp(46px, 6vw, 118px);
    padding: 78px 0 58px;
}

.footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 20px;
    color: #fff;
}

.footer-logo span {
    color: #d1aa59;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .04em;
}

.footer-logo strong {
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-brand p,
.footer-newsletter p {
    max-width: 320px;
    margin: 28px 0 0;
    color: rgba(180, 195, 214, .58);
    font-size: 15px;
    line-height: 1.55;
}

.footer-column,
.footer-newsletter {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column h2,
.footer-newsletter h2 {
    margin: 0 0 12px;
    color: #d1aa59;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.footer-column a {
    color: rgba(180, 195, 214, .66);
    font-size: 15px;
}

.footer-column a:hover,
.footer-bottom a:hover {
    color: #d1aa59;
}

.vip-newsletter-form {
    margin-top: 18px;
}

.vip-newsletter-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

.vip-newsletter-form__row {
    display: grid;
    grid-template-columns: 1fr 52px;
    width: min(100%, 306px);
    min-height: 38px;
    background: #041528;
    border: 1px solid rgba(209, 170, 89, .22);
}

.vip-newsletter-form input[type="email"] {
    min-height: 38px;
    padding: 0 15px;
    color: #fff;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
}

.vip-newsletter-form input[type="email"]::placeholder {
    color: rgba(199, 211, 226, .58);
}

.vip-newsletter-form button {
    display: grid;
    place-items: center;
    min-height: 38px;
    color: #061f39;
    background: #d1aa59;
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

.vip-newsletter-form button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vip-newsletter-form__notice {
    width: min(100%, 306px);
    margin: 0 0 10px;
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.35;
    border: 1px solid rgba(255,255,255,.12);
}

.vip-newsletter-form__notice--success {
    color: #dbf5e6;
    background: rgba(46, 125, 85, .22);
}

.vip-newsletter-form__notice--info {
    color: #dbeafe;
    background: rgba(71, 117, 163, .22);
}

.vip-newsletter-form__notice--error {
    color: #ffe1e1;
    background: rgba(147, 49, 49, .24);
}

.footer-bottom {
    width: min(1455px, calc(100vw - 64px));
    min-height: 128px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 30px 0 58px;
    border-top: 1px solid rgba(111, 149, 186, .12);
    color: rgba(180, 195, 214, .38);
    font-size: 13px;
    text-align: center;
}

.footer-bottom nav {
    display: inline-flex;
    gap: 14px;
}

.footer-bottom a {
    color: rgba(180, 195, 214, .44);
}

@media (max-width: 980px) {
    .topbar {
        display: none;
    }

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

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .primary-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 68px;
        display: none;
        padding: 18px 16px;
        background: var(--surface);
        border-bottom: 1px solid var(--line);
    }

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

    .primary-nav ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .primary-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
    }

    .header-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
        padding-bottom: 12px;
    }

    .hero {
        min-height: 620px;
        background-position: 62% center;
    }

    .hero__content {
        padding: 74px 0 96px;
    }

    .trust-strip,
    .service-grid,
    .section--split,
    .contact-grid,
    .form-layout,
    .search-landing,
    .search-hero,
    .shop-hero,
    .shop-layout,
    .single-product-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        margin-top: -28px;
    }

    .trust-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-strip div:last-child {
        border-bottom: 0;
    }

    .post-grid,
    .search-result-grid,
    .woocommerce ul.products,
    ul.products,
    .checkout-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-layout__filters {
        position: static;
    }

    .shop-hero {
        align-items: start;
    }

    .single-product-layout__gallery,
    .single-product-layout__summary {
        position: static;
    }

    .single-product-layout__summary {
        max-height: none;
        overflow: visible;
    }

    .product-media {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 18px;
    }

    .product-media__thumb {
        width: 40px;
        height: 52px;
    }

    .watch-specs--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-confidence__head,
    .product-purchase-flow__inner {
        grid-template-columns: 1fr;
    }

    .product-confidence__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-confidence-card:nth-child(2n) {
        border-right: 0;
    }

    .product-confidence-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(7, 19, 38, .08);
    }

    .product-purchase-flow__intro {
        position: static;
    }

    .site-footer {
        margin-top: 46px;
        border-radius: 0 0 18px 18px;
    }

    .footer-inner {
        width: calc(100vw - 38px);
        gap: 34px;
        padding: 56px 0 36px;
    }

    .footer-brand p,
    .footer-newsletter p {
        max-width: 620px;
    }

    .footer-bottom {
        width: calc(100vw - 38px);
        min-height: 0;
        flex-direction: column;
        gap: 12px;
        padding: 26px 0 42px;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 22px, 1180px);
    }

    .brand-mark__text {
        font-size: 16px;
    }

    .hero h1,
    .page-hero h1,
    .shop-hero h1,
    .single-post__head h1 {
        font-size: 44px;
    }

    .hero p:not(.eyebrow) {
        font-size: 16px;
    }

    .section {
        padding: 58px 0;
    }

    .section__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-grid {
        padding-bottom: 36px;
    }

    .service-tile {
        min-height: 240px;
    }

    .form-grid,
    .post-grid,
    .search-result-grid,
    .woocommerce ul.products,
    ul.products,
    .product-card__actions,
    .watch-specs,
    .checkout-trust {
        grid-template-columns: 1fr;
    }

    .search-landing,
    .search-hero,
    .shop-hero {
        padding: 50px 0 30px;
    }

    .search-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .search-type-nav {
        justify-content: flex-start;
    }

    .search-panel__row {
        grid-template-columns: 1fr;
    }

    .single-product-layout {
        padding-top: 12px;
        gap: 30px;
    }

    .product-showcase__inner,
    .single-product-layout,
    .product-confidence,
    .product-purchase-flow__inner,
    .product-details-section {
        width: calc(100vw - 38px);
    }

    .product-showcase__context {
        gap: 8px;
        font-size: 10px;
    }

    .single-product div.product .product_title,
    .woocommerce div.product .product_title {
        font-size: 26px;
    }

    .single-product-layout__summary {
        padding: 0;
    }

    .product-media {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .product-media__thumbs {
        position: sticky;
        top: 68px;
        z-index: 5;
        display: flex;
        gap: 3px;
        max-height: none;
        overflow: auto;
        padding: 0;
        background: #f3f2ef;
    }

    .product-media__thumb {
        width: 42px;
        height: 54px;
        flex: 0 0 auto;
    }

    .product-media__stack {
        gap: 3px;
    }

    .product-media__frame {
        scroll-margin-top: 132px;
    }

    .product-confidence__grid,
    .product-purchase-flow__steps {
        grid-template-columns: 1fr;
    }

    .product-confidence-card,
    .product-confidence-card:nth-child(2n) {
        border-right: 0;
    }

    .product-confidence-card:not(:last-child),
    .product-confidence-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(7, 19, 38, .08);
    }

    .product-purchase-flow {
        margin-bottom: 64px;
    }

    .woocommerce-product-gallery__image--placeholder::before {
        width: 104px;
        height: 104px;
        font-size: 48px;
    }

    .single-product .woocommerce-tabs ul.tabs,
    .woocommerce div.product .woocommerce-tabs ul.tabs {
        display: grid;
        grid-template-columns: 1fr;
    }

    .woocommerce-cart-form,
    .woocommerce-checkout,
    .woocommerce-account .woocommerce {
        padding: 14px;
    }

    .footer-logo {
        gap: 14px;
    }

    .footer-logo span {
        font-size: 20px;
    }

    .footer-logo strong {
        font-size: 21px;
    }

    .footer-column h2,
    .footer-newsletter h2 {
        font-size: 17px;
    }

    .vip-newsletter-form__row {
        width: 100%;
        grid-template-columns: 1fr 54px;
        min-height: 46px;
    }

    .vip-newsletter-form input[type="email"],
    .vip-newsletter-form button {
        min-height: 46px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Boutique hero/header matching the provided direction. */
.icon {
    width: 1.08em;
    height: 1.08em;
    display: inline-block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: -.16em;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 70;
    background: #102b46;
    border-bottom: 1px solid rgba(209, 170, 89, .06);
    box-shadow: none;
    backdrop-filter: none;
}

.header-inner {
    width: min(1380px, calc(100vw - 36px));
    min-height: 90px;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
}

.brand-mark {
    gap: 15px;
}

.brand-mark__sign {
    width: 68px;
    height: 68px;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.brand-mark__sign img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    border-radius: 999px;
    transform: scale(1.12);
    transform-origin: center;
}

.brand-mark__copy {
    display: grid;
    gap: 2px;
}

.brand-mark__text {
    color: #fff;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.brand-mark__tagline {
    color: #caa75c;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .42em;
    line-height: 1.2;
    text-transform: uppercase;
}

.primary-nav {
    justify-self: center;
}

.primary-nav ul {
    min-height: 52px;
    padding: 0 28px;
    gap: 30px;
    background: #07101c;
    border: 1px solid rgba(255, 255, 255, .035);
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .3);
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    color: rgba(239, 242, 247, .78);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.primary-nav a .icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    stroke-width: 2.05;
    transform: translateY(0);
}

.primary-nav a:hover {
    color: #d1aa59;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-icon-link,
.nav-toggle {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    color: rgba(239, 242, 247, .82);
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-tap-highlight-color: transparent;
}

.header-icon-link:focus:not(:focus-visible),
.nav-toggle:focus:not(:focus-visible) {
    outline: none;
}

.header-icon-link:focus-visible,
.nav-toggle:focus-visible {
    outline: 2px solid rgba(209, 170, 89, .75);
    outline-offset: 4px;
}

.header-icon-link:hover,
.nav-toggle:hover {
    color: #d1aa59;
}

.header-icon-link .icon,
.nav-toggle .icon {
    display: block;
    width: 25px;
    height: 25px;
    stroke-width: 2.25;
    vertical-align: top;
}

.nav-toggle__icon {
    position: static;
    inset: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
    line-height: 0;
    transition: opacity .18s ease, transform .18s ease;
}

.nav-toggle .nav-toggle__icon {
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
}

.nav-toggle__icon--close {
    display: none;
    opacity: 0;
    transform: rotate(-90deg) scale(.72);
}

.nav-open .nav-toggle__icon--menu {
    display: none;
    opacity: 0;
    transform: rotate(90deg) scale(.72);
}

.nav-open .nav-toggle__icon--close {
    display: inline-flex;
    opacity: 1;
    transform: rotate(0) scale(1);
}

.cart-link {
    position: relative;
    gap: 0;
    min-height: 0;
}

.cart-count {
    position: absolute;
    right: -8px;
    top: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    color: #07101c;
    background: #d1aa59;
    font-size: 10px;
    font-weight: 900;
}

.nav-toggle {
    display: none;
    cursor: pointer;
}

.hero--boutique {
    position: relative;
    min-height: calc(100vh - 90px);
    overflow: hidden;
    align-items: stretch;
    color: #fff;
    background-size: cover;
    background-position: center 46%;
    isolation: isolate;
}

.hero--boutique::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 63% 48%, rgba(15, 82, 132, .28), transparent 34%),
        linear-gradient(180deg, rgba(0, 15, 30, .25), rgba(0, 15, 30, .82));
}

.hero--boutique::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 21, 40, .48);
}

.hero__inner {
    width: min(1380px, calc(100vw - 36px));
    min-height: calc(100vh - 90px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 86px 0 92px;
}

.hero__content {
    width: auto;
    margin: 0;
    padding: 0;
}

.hero .eyebrow {
    position: relative;
    width: max-content;
    max-width: 100%;
    margin-bottom: 30px;
    padding-bottom: 0;
    color: #d1aa59;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .42em;
}

.hero .eyebrow::after {
    display: none;
}

.hero h1 {
    max-width: 620px;
    font-family: var(--font-display);
    font-size: clamp(70px, 6.2vw, 106px);
    font-weight: 700;
    line-height: .88;
    letter-spacing: 0;
}

.hero h1 span {
    display: block;
    color: #d1aa59;
    font-style: italic;
    font-weight: 700;
}

.hero p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 28px;
    color: rgba(232, 238, 247, .66);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    gap: 18px;
    margin-top: 48px;
}

.hero__actions .button {
    min-width: 238px;
    min-height: 58px;
    padding: 0 28px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero__actions .button .icon {
    width: 18px;
    height: 18px;
    margin-left: 8px;
}

.hero__actions .button--primary {
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
}

.hero__actions .button--ghost {
    color: #f1f5f9;
    background: transparent;
    border-color: rgba(142, 169, 198, .32);
}

.hero-product {
    display: none;
}

.hero-product__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    background: #03060a;
    border-radius: 4px;
}

.hero-product__image span {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 7px 15px;
    color: #07101c;
    background: #d1aa59;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
}

.hero-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product__body {
    padding-top: 21px;
}

.hero-product h2 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.04;
}

.hero-product p {
    margin: 5px 0 0;
    color: #b79651;
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.25;
}

.hero-product__line {
    height: 1px;
    margin: 13px 0 15px;
    background: rgba(209, 170, 89, .14);
}

.hero-product__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.hero-product__meta strong {
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.hero-product__meta a {
    color: #b79651;
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero--boutique + .trust-strip {
    margin-top: 0;
}

@media (max-width: 1220px) {
    .header-inner {
        gap: 18px;
    }

    .primary-nav ul {
        gap: 18px;
        padding: 0 22px;
    }

    .primary-nav a {
        font-size: 12px;
    }
}

@media (max-width: 1040px) {
    .header-inner {
        width: 100%;
        min-height: 122px;
        padding: 0 20px;
        grid-template-columns: auto 1fr auto;
        background: #102b46;
        border-right: 0;
        border-radius: 0;
    }

    .brand-mark {
        gap: 14px;
    }

    .brand-mark__sign {
        width: 66px;
        height: 66px;
    }

    .brand-mark__text {
        font-size: 27px;
    }

    .brand-mark__tagline {
        font-size: 12px;
        letter-spacing: .38em;
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: block;
        padding: 132px 26px 42px;
        background: #061f39;
        border: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
        transition: transform .36s cubic-bezier(.22, 1, .36, 1), opacity .24s ease;
    }

    .nav-open {
        overflow: hidden;
    }

    .nav-open .primary-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-closing .primary-nav {
        opacity: 0;
        transform: translateX(-100%);
    }

    .primary-nav ul {
        display: grid;
        justify-content: start;
        align-content: start;
        gap: 7px;
        min-height: 0;
        padding: 0;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .primary-nav a {
        justify-content: flex-start;
        min-height: 52px;
        padding: 0;
        border-bottom: 0;
        color: rgba(239, 242, 247, .9);
        font-size: 18px;
        font-weight: 650;
        letter-spacing: .08em;
    }

    .primary-nav li:last-child a {
        border-bottom: 0;
    }

    .header-actions {
        grid-column: auto;
        justify-content: end;
        gap: 18px;
        padding-bottom: 0;
    }

    .header-icon-link,
    .nav-toggle {
        width: 34px;
        height: 34px;
    }

    .header-icon-link .icon,
    .nav-toggle .icon {
        width: 31px;
        height: 31px;
    }

    .nav-toggle {
        display: inline-grid;
        z-index: 90;
    }

    .hero--boutique {
        min-height: calc(100vh - 122px);
        background-position: center bottom;
    }

    .hero__inner {
        width: calc(100vw - 38px);
        min-height: calc(100vh - 122px);
        display: block;
        padding: 152px 0 92px;
    }

    .hero-product {
        display: none;
    }

    .hero .eyebrow {
        margin-bottom: 44px;
        font-size: clamp(12px, 2.6vw, 17px);
        letter-spacing: .36em;
    }

    .hero h1 {
        max-width: 560px;
        font-size: clamp(54px, 10vw, 74px);
        line-height: .9;
    }

    .hero p:not(.eyebrow) {
        max-width: 700px;
        font-size: clamp(20px, 3.25vw, 26px);
        line-height: 1.52;
    }

    .hero__actions {
        display: grid;
        gap: 23px;
        margin-top: 58px;
    }

    .hero__actions .button {
        width: 100%;
        min-height: 71px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 92px;
        padding: 0 14px;
        border-right-width: 0;
        border-radius: 0;
    }

    .brand-mark__sign {
        width: 58px;
        height: 58px;
    }

    .brand-mark__text {
        font-size: 20px;
        letter-spacing: .04em;
    }

    .brand-mark__tagline {
        font-size: 9px;
        letter-spacing: .36em;
    }

    .header-actions {
        gap: 12px;
    }

    .header-icon-link,
    .nav-toggle {
        width: 34px;
        height: 34px;
    }

    .header-icon-link .icon,
    .nav-toggle .icon {
        width: 27px;
        height: 27px;
    }

    .primary-nav {
        padding: 106px 20px 38px;
    }

    .hero--boutique {
        min-height: calc(100vh - 92px);
    }

    .hero__inner {
        width: calc(100vw - 38px);
        min-height: calc(100vh - 92px);
        padding: 156px 0 82px;
    }

    .hero .eyebrow {
        margin-bottom: 44px;
        padding-bottom: 13px;
        font-size: 13px;
        letter-spacing: .34em;
    }

    .hero h1 {
        font-size: 50px;
    }

    .hero p:not(.eyebrow) {
        margin-top: 34px;
        font-size: 22px;
    }

    .hero__actions {
        margin-top: 60px;
    }

    .hero__actions .button {
        min-height: 71px;
        padding: 0 18px;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .brand-mark {
        gap: 10px;
    }

    .brand-mark__sign {
        width: 52px;
        height: 52px;
    }

    .brand-mark__text {
        font-size: 18px;
    }

    .brand-mark__tagline {
        font-size: 8px;
        letter-spacing: .28em;
    }

    .header-actions {
        gap: 8px;
    }

    .header-icon-link,
    .nav-toggle {
        width: 31px;
        height: 31px;
    }

    .header-icon-link .icon,
    .nav-toggle .icon {
        width: 25px;
        height: 25px;
    }

    .hero__inner {
        width: calc(100vw - 28px);
        padding-top: 132px;
    }

    .hero .eyebrow {
        font-size: 11px;
        letter-spacing: .3em;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p:not(.eyebrow) {
        font-size: 18px;
    }
}

@media (max-width: 1040px) {
    .primary-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: auto;
        bottom: auto;
        width: 100vw;
        max-width: none;
        height: 100vh;
        height: 100dvh;
        justify-self: auto;
        padding: 132px 26px 42px;
        background: #061f39;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(-100%, 0, 0);
        transition: transform .36s cubic-bezier(.22, 1, .36, 1), opacity .24s ease;
    }

    .nav-open .primary-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
    }

    .nav-closing .primary-nav {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

@media (max-width: 640px) {
    .primary-nav {
        padding: 106px 20px 38px;
    }
}

@media (max-width: 1040px) {
    .header-inner {
        align-items: center;
    }

    .site-branding,
    .brand-mark,
    .header-actions {
        display: flex;
        align-items: center;
    }

    .brand-mark {
        min-height: 66px;
    }

    .header-actions {
        height: 66px;
        gap: 16px;
    }

    .header-icon-link,
    .nav-toggle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 0;
        align-self: center;
    }

    .header-icon-link .icon,
    .nav-toggle .icon {
        width: 31px;
        height: 31px;
    }

    .header-icon-link .icon-search {
        transform: translateY(1px);
    }

    .cart-link .icon-bag {
        transform: translateY(0);
    }

    .nav-toggle .icon-menu {
        transform: translateY(1px);
    }

    .nav-toggle .icon-close {
        transform: translateY(0);
    }

    .cart-count {
        top: 2px;
        right: 0;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 104px;
    }

    .brand-mark,
    .header-actions {
        height: 64px;
    }

    .brand-mark__sign {
        width: 64px;
        height: 64px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-icon-link,
    .nav-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

/* Final header structure: logo fills branding, actions share one geometry. */
.site-branding {
    align-self: center;
    display: flex;
    align-items: stretch;
    height: 56px;
    min-width: 0;
}

.site-branding .brand-mark {
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 0;
    min-width: 0;
}

.site-branding .brand-mark__sign {
    flex: 0 0 auto;
    width: auto;
    height: 100%;
    aspect-ratio: 1;
}

.site-branding .brand-mark__sign img {
    width: 100%;
    height: 100%;
    transform: scale(1.08);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    height: 76px;
}

.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    color: rgba(239, 242, 247, .82);
    background: transparent;
    border: 0;
    border-radius: 0;
    line-height: 0;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.header-action.nav-toggle {
    display: none;
}

.header-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
    line-height: 0;
}

.header-action .icon {
    display: block;
    width: 27px;
    height: 27px;
    stroke-width: 2.25;
    transform: none;
}

.header-action:hover {
    color: #d1aa59;
}

.header-action:focus:not(:focus-visible) {
    outline: none;
}

.header-action:focus-visible {
    outline: 2px solid rgba(209, 170, 89, .75);
    outline-offset: 4px;
}

.header-action--cart .cart-count {
    top: -2px;
    right: -3px;
}

.nav-toggle__icon--close {
    display: none;
}

.nav-open .nav-toggle__icon--menu {
    display: none;
}

.nav-open .nav-toggle__icon--close {
    display: inline-flex;
}

.header-action.nav-toggle .nav-toggle__icon {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    transform: none;
}

.header-action.nav-toggle .icon-menu,
.header-action.nav-toggle .icon-close {
    transform: none;
}

.header-action.nav-toggle .nav-toggle__icon--close {
    display: none;
}

.nav-open .header-action.nav-toggle .nav-toggle__icon--menu {
    display: none;
}

.nav-open .header-action.nav-toggle .nav-toggle__icon--close {
    display: inline-flex;
}

@media (max-width: 1040px) {
    .site-branding {
        height: 56px;
    }

    .header-actions {
        height: 76px;
        gap: 8px;
    }

    .header-action {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .header-action.nav-toggle {
        display: inline-flex;
    }

    .header-action .icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 640px) {
    .site-branding {
        height: 50px;
    }

    .header-actions {
        height: 70px;
        gap: 4px;
    }

    .header-action {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .header-action .icon {
        width: 29px;
        height: 29px;
    }
}

@media (max-width: 420px) {
    .site-branding {
        height: 48px;
    }

    .header-actions {
        height: 64px;
        gap: 2px;
    }

    .header-action {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
    }

    .header-action .icon {
        width: 28px;
        height: 28px;
    }
}

/* Final footer layout. */
.site-footer {
    margin-top: 0;
    color: rgba(219, 229, 242, .68);
    background: #061f39;
    border: 0;
    border-radius: 0;
}

.site-footer .footer-inner {
    width: min(1320px, calc(100vw - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) minmax(170px, .75fr) minmax(190px, .85fr) minmax(280px, 1fr);
    gap: clamp(28px, 4vw, 72px);
    padding: 72px 0 52px;
}

.site-footer .footer-brand {
    min-width: 0;
}

.site-footer .footer-brand .brand-mark {
    height: 56px;
    gap: 14px;
}

.site-footer .footer-brand .brand-mark__sign {
    width: auto;
    height: 100%;
    aspect-ratio: 1;
}

.site-footer .footer-brand .brand-mark__text {
    font-size: 26px;
}

.site-footer .footer-brand .brand-mark__tagline {
    font-size: 10px;
    letter-spacing: .36em;
}

.site-footer .footer-brand p,
.site-footer .footer-newsletter p {
    max-width: 330px;
    margin: 26px 0 0;
    color: rgba(180, 195, 214, .6);
    font-size: 15px;
    line-height: 1.58;
}

.hero.hero--boutique .eyebrow {
    font-weight: 600;
}

.site-footer .footer-brand {
    align-self: start;
}

.site-footer .footer-column,
.site-footer .footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
}

.site-footer .footer-column h2,
.site-footer .footer-newsletter h2 {
    margin: 0 0 12px;
    color: #d1aa59;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.site-footer .footer-column a {
    color: rgba(180, 195, 214, .68);
    font-size: 15px;
}

.site-footer .footer-column a:hover,
.site-footer .footer-bottom a:hover {
    color: #d1aa59;
}

.site-footer .footer-newsletter {
    justify-self: end;
    width: min(100%, 330px);
}

.site-footer .vip-newsletter-form {
    width: 100%;
    margin-top: 18px;
}

.site-footer .vip-newsletter-form__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    width: 100%;
    min-height: 40px;
}

.site-footer .vip-newsletter-form__notice {
    width: 100%;
}

.site-footer .footer-bottom {
    width: min(1320px, calc(100vw - 64px));
    min-height: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px 0 44px;
    border-top: 1px solid rgba(111, 149, 186, .14);
    color: rgba(180, 195, 214, .42);
    font-size: 13px;
    text-align: left;
}

.site-footer .footer-bottom span {
    min-width: 0;
}

.site-footer .footer-bottom nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
    margin-left: auto;
}

.site-footer .footer-bottom a {
    color: rgba(180, 195, 214, .48);
    white-space: nowrap;
}

@media (max-width: 980px) {
    .site-footer .footer-inner {
        width: calc(100vw - 38px);
        grid-template-columns: 1fr 1fr;
        gap: 38px 30px;
        padding: 56px 0 40px;
    }

    .site-footer .footer-brand,
    .site-footer .footer-newsletter {
        grid-column: 1 / -1;
    }

    .site-footer .footer-newsletter {
        justify-self: stretch;
        width: 100%;
        max-width: 520px;
    }

    .site-footer .footer-bottom {
        width: calc(100vw - 38px);
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 24px 0 38px;
    }

    .site-footer .footer-bottom nav {
        justify-content: flex-start;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 46px 0 34px;
    }

    .site-footer .footer-brand .brand-mark {
        height: 50px;
    }

    .site-footer .footer-brand .brand-mark__text {
        font-size: 21px;
    }

    .site-footer .footer-brand .brand-mark__tagline {
        font-size: 8px;
        letter-spacing: .3em;
    }

    .site-footer .footer-brand p,
    .site-footer .footer-newsletter p {
        max-width: none;
    }

    .site-footer .footer-bottom {
        font-size: 12px;
    }
}

/* Newsletter footer alignment cleanup. */
.site-footer .footer-newsletter {
    gap: 0;
    width: min(100%, 340px);
    max-width: 340px;
}

.site-footer .footer-newsletter h2 {
    margin: 0;
}

.site-footer .footer-newsletter p {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 0;
}

.site-footer .footer-newsletter .vip-newsletter-form {
    width: 100%;
    max-width: 100%;
    margin: 24px 0 0;
}

.site-footer .footer-newsletter .vip-newsletter-form__row {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 52px;
    min-height: 44px;
}

.site-footer .footer-newsletter .vip-newsletter-form input[type="email"],
.site-footer .footer-newsletter .vip-newsletter-form button {
    min-height: 44px;
}

@media (max-width: 980px) {
    .site-footer .footer-newsletter {
        justify-self: start;
        width: min(100%, 360px);
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-newsletter {
        width: 100%;
        max-width: none;
    }

    .site-footer .footer-newsletter p {
        margin-top: 16px;
    }

    .site-footer .footer-newsletter .vip-newsletter-form {
        margin-top: 20px;
    }
}

/* Skup / komis page. */
.offer-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 72% 42%, rgba(20, 89, 139, .28), transparent 34%),
        linear-gradient(100deg, #00162a 0%, #061f39 58%, #082541 100%);
}

.offer-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 12, 24, .08), rgba(0, 12, 24, .42));
    pointer-events: none;
}

.offer-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1380px, calc(100vw - 36px));
    min-height: 640px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 96px 0;
}

.offer-hero__copy {
    max-width: 760px;
}

.offer-hero .eyebrow,
.offer-request .eyebrow,
.contact-page .eyebrow {
    color: #d1aa59;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .42em;
    line-height: 1.1;
}

.offer-hero h1 {
    max-width: 720px;
    margin: 28px 0 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(58px, 5.4vw, 92px);
    font-weight: 700;
    line-height: .92;
}

.offer-hero__copy > p:not(.eyebrow) {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(232, 238, 247, .68);
    font-size: 20px;
    line-height: 1.55;
}

.offer-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 46px;
}

.offer-hero__actions .button {
    min-height: 58px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.offer-process,
.offer-request {
    color: #071326;
    background: #fbfaf7;
}

.offer-process__inner {
    width: min(1180px, calc(100vw - 52px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 78px 0 30px;
}

.offer-process article {
    min-height: 250px;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
}

.offer-process span {
    color: #d1aa59;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .28em;
}

.offer-process h2 {
    margin: 46px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: 31px;
    line-height: 1;
}

.offer-process p {
    margin: 24px 0 0;
    color: rgba(7, 19, 38, .52);
    font-size: 16px;
    line-height: 1.65;
}

.offer-request__inner {
    width: min(1320px, calc(100vw - 52px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    gap: clamp(36px, 6vw, 86px);
    padding: 72px 0 98px;
}

.offer-request__intro {
    position: sticky;
    top: 124px;
    align-self: start;
}

.offer-request h2 {
    margin: 24px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(44px, 4vw, 68px);
    line-height: .94;
}

.offer-request__intro > p:not(.eyebrow) {
    margin: 28px 0 0;
    color: rgba(7, 19, 38, .52);
    font-size: 18px;
    line-height: 1.65;
}

.offer-form {
    padding: clamp(26px, 3.2vw, 46px);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 22px 54px rgba(7, 19, 38, .08);
}

.offer-form fieldset {
    padding: 0 0 30px;
    margin: 0 0 30px;
    border: 0;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

.offer-form fieldset:last-of-type {
    margin-bottom: 22px;
}

.offer-form legend {
    margin-bottom: 22px;
    color: #071326;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.offer-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.offer-form label {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    color: rgba(7, 19, 38, .72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.offer-form__label-text {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.offer-form .required {
    color: #d1aa59;
}

.offer-form label small {
    color: rgba(7, 19, 38, .44);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
    height: 52px;
    min-height: 52px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .12);
    border-radius: 0;
    font-weight: 500;
    line-height: 1.3;
}

.offer-form textarea {
    height: auto;
    min-height: 150px;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
    border-color: rgba(209, 170, 89, .9);
    outline: 2px solid rgba(209, 170, 89, .18);
    outline-offset: 0;
}

.offer-form input[aria-invalid="true"],
.offer-form select[aria-invalid="true"],
.offer-form textarea[aria-invalid="true"] {
    border-color: #b64040;
    background: #fff8f8;
}

.offer-form__error {
    display: block;
    margin-top: -2px;
    color: #b64040;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: none;
}

.offer-form input[type="file"] {
    padding: 14px;
}

.offer-form label.offer-form__consent,
.request-form label.request-form__consent {
    display: flex !important;
    grid-template-columns: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: rgba(7, 19, 38, .6);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.5;
    text-transform: none;
}

.offer-form__consent span,
.request-form__consent span {
    flex: 1 1 min(260px, calc(100% - 30px));
    color: rgba(7, 19, 38, .6);
    line-height: 1.5;
}

.offer-form__consent input,
.request-form__consent input {
    flex: 0 0 18px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    margin: 0;
    accent-color: #d1aa59;
    background: #fff;
    border-radius: 0;
}

.offer-form__consent input[aria-invalid="true"],
.request-form__consent input[aria-invalid="true"] {
    accent-color: #b64040;
    box-shadow: 0 0 0 2px rgba(182, 64, 64, .22);
    outline: 0;
}

.offer-form__consent .offer-form__error,
.request-form__consent .offer-form__error {
    flex: 0 0 100%;
    margin: -4px 0 0 30px;
    color: #b64040;
    font-weight: 760;
}

.offer-form__consent a {
    color: #d1aa59;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.offer-form .button {
    width: 100%;
    min-height: 62px;
    margin-top: 12px;
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
    border-radius: 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.offer-form .button:hover {
    color: #061b31;
    background: #e0bb6b;
    border-color: #e0bb6b;
}

.contact-page {
    color: #071326;
    background: #fbfaf7;
}

.contact-page__inner {
    width: min(1320px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 82px 0 98px;
}

.contact-page__head {
    max-width: 850px;
    margin-bottom: 52px;
}

.contact-page__head h1 {
    margin: 24px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(52px, 5vw, 82px);
    line-height: .92;
}

.contact-page__head p:not(.eyebrow) {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(7, 19, 38, .56);
    font-size: 19px;
    line-height: 1.65;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: minmax(290px, .78fr) minmax(0, 1.22fr);
    gap: clamp(32px, 5vw, 74px);
    align-items: start;
}

.contact-details {
    display: grid;
    gap: 18px;
}

.contact-details__item {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
}

.contact-details__item {
    padding: 24px 26px;
}

.contact-details__item span {
    display: block;
    margin-bottom: 10px;
    color: #d1aa59;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .22em;
    line-height: 1.1;
    text-transform: uppercase;
}

.contact-details__item a,
.contact-details__item p {
    margin: 0;
    color: #071326;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
}

.contact-details__item a {
    text-decoration: none;
}

.contact-details__item a:hover {
    color: #d1aa59;
}

.contact-form {
    align-self: start;
}

.contact-map {
    margin-top: 18px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 12px 28px rgba(7, 19, 38, .06);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    min-height: 220px;
    border: 0;
    filter: saturate(.88) contrast(1.03);
}

.notice-success--warning {
    color: #6c4a00;
    background: #fff4d8;
    border-color: #e8c46d;
}

.notice-success--error {
    color: #6d1d1d;
    background: #ffe5e5;
    border-color: #efb5b5;
}

@media (max-width: 980px) {
    .legal-page__layout {
        grid-template-columns: 1fr;
    }

    .legal-page__aside {
        position: static;
    }

    .cart-page .woocommerce {
        grid-template-columns: 1fr;
    }

    .cart-page .cart-collaterals {
        position: static;
    }

    .cart-page .checkout-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-page .checkout-trust span:nth-child(2n) {
        border-right: 0;
    }

    .cart-page .checkout-trust span:nth-child(n + 3) {
        border-top: 1px solid rgba(7, 19, 38, .07);
    }

    .knowledge-index__inner,
    .knowledge-single__layout {
        grid-template-columns: 1fr;
    }

    .knowledge-sidebar,
    .knowledge-single__aside {
        position: static;
    }

    .knowledge-grid,
    .knowledge-grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offer-request__inner {
        grid-template-columns: 1fr;
    }

    .contact-page__grid {
        grid-template-columns: 1fr;
    }

    .offer-hero__inner {
        min-height: 0;
        padding: 86px 0;
    }

    .offer-request__intro {
        position: static;
    }

    .offer-process__inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .offer-hero__inner,
    .offer-process__inner,
    .offer-request__inner,
    .contact-page__inner,
    .cart-page__body,
    .legal-page__head,
    .legal-page__layout,
    .knowledge-hero__inner,
    .knowledge-index__inner,
    .knowledge-single__head,
    .knowledge-single__image,
    .knowledge-single__layout,
    .knowledge-related {
        width: calc(100vw - 38px);
    }

    .offer-hero h1,
    .contact-page__head h1,
    .cart-page__head h1,
    .legal-page__head h1,
    .knowledge-hero h1,
    .knowledge-single__head h1 {
        font-size: 48px;
    }

    .cart-page__body {
        padding: 48px 0 74px;
    }

    .legal-page__head {
        padding: 58px 0 32px;
    }

    .legal-page__layout {
        padding-bottom: 74px;
    }

    .legal-page__content {
        padding: 26px;
        font-size: 15px;
        line-height: 1.75;
    }

    .cart-page .checkout-trust {
        grid-template-columns: 1fr;
    }

    .cart-page .checkout-trust span {
        min-height: 58px;
        border-right: 0;
        border-top: 1px solid rgba(7, 19, 38, .07);
    }

    .cart-page .checkout-trust span:first-child {
        border-top: 0;
    }

    .cart-page .woocommerce-cart-form {
        padding: 0;
    }

    .cart-page .woocommerce-cart-form table.shop_table {
        display: block;
    }

    .cart-page .woocommerce-cart-form table.shop_table thead {
        display: none;
    }

    .cart-page .woocommerce-cart-form table.shop_table tbody,
    .cart-page .woocommerce-cart-form table.shop_table tr,
    .cart-page .woocommerce-cart-form table.shop_table td {
        display: block;
        width: 100%;
    }

    .cart-page .woocommerce-cart-form table.shop_table tr.cart_item {
        position: relative;
        padding: 22px;
        border-top: 1px solid rgba(7, 19, 38, .08);
    }

    .cart-page .woocommerce-cart-form table.shop_table tr.cart_item:first-child {
        border-top: 0;
    }

    .cart-page .woocommerce-cart-form table.shop_table td {
        padding: 8px 0;
        border: 0;
        text-align: left !important;
    }

    .cart-page .woocommerce-cart-form .product-remove {
        position: absolute;
        top: 18px;
        right: 18px;
        width: auto;
    }

    .cart-page .woocommerce-cart-form .product-thumbnail {
        width: 112px;
    }

    .cart-page .woocommerce-cart-form .product-thumbnail img {
        width: 106px;
        height: 106px;
    }

    .cart-page .woocommerce-cart-form .product-name {
        padding-right: 48px;
    }

    .cart-page .woocommerce-cart-form .product-price::before,
    .cart-page .woocommerce-cart-form .product-quantity::before,
    .cart-page .woocommerce-cart-form .product-subtotal::before {
        content: attr(data-title) ": ";
        color: rgba(7, 19, 38, .48);
        font-size: 11px;
        font-weight: 850;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .cart-page .woocommerce-cart-form .actions {
        padding: 22px !important;
    }

    .cart-page .woocommerce-cart-form .actions .coupon {
        width: 100%;
        display: grid;
        float: none;
    }

    .cart-page .woocommerce-cart-form .actions .coupon .input-text {
        width: 100%;
    }

    .cart-page .woocommerce-cart-form .actions > .button {
        width: 100%;
        float: none;
        margin-top: 12px;
    }

    .cart-page .cart-collaterals {
        padding: 24px;
    }

    .knowledge-hero__inner,
    .knowledge-single__head {
        min-height: 0;
        padding: 74px 0;
    }

    .knowledge-search {
        grid-template-columns: 1fr;
    }

    .knowledge-search input,
    .knowledge-search button {
        min-height: 56px;
    }

    .knowledge-index__inner,
    .knowledge-single__layout {
        padding: 58px 0 74px;
    }

    .knowledge-grid,
    .knowledge-grid--related {
        grid-template-columns: 1fr;
    }

    .knowledge-card__body,
    .knowledge-sidebar__block,
    .knowledge-single__box {
        padding: 22px;
    }

    .knowledge-single__image {
        margin-top: -34px;
    }

    .knowledge-content {
        font-size: 16px;
        line-height: 1.78;
    }

    .contact-page__inner {
        padding: 62px 0 76px;
    }

    .contact-page__head {
        margin-bottom: 36px;
    }

    .offer-hero__actions {
        display: grid;
    }

    .offer-hero__actions .button {
        width: 100%;
        min-height: 62px;
    }

    .offer-process article,
    .offer-form {
        padding: 26px;
    }

    .offer-form__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Home expertise pillars. */
.home-products {
    overflow: hidden;
    color: #071326;
    background: #fbfaf7;
}

.home-products__inner {
    width: min(1490px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 76px 0 90px;
}

.home-products__head {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.home-products__head p {
    margin: 0 0 18px;
    color: #d1aa59;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: .42em;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-products__head h2 {
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .92;
    text-transform: none;
}

.home-products__head span {
    display: block;
    max-width: 740px;
    margin: 22px auto 0;
    color: rgba(7, 19, 38, .42);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.45;
}

.home-products__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(22px, 2.2vw, 34px);
    margin-top: 66px;
}

.home-product-card {
    position: relative;
    min-width: 0;
    padding-bottom: 24px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
    text-align: center;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    cursor: pointer;
}

.home-product-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
}

.home-product-card__overlay:focus-visible {
    outline: 2px solid rgba(209, 170, 89, .72);
    outline-offset: 5px;
}

.home-product-card:hover,
.home-product-card:focus-within {
    border-color: rgba(209, 170, 89, .42);
    box-shadow: 0 22px 34px rgba(7, 19, 38, .1);
    transform: translateY(-6px);
}

.home-product-card__image {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 1;
    background:
        linear-gradient(135deg, rgba(6, 31, 57, .08), rgba(209, 170, 89, .12)),
        #f0ede6;
}

.home-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-product-card:hover .home-product-card__image img {
    transform: scale(1.035);
}

.home-product-card__placeholder {
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    color: #d1aa59;
    background: #061f39;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: .02em;
}

.home-product-card__body {
    padding: 24px 22px 0;
}

.home-product-card__body p {
    margin: 0 0 13px;
    color: #d1aa59;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .24em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-product-card__body h3 {
    max-width: 330px;
    min-height: 58px;
    margin: 0 auto;
    color: #071326;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
    transition: color .2s ease;
}

.home-product-card:hover .home-product-card__body h3,
.home-product-card:focus-within .home-product-card__body h3 {
    color: #d1aa59;
}

.home-product-card__body strong {
    display: block;
    margin-top: 14px;
    color: rgba(7, 19, 38, .54);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    transition: color .2s ease;
}

.home-product-card:hover .home-product-card__body strong,
.home-product-card:focus-within .home-product-card__body strong {
    color: rgba(7, 19, 38, .74);
}

.home-products__actions {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.home-products__actions a {
    min-width: 178px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    color: #061b31;
    background: #d1aa59;
    border: 1px solid #d1aa59;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.home-products__actions a:hover {
    color: #f1f5f9;
    background: #061f39;
    border-color: #061f39;
}

.brand-marquee {
    overflow: hidden;
    color: #252525;
    background: #f5f2ec;
    border-top: 1px solid rgba(7, 19, 38, .06);
    border-bottom: 1px solid rgba(7, 19, 38, .06);
}

.brand-marquee__track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: bywitek-marquee 28s linear infinite;
    will-change: transform;
}

.brand-marquee__group {
    display: flex;
    align-items: center;
    gap: clamp(34px, 5vw, 78px);
    padding: 30px clamp(34px, 5vw, 78px);
}

.brand-marquee span {
    display: inline-block;
    color: rgba(35, 35, 35, .86);
    font-size: clamp(21px, 2.1vw, 34px);
    font-weight: 450;
    letter-spacing: .28em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-marquee__icon {
    width: 1em;
    height: 1em;
    flex: 0 0 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: #d1aa59;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: clamp(21px, 2.1vw, 34px);
    font-style: normal;
    line-height: 1;
}

.brand-marquee__icon .icon {
    width: .84em;
    height: .84em;
    display: block;
    stroke-width: 2.2;
    transform: none;
}

@keyframes bywitek-marquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .brand-marquee__track {
        animation: none;
    }
}

.expertise-section {
    overflow: hidden;
    color: #071326;
    background: #fbfaf7;
}

.expertise-section__inner {
    width: min(1490px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 72px 0 92px;
}

.expertise-section__head {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.expertise-section__eyebrow {
    margin: 0 0 18px;
    color: #d1aa59;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: .42em;
    line-height: 1.1;
    text-transform: uppercase;
}

.expertise-section__head h2 {
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .92;
}

.expertise-section__head > p:not(.expertise-section__eyebrow) {
    max-width: 800px;
    margin: 22px auto 0;
    color: rgba(7, 19, 38, .42);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.45;
}

.expertise-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 2.6vw, 42px);
    margin-top: 82px;
}

.expertise-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(34px, 3vw, 48px) clamp(30px, 3vw, 42px) 38px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    border-radius: 0;
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.expertise-card:hover,
.expertise-card:focus-within {
    border-color: rgba(209, 170, 89, .48);
    box-shadow: 0 22px 34px rgba(7, 19, 38, .1);
    transform: translateY(-8px);
}

.expertise-card__icon {
    width: clamp(26px, 1.9vw, 32px);
    height: clamp(26px, 1.9vw, 32px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d1aa59;
    background: transparent;
    border-radius: 0;
    transition: color .25s ease, transform .25s ease;
}

.expertise-card:hover .expertise-card__icon,
.expertise-card:focus-within .expertise-card__icon {
    color: #b98d35;
    transform: translateY(-2px);
}

.expertise-card__icon .icon {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    stroke-width: 2.3;
    vertical-align: top;
    transform: none;
}

.expertise-card h3 {
    margin: 22px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(26px, 1.9vw, 32px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.03;
    transition: color .25s ease;
}

.expertise-card:hover h3,
.expertise-card:focus-within h3 {
    color: #d1aa59;
}

.expertise-card p {
    margin: 36px 0 0;
    color: rgba(7, 19, 38, .46);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.expertise-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 38px;
    color: #d1aa59;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.expertise-card a .icon {
    width: 17px;
    height: 17px;
    stroke-width: 2.35;
    transition: transform .2s ease;
}

.expertise-card a:hover .icon {
    transform: translateX(4px);
}

.expertise-indicators {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 38px;
}

.expertise-indicator {
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(7, 19, 38, .14);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: width .22s ease, background-color .22s ease;
}

.expertise-indicator.is-active {
    width: 34px;
    background: #d1aa59;
}

.expertise-indicator:focus-visible {
    outline: 2px solid rgba(209, 170, 89, .7);
    outline-offset: 4px;
}

.home-journal {
    overflow: hidden;
    color: #071326;
    background: #f5f2ec;
}

.home-journal__inner {
    width: min(1240px, calc(100vw - 52px));
    margin: 0 auto;
    padding: 78px 0 90px;
}

.home-journal__head {
    margin: 0 auto;
    text-align: center;
}

.home-journal__head p {
    margin: 0 0 18px;
    color: #d1aa59;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: .42em;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-journal__head h2 {
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(44px, 4vw, 64px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .92;
}

.home-journal__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 64px);
    margin-top: 58px;
}

.home-journal-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .07);
    box-shadow: 0 4px 18px rgba(7, 19, 38, .035);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.home-journal-card:hover,
.home-journal-card:focus-within {
    border-color: rgba(209, 170, 89, .42);
    box-shadow: 0 22px 34px rgba(7, 19, 38, .1);
    transform: translateY(-6px);
}

.home-journal-card a {
    cursor: pointer;
}

.home-journal-card__image {
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background:
        linear-gradient(135deg, rgba(6, 31, 57, .1), rgba(209, 170, 89, .13)),
        #e8e2d8;
}

.home-journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.home-journal-card:hover .home-journal-card__image img {
    transform: scale(1.035);
}

.home-journal-card__placeholder {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    color: #d1aa59;
    background: #061f39;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
}

.home-journal-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 30px 30px;
}

.home-journal-card h3 {
    max-width: 420px;
    margin: 0;
    color: #071326;
    font-family: var(--font-body);
    font-size: clamp(22px, 1.7vw, 28px);
    font-weight: 500;
    letter-spacing: .14em;
    line-height: 1.35;
    text-transform: uppercase;
    transition: color .2s ease;
}

.home-journal-card h3 a:hover,
.home-journal-card:focus-within h3 a {
    color: #d1aa59;
}

.home-journal-card p {
    margin: 22px 0 0;
    color: rgba(7, 19, 38, .58);
    font-size: 16px;
    line-height: 1.7;
}

.home-journal-card__link {
    width: max-content;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    margin-top: auto;
    padding-top: 26px;
    color: #d1aa59 !important;
    border-bottom: 0;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color .2s ease;
    cursor: pointer;
}

.home-journal-card__link::after {
    content: "";
    width: 28px;
    height: 1px;
    display: inline-block;
    background: currentColor;
    transform: translateY(-1px);
    transition: width .2s ease;
}

.home-journal-card__link:hover {
    color: #d1aa59 !important;
}

.home-journal-card__link:hover::after {
    width: 38px;
}

.knowledge-card__link,
.home-journal-card__link {
    width: max-content;
    max-width: 100%;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    color: #d1aa59 !important;
    white-space: nowrap;
}

.knowledge-card__link::after,
.home-journal-card__link::after {
    content: "";
    flex: 0 0 28px;
    width: 28px;
    height: 1px;
    display: block;
    background: currentColor;
    transform: translateY(-1px);
}

.knowledge-card__link:hover,
.home-journal-card__link:hover {
    color: #d1aa59 !important;
}

.knowledge-card__link:hover::after,
.home-journal-card__link:hover::after {
    flex-basis: 38px;
    width: 38px;
}

.home-journal__actions {
    display: flex;
    justify-content: center;
    margin-top: 58px;
}

.home-journal__actions a {
    min-width: 190px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    color: #f1f5f9;
    background: #061f39;
    border: 1px solid #061f39;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
    transition: background-color .22s ease, border-color .22s ease, color .22s ease;
}

.home-journal__actions a:hover {
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
}

@media (max-width: 1180px) {
    .home-products__inner {
        width: min(100%, calc(100vw - 38px));
    }

    .home-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .expertise-section__inner {
        width: min(100%, calc(100vw - 38px));
    }

    .expertise-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-journal__grid {
        gap: 34px;
    }
}

@media (max-width: 760px) {
    .home-products__inner {
        width: 100%;
        padding: 58px 0 66px;
    }

    .home-products__head {
        width: calc(100vw - 38px);
    }

    .home-products__head p {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: .32em;
    }

    .home-products__head h2 {
        font-size: clamp(40px, 12vw, 54px);
        line-height: .94;
    }

    .home-products__head span {
        margin-top: 20px;
        font-size: 17px;
    }

    .home-products__grid {
        grid-auto-flow: column;
        grid-auto-columns: minmax(245px, 74vw);
        grid-template-columns: none;
        gap: 18px;
        margin-top: 42px;
        padding: 0 19px 12px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 19px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .home-products__grid::-webkit-scrollbar {
        display: none;
    }

    .home-product-card {
        scroll-snap-align: start;
    }

    .home-product-card:hover,
    .home-product-card:focus-within {
        transform: none;
    }

    .home-product-card__body {
        padding-top: 20px;
    }

    .home-product-card__body h3 {
        min-height: 52px;
        font-size: 23px;
    }

    .home-product-card__body strong {
        font-size: 15px;
    }

    .home-products__actions {
        margin-top: 34px;
    }

    .brand-marquee__group {
        gap: 28px;
        padding: 24px 28px;
    }

    .brand-marquee span {
        font-size: 20px;
        letter-spacing: .2em;
    }

    .brand-marquee__icon {
        width: 1em;
        height: 1em;
        flex-basis: 1em;
        font-size: 20px;
    }

    .brand-marquee__icon .icon {
        width: .84em;
        height: .84em;
    }

    .expertise-section__inner {
        width: 100%;
        padding: 58px 0 72px;
    }

    .expertise-section__head {
        width: calc(100vw - 38px);
    }

    .expertise-section__eyebrow {
        margin-bottom: 16px;
        font-size: 12px;
        letter-spacing: .32em;
    }

    .expertise-section__head h2 {
        font-size: clamp(40px, 12vw, 54px);
        line-height: .94;
    }

    .expertise-section__head > p:not(.expertise-section__eyebrow) {
        margin-top: 20px;
        font-size: 17px;
    }

    .expertise-track {
        grid-auto-flow: column;
        grid-auto-columns: minmax(278px, 82vw);
        grid-template-columns: none;
        gap: 18px;
        margin-top: 52px;
        padding: 0 19px 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-padding-inline: 19px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .expertise-track::-webkit-scrollbar {
        display: none;
    }

    .expertise-card {
        min-height: 398px;
        padding: 34px 30px 34px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .expertise-card:hover,
    .expertise-card:focus-within {
        transform: none;
    }

    .expertise-card__icon {
        width: 30px;
        height: 30px;
    }

    .expertise-card h3 {
        margin-top: 22px;
        font-size: 28px;
    }

    .expertise-card p {
        margin-top: 28px;
        font-size: 16px;
    }

    .expertise-card a {
        padding-top: 34px;
        font-size: 12px;
    }

    .expertise-indicators {
        display: flex;
        margin-top: 20px;
    }

    .home-journal__inner {
        width: calc(100vw - 38px);
        padding: 58px 0 70px;
    }

    .home-journal__head p {
        margin-bottom: 16px;
        font-size: 12px;
        letter-spacing: .32em;
    }

    .home-journal__head h2 {
        font-size: clamp(40px, 12vw, 54px);
        line-height: .94;
    }

    .home-journal__grid {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 44px;
    }

    .home-journal-card__body {
        padding: 24px 24px 28px;
    }

    .home-journal-card h3 {
        font-size: 22px;
        letter-spacing: .1em;
    }

    .home-journal-card p {
        margin-top: 18px;
        font-size: 15px;
    }

    .home-journal__actions {
        margin-top: 40px;
    }

    .home-journal-card:hover,
    .home-journal-card:focus-within {
        transform: none;
    }
}

@media (max-width: 390px) {
    .expertise-track {
        grid-auto-columns: minmax(262px, 84vw);
    }

    .expertise-card {
        padding-right: 26px;
        padding-left: 26px;
    }
}

/* Global page edge alignment. */
:root {
    --page-shell: min(1380px, calc(100vw - 52px));
    --page-shell-narrow: min(1180px, calc(100vw - 52px));
}

@media (min-width: 761px) {
    .hero__inner,
    .shop-hero__content,
    .shop-layout,
    .offer-hero__inner,
    .offer-process__inner,
    .offer-request__inner,
    .contact-page__inner,
    .cart-page__body,
    .legal-page__head,
    .legal-page__layout,
    .knowledge-hero__inner,
    .knowledge-index__inner,
    .knowledge-single__head,
    .knowledge-single__image,
    .knowledge-single__layout,
    .knowledge-related,
    .product-showcase__inner,
    .single-product .woocommerce-notices-wrapper,
    .single-product-layout,
    .home-products__inner,
    .expertise-section__inner,
    .home-journal__inner,
    .trust-strip,
    .service-grid,
    .section--split,
    .contact-grid,
    .form-layout,
    .search-landing,
    .search-hero,
    .site-footer .footer-inner,
    .site-footer .footer-bottom {
        width: var(--page-shell);
    }
}

@media (max-width: 760px) {
    :root {
        --page-shell: calc(100vw - 38px);
        --page-shell-narrow: calc(100vw - 38px);
    }

    .hero__inner,
    .shop-hero__content,
    .shop-layout,
    .offer-hero__inner,
    .offer-process__inner,
    .offer-request__inner,
    .contact-page__inner,
    .cart-page__body,
    .legal-page__head,
    .legal-page__layout,
    .knowledge-hero__inner,
    .knowledge-index__inner,
    .knowledge-single__head,
    .knowledge-single__image,
    .knowledge-single__layout,
    .knowledge-related,
    .product-showcase__inner,
    .single-product .woocommerce-notices-wrapper,
    .single-product-layout,
    .home-journal__inner,
    .trust-strip,
    .service-grid,
    .section--split,
    .contact-grid,
    .form-layout,
    .search-landing,
    .search-hero,
    .site-footer .footer-inner,
    .site-footer .footer-bottom {
        width: var(--page-shell);
    }

    .home-products__head,
    .expertise-section__head {
        width: var(--page-shell);
    }
}

.woocommerce ul.products li.product .product-card__actions a.button.button--primary,
.product-card .product-card__actions a.button.button--primary {
    min-height: 58px;
    color: #061b31 !important;
    background: #d1aa59 !important;
    border: 1px solid #d1aa59 !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.woocommerce ul.products li.product .product-card__actions a.button.button--primary:hover,
.product-card .product-card__actions a.button.button--primary:hover {
    color: #061b31 !important;
    background: #e0bb6b !important;
    border-color: #e0bb6b !important;
}

/* Unified button system */
.button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button,
.knowledge-search button,
.search-panel__row button,
.offer-form .button,
.request-form .button,
.cart-page .woocommerce-cart-form .actions .button,
.cart-page .cart_totals .wc-proceed-to-checkout .button,
.a2-empty-cart .button,
.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 28px;
    border-width: 1px;
    border-style: solid;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.button .icon,
.woocommerce a.button .icon,
.woocommerce button.button .icon,
.knowledge-search button .icon,
.search-panel__row button .icon,
.single-product div.product form.cart .button.single_add_to_cart_button .icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.button--primary,
.wp-block-button__link,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.knowledge-search button,
.search-panel__row button,
.offer-form .button,
.request-form .button,
.cart-page .cart_totals .wc-proceed-to-checkout .button,
.a2-empty-cart .button,
.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce ul.products li.product .product-card__actions a.button.button--primary,
.product-card .product-card__actions a.button.button--primary {
    color: #061b31 !important;
    background: #d1aa59 !important;
    border-color: #d1aa59 !important;
}

.button--primary:hover,
.wp-block-button__link:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.knowledge-search button:hover,
.search-panel__row button:hover,
.offer-form .button:hover,
.request-form .button:hover,
.cart-page .cart_totals .wc-proceed-to-checkout .button:hover,
.a2-empty-cart .button:hover,
.single-product div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce ul.products li.product .product-card__actions a.button.button--primary:hover,
.product-card .product-card__actions a.button.button--primary:hover {
    color: #061b31 !important;
    background: #e0bb6b !important;
    border-color: #e0bb6b !important;
}

.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.cart-page .woocommerce-cart-form .actions .button,
.product-card__actions .add_to_cart_button {
    color: #071326 !important;
    background: transparent !important;
    border-color: #071326 !important;
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.cart-page .woocommerce-cart-form .actions .button:hover,
.product-card__actions .add_to_cart_button:hover {
    color: #071326 !important;
    background: rgba(7, 19, 38, .04) !important;
    border-color: #071326 !important;
}

.button--outline-gold,
.button--secondary,
.product-purchase-flow__actions .button,
.cart-page .woocommerce-cart-form .actions > .button {
    color: #b88f3d !important;
    background: transparent !important;
    border-color: #d1aa59 !important;
}

.button--outline-gold:hover,
.button--secondary:hover,
.product-purchase-flow__actions .button:hover,
.cart-page .woocommerce-cart-form .actions > .button:hover {
    color: #061b31 !important;
    background: rgba(209, 170, 89, .14) !important;
    border-color: #d1aa59 !important;
}

.button--ghost {
    color: #071326 !important;
    background: transparent !important;
    border-color: #071326 !important;
}

.button--ghost:hover {
    color: #071326 !important;
    background: rgba(7, 19, 38, .04) !important;
    border-color: #071326 !important;
}

.hero__actions .button--ghost,
.offer-hero__actions .button--ghost {
    color: #f1f5f9 !important;
    background: transparent !important;
    border-color: rgba(142, 169, 198, .52) !important;
}

.hero__actions .button--ghost:hover,
.offer-hero__actions .button--ghost:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .06) !important;
    border-color: rgba(142, 169, 198, .78) !important;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button,
.offer-form .button,
.request-form .button,
.knowledge-search button,
.search-panel__row button,
.cart-page .woocommerce-cart-form .actions .button,
.cart-page .cart_totals .wc-proceed-to-checkout .button,
.a2-empty-cart .button {
    width: 100%;
}

.button.button--primary,
.button--primary,
.wp-block-button__link,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.knowledge-search button,
.search-panel__row button,
.offer-form .button.button--primary,
.request-form .button.button--primary,
.cart-page .cart_totals .wc-proceed-to-checkout .button,
.a2-empty-cart .button.button--primary,
.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button,
.woocommerce ul.products li.product .product-card__actions a.button.button--primary,
.product-card .product-card__actions a.button.button--primary {
    color: #061b31 !important;
    background: #d1aa59 !important;
    border-color: #d1aa59 !important;
}

.button.button--primary:hover,
.button--primary:hover,
.wp-block-button__link:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.knowledge-search button:hover,
.search-panel__row button:hover,
.offer-form .button.button--primary:hover,
.request-form .button.button--primary:hover,
.cart-page .cart_totals .wc-proceed-to-checkout .button:hover,
.a2-empty-cart .button.button--primary:hover,
.single-product div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button.single_add_to_cart_button:hover,
.woocommerce ul.products li.product .product-card__actions a.button.button--primary:hover,
.product-card .product-card__actions a.button.button--primary:hover {
    color: #061b31 !important;
    background: #e0bb6b !important;
    border-color: #e0bb6b !important;
}

/* Product page rhythm and sale price details */
.single-product div.product p.price,
.woocommerce div.product p.price {
    margin: 20px 0 0;
    font-size: clamp(24px, 2.1vw, 30px);
    line-height: 1.14;
}

.single-product .a2-price {
    gap: 6px;
}

.single-product .a2-price__row {
    gap: 9px;
}

.single-product .a2-price__regular {
    color: rgba(7, 19, 38, .58);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.35;
}

.single-product .a2-price__regular del,
.single-product .a2-price__regular .woocommerce-Price-amount {
    font-size: 13px;
    font-weight: 700;
}

.single-product .a2-price__lowest,
.single-product .a2-price__lowest .woocommerce-Price-amount,
.single-product .a2-price__lowest .woocommerce-Price-currencySymbol {
    color: rgba(7, 19, 38, .52);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
}

.single-product .a2-price__badge {
    min-height: 25px;
    padding: 0 9px;
    font-size: 10px;
}

.product-card__price .a2-price__regular,
.woocommerce ul.products li.product .price .a2-price__regular {
    font-size: 11px;
    font-weight: 700;
}

.product-card__price .a2-price__lowest,
.product-card__price .a2-price__lowest *,
.woocommerce ul.products li.product .price .a2-price__lowest,
.woocommerce ul.products li.product .price .a2-price__lowest * {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0;
}

.single-product div.product form.cart,
.woocommerce div.product form.cart {
    margin-top: 18px;
}

.single-product .product-specs-accordion {
    margin-top: 14px;
}

.single-product .product-specs-accordion + .product-specs-accordion {
    margin-top: 0;
}

.single-product .product-specs-accordion summary {
    min-height: 50px;
}

.single-product .product-info-accordion__content {
    padding: 0;
    line-height: 1.58;
}

.single-product .product-specs-accordion__inner {
    padding: 10px 0 16px;
}

.single-product .product-info-accordion__inner p {
    margin: 0 0 12px;
}

.product-a2-assurance {
    color: #071326;
    background: #fbfaf7;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.product-a2-assurance__intro .eyebrow {
    color: #b98d35;
}

.product-a2-assurance h2 {
    color: #071326;
}

.product-a2-assurance__copy {
    color: rgba(7, 19, 38, .68);
}

.product-a2-assurance__panel {
    background: #fff;
    border-color: rgba(7, 19, 38, .08);
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
}

.product-a2-assurance__panel--gold {
    background: rgba(209, 170, 89, .08);
    border-color: rgba(209, 170, 89, .22);
}

.product-a2-assurance__panel h3 {
    color: #071326;
}

.product-a2-assurance__panel li {
    color: rgba(7, 19, 38, .72);
}

.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button {
    width: 100%;
    min-width: 238px;
}

.single-product div.product form.cart,
.woocommerce div.product form.cart,
.single-product .ajax-cart-feedback {
    width: 100%;
}

.single-product div.product form.cart .button.single_add_to_cart_button,
.woocommerce div.product form.cart .button.single_add_to_cart_button {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

body.single-product .single-product-layout__summary form.cart {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
}

body.single-product .single-product-layout__summary form.cart button.single_add_to_cart_button[name="add-to-cart"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
}

body.single-product .single-product-layout__summary form.cart {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
}

body.single-product .single-product-layout__summary form.cart button.single_add_to_cart_button[name="add-to-cart"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
}

.single-product div.product form.cart .button.single_add_to_cart_button.is-loading,
.woocommerce div.product form.cart .button.single_add_to_cart_button.is-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.single-product div.product form.cart .button.single_add_to_cart_button.is-loading .button-dots,
.woocommerce div.product form.cart .button.single_add_to_cart_button.is-loading .button-dots {
    margin: 0;
}

/* Light variant for product assurance section */
.product-a2-assurance {
    color: #071326;
    background: #fbfaf7;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.product-a2-assurance__intro .eyebrow {
    color: #b98d35;
}

.product-a2-assurance h2 {
    color: #071326;
}

.product-a2-assurance__copy {
    color: rgba(7, 19, 38, .68);
}

.product-a2-assurance__panel {
    background: #fff;
    border-color: rgba(7, 19, 38, .08);
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
}

.product-a2-assurance__panel--gold {
    background: rgba(209, 170, 89, .08);
    border-color: rgba(209, 170, 89, .22);
}

.product-a2-assurance__panel h3 {
    color: #071326;
}

.product-a2-assurance__panel li {
    color: rgba(7, 19, 38, .72);
}

.product-a2-assurance {
    color: #071326;
    background: #fbfaf7;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.product-a2-assurance__intro .eyebrow {
    color: #b98d35;
}

.product-a2-assurance h2 {
    color: #071326;
}

.product-a2-assurance__copy {
    color: rgba(7, 19, 38, .68);
}

.product-a2-assurance__panel {
    background: #fff;
    border-color: rgba(7, 19, 38, .08);
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
}

.product-a2-assurance__panel--gold {
    background: rgba(209, 170, 89, .08);
    border-color: rgba(209, 170, 89, .22);
}

.product-a2-assurance__panel h3 {
    color: #071326;
}

.product-a2-assurance__panel li {
    color: rgba(7, 19, 38, .72);
}

.single-product .woocommerce-notices-wrapper,
.single-product-layout {
    width: min(1240px, calc(100vw - 52px));
}

.single-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 426px);
    gap: clamp(28px, 3.8vw, 52px);
}

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

.product-a2-assurance {
    margin: 0;
    color: #eef4fb;
    background:
        linear-gradient(105deg, rgba(0, 22, 42, .96), rgba(6, 31, 57, .97)),
        #061f39;
}

.product-a2-assurance__inner {
    width: min(1240px, calc(100vw - 52px));
    margin: 0 auto;
    padding: clamp(58px, 7vw, 92px) 0;
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.12fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
}

.product-a2-assurance__intro {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 22px;
}

.product-a2-assurance__intro .eyebrow {
    color: #d1aa59;
}

.product-a2-assurance h2 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(42px, 4.7vw, 72px);
    line-height: .94;
    letter-spacing: 0;
}

.product-a2-assurance__copy {
    display: grid;
    gap: 14px;
    color: rgba(232, 238, 247, .72);
    font-size: 16px;
    line-height: 1.78;
}

.product-a2-assurance__copy p {
    margin: 0;
}

.product-a2-assurance__lists {
    display: grid;
    gap: 12px;
}

.product-a2-assurance__panel {
    padding: clamp(24px, 3vw, 34px);
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .12);
}

.product-a2-assurance__panel--gold {
    background: rgba(209, 170, 89, .11);
    border-color: rgba(209, 170, 89, .28);
}

.product-a2-assurance__panel h3 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.product-a2-assurance__panel ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-a2-assurance__panel li {
    position: relative;
    padding-left: 28px;
    color: rgba(232, 238, 247, .78);
    font-size: 14px;
    font-weight: 640;
    line-height: 1.55;
}

.product-a2-assurance__panel li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: #d1aa59;
    font-weight: 900;
}

@media (max-width: 980px) {
    .product-a2-assurance__inner {
        grid-template-columns: 1fr;
    }

    .product-a2-assurance__intro {
        position: static;
    }
}

@media (max-width: 640px) {
    .product-a2-assurance__inner {
        width: calc(100vw - 32px);
        padding: 46px 0 58px;
    }

    .product-a2-assurance h2 {
        font-size: clamp(38px, 12vw, 54px);
    }
}

.single-product .product-info-accordion .watch-check-list {
    gap: 7px;
    margin: 8px 0 0;
}

.single-product .single-product-layout__summary .watch-specs--compact {
    padding: 0;
}

.single-product .single-product-layout__summary .watch-specs--compact div {
    padding: 4px 0;
}

.single-product .product-service-notes {
    padding: 18px 0;
}

.single-product .product-specs-accordion__content,
.single-product .product-info-accordion__content {
    padding: 0 !important;
}

.single-product .product-specs-accordion__inner {
    padding: 10px 0 16px;
}

.single-product .product-info-accordion__inner {
    color: rgba(7, 19, 38, .72);
    font-size: 13px;
    line-height: 1.58;
}

.single-product .product-info-accordion__inner > *:first-child {
    margin-top: 0;
}

.single-product .product-info-accordion__inner > *:last-child {
    margin-bottom: 0;
}

.single-product .product-info-accordion__inner p {
    margin: 0 0 12px;
}

/* Final light override for the bottom product assurance section. */
.product-a2-assurance {
    color: #071326;
    background: #fbfaf7;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.product-a2-assurance__intro .eyebrow {
    color: #b98d35;
}

.product-a2-assurance h2 {
    color: #071326;
}

.product-a2-assurance__copy {
    color: rgba(7, 19, 38, .68);
}

.product-a2-assurance__panel {
    background: #fff;
    border-color: rgba(7, 19, 38, .08);
    box-shadow: 0 12px 34px rgba(7, 19, 38, .045);
}

.product-a2-assurance__panel--gold {
    background: rgba(209, 170, 89, .08);
    border-color: rgba(209, 170, 89, .22);
}

.product-a2-assurance__panel h3 {
    color: #071326;
}

.product-a2-assurance__panel li {
    color: rgba(7, 19, 38, .72);
}

body.single-product .single-product-layout__summary form.cart {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
}

body.single-product .single-product-layout__summary form.cart button.single_add_to_cart_button[name="add-to-cart"] {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    justify-self: stretch !important;
    align-self: stretch !important;
    box-sizing: border-box !important;
}

body.single-product .single-product-layout__summary .ajax-cart-feedback {
    width: 100% !important;
}

body.single-product .single-product-layout__summary form.cart button.single_add_to_cart_button[name="add-to-cart"].is-loading {
    align-items: center;
    justify-content: center;
    gap: 0;
}

body.single-product .single-product-layout__summary form.cart button.single_add_to_cart_button[name="add-to-cart"].is-loading .button-dots {
    margin: 0;
}

/* Final offer filters and sorting polish. */
.shop-layout {
    grid-template-columns: 320px minmax(0, 1fr);
}

.shop-filters {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .09);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(7, 19, 38, .055);
}

.shop-filters__head {
    margin: 0 0 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

.shop-filters__head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
}

.shop-filters__head a {
    color: #b98d35;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-decoration: none;
}

.shop-filters label {
    display: grid;
    gap: 8px;
    margin: 0;
    color: rgba(7, 19, 38, .58);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.shop-filters input[type="number"],
.shop-filters select,
.woocommerce-ordering select.orderby {
    width: 100%;
    min-height: 52px;
    padding: 0 42px 0 15px;
    color: #071326;
    background-color: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .13);
    border-radius: 0;
    font-size: 14px;
    font-weight: 760;
    letter-spacing: 0;
    outline: none;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.shop-filters select,
.woocommerce-ordering select.orderby {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #b98d35 50%),
        linear-gradient(135deg, #b98d35 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 22px,
        calc(100% - 13px) 22px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.shop-filters input[type="number"]:focus,
.shop-filters select:focus,
.woocommerce-ordering select.orderby:focus {
    background-color: #fff;
    border-color: rgba(185, 141, 53, .64);
    box-shadow: 0 0 0 3px rgba(209, 170, 89, .14);
}

.shop-filters .form-grid {
    gap: 12px;
}

.shop-filters__checks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.shop-filters__checks label {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 11px;
    margin: 0;
    color: #071326;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.shop-filters__checks input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    flex: 0 0 18px;
    accent-color: #b98d35;
}

.shop-filters .button.button--primary {
    width: 100%;
    min-height: 58px;
    margin-top: 2px;
    border-radius: 0;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .13em;
}

.shop-toolbar {
    min-height: 58px;
    margin-bottom: 30px;
    padding-bottom: 22px;
}

.woocommerce-ordering {
    min-width: min(260px, 100%);
}

.woocommerce-ordering select.orderby {
    min-height: 50px;
    padding-left: 16px;
    background-color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.shop-layout__filters {
    position: sticky;
    top: 104px;
    align-self: start;
    max-height: none;
    overflow: visible;
}

.shop-layout__filters .shop-filters {
    max-height: none;
    overflow: visible;
}

.woocommerce nav.woocommerce-pagination {
    display: flex;
    justify-content: center;
    margin: 54px 0 0;
}

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

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

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: inline-flex;
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .13);
    border-radius: 0;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    line-height: 1;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    color: #061b31;
    background: #d1aa59;
    border-color: #d1aa59;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-layout__filters {
        position: static;
    }
}

@media (max-width: 640px) {
    .shop-filters {
        padding: 22px;
    }

    .shop-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .woocommerce-ordering {
        width: 100%;
    }
}

/* Final product card rhythm for regular and sale prices. */
.woocommerce ul.products li.product.product-card,
ul.products li.product.product-card,
.product-card {
    height: 100%;
}

.product-card__body {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(104px, auto) 24px minmax(138px, auto) auto;
    gap: 0;
    padding: clamp(24px, 2.4vw, 32px);
}

.product-card__body > a {
    display: block;
    align-self: start;
    text-decoration: none;
}

.product-card h2,
.woocommerce ul.products li.product .product-card h2 {
    max-width: 92%;
    min-height: 78px;
    font-size: clamp(30px, 2.35vw, 42px);
    line-height: 1.02;
}

.product-card__meta {
    align-self: start;
    min-height: 20px;
    margin: 0;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    align-self: start;
    min-height: 138px;
    display: flex !important;
    align-items: flex-start;
    margin: 34px 0 0 !important;
    color: #b98d35;
    line-height: 1.12;
}

.product-card__price .a2-price,
.woocommerce ul.products li.product .price .a2-price {
    width: 100%;
    gap: 7px;
}

.product-card__price .a2-price__row,
.woocommerce ul.products li.product .price .a2-price__row {
    align-items: center;
    gap: 12px;
}

.product-card__price .a2-price__current,
.woocommerce ul.products li.product .price .a2-price__current,
.product-card__price > .woocommerce-Price-amount,
.woocommerce ul.products li.product .price > .woocommerce-Price-amount {
    color: #b98d35;
    font-size: clamp(30px, 2.4vw, 42px);
    font-weight: 950;
    letter-spacing: .01em;
    line-height: 1;
}

.product-card__price .a2-price__badge,
.woocommerce ul.products li.product .price .a2-price__badge {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
}

.product-card__price .a2-price__regular,
.product-card__price .a2-price__lowest,
.woocommerce ul.products li.product .price .a2-price__regular,
.woocommerce ul.products li.product .price .a2-price__lowest {
    color: rgba(7, 19, 38, .52);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
    line-height: 1.35;
}

.product-card__price .a2-price__regular {
    font-weight: 800;
}

.product-card__actions {
    align-self: end;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
    min-height: 64px;
}

@media (max-width: 780px) {
    .product-card__body {
        grid-template-rows: auto 24px auto auto;
    }

    .product-card h2,
    .woocommerce ul.products li.product .product-card h2 {
        min-height: 0;
        max-width: none;
    }

    .product-card__price,
    .woocommerce ul.products li.product .price {
        min-height: 0;
        margin-top: 26px !important;
    }

    .product-card__actions {
        margin-top: 28px;
    }
}

/* Final blog card rhythm. */
.knowledge-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.knowledge-card__body {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto auto auto;
    align-content: start;
    flex: 1;
    padding: clamp(24px, 2.5vw, 32px);
}

.knowledge-card__meta {
    min-height: 20px;
}

.knowledge-card h3 {
    margin-top: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.knowledge-card h3 a {
    display: inline;
}

.knowledge-card p {
    margin-top: 18px;
    overflow: hidden;
    display: -webkit-box;
    color: rgba(7, 19, 38, .58);
    font-size: 15px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.knowledge-card__link {
    align-self: flex-start;
    margin-top: 24px;
    padding-top: 0;
}

@media (max-width: 640px) {
    .knowledge-card__body {
        padding: 24px;
    }
}

/* Final cart redesign. */
.cart-page {
    background: #fbfaf7;
}

.cart-page__body {
    width: min(1320px, calc(100vw - 52px));
    padding: clamp(58px, 6vw, 82px) 0 clamp(82px, 8vw, 118px);
}

.cart-page__head {
    max-width: 920px;
    margin-bottom: clamp(34px, 4vw, 54px);
}

.cart-page__head h1 {
    font-size: clamp(54px, 5.6vw, 92px);
}

.cart-page .woocommerce {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    gap: clamp(28px, 4vw, 54px);
    align-items: start;
}

.cart-page .checkout-trust,
.cart-page .woocommerce-shipping-totals,
.cart-page .shipping,
.cart-page .shipping-calculator-button,
.cart-page .woocommerce-cart-form .actions > .button.a2-cart-update-button {
    display: none !important;
}

.cart-page .woocommerce-notices-wrapper {
    grid-column: 1 / -1;
}

.cart-page .woocommerce-message,
.cart-page .woocommerce-info,
.cart-page .woocommerce-error {
    margin: 0 0 18px;
    padding: 18px 22px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(209, 170, 89, .32);
    border-top: 0;
    box-shadow: 0 12px 34px rgba(7, 19, 38, .055);
}

.cart-page .woocommerce-cart-form,
.cart-page .cart-collaterals,
.a2-empty-cart {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(7, 19, 38, .06);
}

.cart-page .woocommerce-cart-form {
    position: relative;
    padding: clamp(18px, 2vw, 26px);
    overflow: visible;
}

.cart-page .woocommerce.is-updating .woocommerce-cart-form,
.cart-page .woocommerce.is-updating .cart-collaterals {
    opacity: .56;
    pointer-events: none;
}

.a2-cart-updating {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 4;
    margin: 0;
    padding: 10px 14px;
    color: #071326;
    background: #d1aa59;
    border: 1px solid #d1aa59;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    line-height: 1;
    text-transform: uppercase;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.cart-page .woocommerce.is-updating .a2-cart-updating {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-page .woocommerce table.shop_table.a2-cart-table,
.cart-page .a2-cart-table {
    display: block;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.cart-page .a2-cart-table thead {
    display: none;
}

.cart-page .a2-cart-table tbody {
    display: grid;
    gap: 14px;
}

.cart-page .a2-cart-table tr.cart_item {
    position: relative;
    display: grid;
    grid-template-columns: 38px 116px minmax(0, 1fr) minmax(110px, .42fr) minmax(100px, .32fr) minmax(116px, .42fr);
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
}

.cart-page .a2-cart-table td {
    display: block;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    text-align: left;
    vertical-align: middle;
}

.cart-page .a2-cart-table .product-remove {
    display: flex;
    justify-content: center;
}

.cart-page .woocommerce-cart-form .remove {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    color: rgba(7, 19, 38, .58) !important;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .12);
    border-radius: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.cart-page .woocommerce-cart-form .remove:hover {
    color: #061b31 !important;
    background: #d1aa59;
    border-color: #d1aa59;
}

.cart-page .a2-cart-table .product-thumbnail {
    width: auto;
}

.cart-page .a2-cart-table .product-thumbnail img {
    width: 116px;
    height: 116px;
    display: block;
    object-fit: cover;
    background: #00162a;
}

.cart-page .woocommerce-cart-form .product-name a {
    max-width: 420px;
    display: inline-block;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.02;
    text-decoration: none;
}

.cart-page .woocommerce-cart-form .product-name a:hover {
    color: #b98d35;
}

.cart-page .woocommerce-cart-form .product-price,
.cart-page .woocommerce-cart-form .product-subtotal {
    color: rgba(7, 19, 38, .68);
    font-size: 14px;
    font-weight: 850;
    letter-spacing: 0;
    white-space: nowrap;
}

.cart-page .woocommerce-cart-form .product-subtotal {
    color: #b98d35;
    font-size: 16px;
    text-align: right;
}

.cart-page .quantity {
    display: inline-flex;
}

.cart-page .quantity .qty {
    width: 76px;
    height: 52px;
    min-height: 52px;
    padding: 0 8px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .14);
    border-radius: 0;
    font-size: 16px;
    font-weight: 850;
    text-align: center;
}

.cart-page .quantity .qty:focus {
    border-color: rgba(185, 141, 53, .68);
    box-shadow: 0 0 0 3px rgba(209, 170, 89, .14);
    outline: none;
}

.a2-cart-item-message {
    display: none;
    max-width: 220px;
    margin: 9px 0 0;
    color: #8a5d00;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    line-height: 1.35;
}

.a2-cart-item-message.is-visible {
    display: block;
}

.cart-page .a2-cart-actions-row {
    display: block;
}

.cart-page .a2-cart-actions-row .actions {
    display: block;
    padding: 8px 0 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.cart-page .woocommerce-cart-form .actions .coupon {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    float: none;
}

.cart-page .woocommerce-cart-form .actions .coupon .input-text {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .13);
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
}

.cart-page .woocommerce-cart-form .actions .coupon .button {
    min-height: 56px;
    color: #071326 !important;
    background: transparent !important;
    border-color: #071326 !important;
}

.cart-page .cart-collaterals {
    position: sticky;
    top: 108px;
    padding: clamp(24px, 2.7vw, 34px);
}

.cart-page .cart_totals {
    float: none;
    width: 100%;
}

.cart-page .cart_totals h2 {
    margin: 0 0 24px;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(36px, 3vw, 50px);
    line-height: .96;
}

.cart-page .cart_totals table.shop_table {
    display: table;
    width: 100%;
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(7, 19, 38, .09);
}

.cart-page .cart_totals table.shop_table th,
.cart-page .cart_totals table.shop_table td {
    padding: 18px 0;
    border: 0;
    border-bottom: 1px solid rgba(7, 19, 38, .09);
}

.cart-page .cart_totals table.shop_table th {
    color: rgba(7, 19, 38, .55);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.cart-page .cart_totals table.shop_table td {
    color: #071326;
    font-size: 15px;
    font-weight: 850;
    text-align: right;
}

.cart-page .cart_totals .order-total th,
.cart-page .cart_totals .order-total td {
    color: #071326;
    font-size: 13px;
}

.cart-page .cart_totals .order-total td,
.cart-page .cart_totals .order-total td .amount {
    color: #b98d35;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 950;
}

.cart-page .wc-proceed-to-checkout {
    padding: 24px 0 0;
}

.cart-page .wc-proceed-to-checkout .checkout-button {
    width: 100%;
    min-height: 64px;
    margin: 0;
}

.a2-empty-cart {
    grid-column: 1 / -1;
    width: min(900px, 100%);
    max-width: none;
    padding: clamp(42px, 6vw, 78px);
    text-align: center;
}

.a2-empty-cart .eyebrow {
    color: #b98d35;
}

.a2-empty-cart h2 {
    max-width: 740px;
    margin: 22px auto 0;
    color: #071326;
    font-size: clamp(44px, 4.6vw, 76px);
}

.a2-empty-cart p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px auto 0;
    color: rgba(7, 19, 38, .62);
}

.a2-empty-cart .button {
    min-width: 260px;
    min-height: 62px;
    margin-top: 34px;
}

@media (max-width: 1100px) {
    .cart-page .woocommerce {
        grid-template-columns: 1fr;
    }

    .cart-page .cart-collaterals {
        position: static;
    }
}

@media (max-width: 780px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 92px minmax(0, 1fr) 38px;
        gap: 14px 16px;
        padding: 16px;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1;
        grid-row: 1 / span 4;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 92px;
        height: 112px;
    }

    .cart-page .a2-cart-table .product-name {
        grid-column: 2;
        grid-row: 1;
        padding-right: 0;
    }

    .cart-page .a2-cart-table .product-remove {
        grid-column: 3;
        grid-row: 1;
        justify-content: end;
    }

    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 2 / 4;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        white-space: normal;
        text-align: right;
    }

    .a2-cart-item-message {
        max-width: none;
        margin-left: auto;
        text-align: right;
    }

    .cart-page .a2-cart-table .product-price::before,
    .cart-page .a2-cart-table .product-quantity::before,
    .cart-page .a2-cart-table .product-subtotal::before {
        content: attr(data-title);
        color: rgba(7, 19, 38, .48);
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .cart-page .woocommerce-cart-form .product-name a {
        max-width: none;
        font-size: 24px;
    }

    .cart-page .woocommerce-cart-form .actions .coupon {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .cart-page__body {
        width: calc(100vw - 32px);
    }

    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 1fr 38px;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.25;
    }

    .cart-page .a2-cart-table .product-name,
    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 1 / -1;
    }

    .cart-page .a2-cart-table .product-remove {
        position: absolute;
        top: 14px;
        right: 14px;
    }
}

/* Plain frontend number inputs, with cart-specific sizing below. */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

/* Cart polish: clearer product rows and plain quantity inputs. */
.cart-page .a2-cart-table tbody {
    gap: 12px;
}

.cart-page .a2-cart-table tr.cart_item {
    grid-template-columns: 104px minmax(0, 1fr) 92px 70px 112px 34px;
    gap: 14px;
    padding: 16px;
}

.cart-page .a2-cart-table .product-thumbnail {
    order: 1;
}

.cart-page .a2-cart-table .product-name {
    order: 2;
}

.cart-page .a2-cart-table .product-price {
    order: 3;
}

.cart-page .a2-cart-table .product-quantity {
    order: 4;
}

.cart-page .a2-cart-table .product-subtotal {
    order: 5;
}

.cart-page .a2-cart-table .product-remove {
    order: 6;
    justify-content: end;
}

.cart-page .a2-cart-table .product-thumbnail img {
    width: 104px;
    height: 104px;
}

.cart-page .woocommerce-cart-form .product-name a {
    max-width: 100%;
    font-size: clamp(20px, 1.55vw, 26px);
    line-height: 1.08;
}

.cart-page .woocommerce-cart-form .product-price,
.cart-page .woocommerce-cart-form .product-quantity,
.cart-page .woocommerce-cart-form .product-subtotal {
    min-width: 0;
    color: rgba(7, 19, 38, .74);
    font-size: 13px;
    font-weight: 850;
    text-align: left;
    white-space: normal;
}

.cart-page .woocommerce-cart-form .product-subtotal .amount {
    color: #b98d35;
    font-size: 15px;
    font-weight: 950;
}

.a2-cart-cell-label {
    display: block;
    margin: 0 0 8px;
    color: rgba(7, 19, 38, .48);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .13em;
    line-height: 1;
    text-transform: uppercase;
}

.a2-cart-cell-value {
    display: block;
}

.cart-page .quantity {
    display: inline-grid;
    place-items: center;
}

.cart-page .quantity .qty {
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 0;
    font-size: 15px;
    line-height: 52px;
}

.cart-page .a2-cart-item-message {
    max-width: 260px;
}

@media (max-width: 1100px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 96px minmax(0, 1fr) 86px 66px 108px 34px;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 96px;
        height: 96px;
    }
}

@media (max-width: 780px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 88px minmax(0, 1fr) 34px;
        gap: 12px 14px;
        padding: 14px;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1;
        grid-row: 1 / span 4;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 88px;
        height: 106px;
    }

    .cart-page .a2-cart-table .product-name {
        grid-column: 2;
        grid-row: 1;
    }

    .cart-page .a2-cart-table .product-remove {
        grid-column: 3;
        grid-row: 1;
    }

    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 2 / 4;
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        justify-content: initial;
        text-align: left;
    }

    .cart-page .a2-cart-table .product-price::before,
    .cart-page .a2-cart-table .product-quantity::before,
    .cart-page .a2-cart-table .product-subtotal::before {
        display: none;
    }

    .a2-cart-cell-label {
        margin: 0;
    }

    .cart-page .woocommerce-cart-form .product-name a {
        font-size: 21px;
    }

    .a2-cart-item-message {
        grid-column: 1 / -1;
        margin: 7px 0 0;
        text-align: left;
    }
}

@media (max-width: 520px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 1fr 34px;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1 / -1;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 100%;
        height: auto;
        aspect-ratio: 1.18;
    }

    .cart-page .a2-cart-table .product-name,
    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 1 / -1;
    }

    .cart-page .woocommerce-cart-form .product-name a {
        font-size: 24px;
    }
}

/* Cart item vertical alignment. */
@media (min-width: 781px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 104px minmax(280px, 1fr) minmax(120px, .34fr) 70px minmax(136px, .38fr) 34px;
        grid-template-rows: 20px 52px;
        column-gap: 20px;
        row-gap: 10px;
        align-items: start;
        padding: 18px;
        min-height: 140px;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1;
        grid-row: 1 / 3;
        min-height: 104px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .cart-page .a2-cart-table .product-name {
        grid-column: 2;
        grid-row: 1 / 3;
        min-height: 104px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        min-height: 82px;
        display: grid;
        grid-template-rows: 20px 52px;
        row-gap: 10px;
        align-self: center;
        align-items: start;
    }

    .cart-page .a2-cart-table .product-price {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .cart-page .a2-cart-table .product-quantity {
        grid-column: 4;
        grid-row: 1 / 3;
    }

    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 5;
        grid-row: 1 / 3;
    }

    .cart-page .a2-cart-table .product-remove {
        grid-column: 6;
        grid-row: 1 / 3;
        min-height: 104px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .cart-page .a2-cart-table .a2-cart-cell-label {
        height: 20px;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .cart-page .a2-cart-table .product-price .a2-cart-cell-value,
    .cart-page .a2-cart-table .product-quantity .a2-cart-cell-value {
        height: 52px;
        display: flex;
        align-items: center;
    }

    .cart-page .a2-cart-table .product-subtotal .a2-cart-cell-value {
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .cart-page .a2-cart-table .product-name a {
        display: block;
    }

    .cart-page .woocommerce-cart-form .product-price .amount,
    .cart-page .woocommerce-cart-form .product-subtotal .amount {
        line-height: 1;
    }
}

/* Cart final fit: tighter header gap and visible remove action. */
.cart-page__head {
    margin-bottom: clamp(18px, 2.2vw, 30px);
}

@media (min-width: 781px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 104px minmax(240px, 1fr) minmax(108px, .3fr) 64px minmax(128px, .36fr);
        column-gap: 18px;
        padding: 18px 58px 18px 18px;
    }

    .cart-page .a2-cart-table .product-remove {
        position: absolute;
        top: 50%;
        right: 18px;
        z-index: 2;
        width: 34px;
        min-height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
    }

    .cart-page .woocommerce-cart-form .remove {
        width: 34px;
        height: 34px;
        background: #fff;
    }

    .cart-page .a2-cart-table .product-price {
        grid-column: 3;
    }

    .cart-page .a2-cart-table .product-quantity {
        grid-column: 4;
    }

    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 5;
    }

    .cart-page .woocommerce-cart-form .product-name a {
        font-size: clamp(19px, 1.45vw, 24px);
    }

    .cart-page .woocommerce-cart-form .product-price,
    .cart-page .woocommerce-cart-form .product-subtotal {
        font-size: 12px;
    }

    .cart-page .woocommerce-cart-form .product-subtotal .amount {
        font-size: 14px;
    }
}

.cart-page .woocommerce-cart-form .actions .coupon {
    grid-template-columns: minmax(0, 1fr) 220px;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.cart-page .woocommerce-cart-form .actions .coupon .button {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100%;
    min-width: 0 !important;
    height: 56px;
    min-height: 56px !important;
    padding: 0 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px !important;
    letter-spacing: .07em !important;
    line-height: 1 !important;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

.cart-page .woocommerce-cart-form .remove svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .cart-page .woocommerce-cart-form .actions .coupon {
        grid-template-columns: 1fr;
        overflow: visible;
    }
}

/* Cart structural fix: coupon outside table and remove button inside the row grid. */
.cart-page .a2-cart-actions-row {
    display: block;
    margin-top: 16px;
    overflow: visible;
}

.cart-page .a2-cart-actions-row .actions {
    display: block;
    width: 100%;
    padding: 0 !important;
    overflow: visible;
}

.cart-page .woocommerce-cart-form .actions .coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 16px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.cart-page .woocommerce-cart-form .actions .coupon .input-text {
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
}

.cart-page .woocommerce-cart-form .actions .coupon .button {
    box-sizing: border-box;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    height: 56px;
    min-height: 56px !important;
    padding: 0 16px !important;
    border-width: 1px !important;
    font-size: 12px !important;
    letter-spacing: .06em !important;
    overflow: visible;
}

@media (min-width: 781px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 104px minmax(240px, 1fr) minmax(112px, .3fr) 74px minmax(132px, .36fr) 46px;
        column-gap: 18px;
        padding: 18px;
    }

    .cart-page .a2-cart-table .product-remove {
        position: static !important;
        grid-column: 6;
        grid-row: 1 / 3;
        z-index: auto;
        width: 46px;
        min-height: 104px;
        transform: none !important;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        align-self: center;
    }

    .cart-page .woocommerce-cart-form .remove {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }
}

@media (max-width: 980px) {
    .cart-page .woocommerce-cart-form .actions .coupon {
        grid-template-columns: 1fr;
    }
}

/* Cart final layout: summary below products and stable responsive item grid. */
.cart-page .woocommerce {
    display: block !important;
}

.cart-page .woocommerce-notices-wrapper,
.cart-page .woocommerce-cart-form,
.cart-page .cart-collaterals {
    width: 100%;
    max-width: none;
}

.cart-page .cart-collaterals {
    position: static !important;
    top: auto !important;
    margin-top: clamp(22px, 3vw, 34px);
}

.cart-page .cart_totals {
    width: 100% !important;
}

@media (min-width: 901px) {
    .cart-page .a2-cart-table tr.cart_item {
        display: grid !important;
        grid-template-columns: 112px minmax(260px, 1fr) minmax(118px, .32fr) 78px minmax(146px, .38fr) 44px !important;
        grid-template-rows: 104px !important;
        gap: 20px !important;
        align-items: center !important;
        padding: 18px !important;
        min-height: 140px;
    }

    .cart-page .a2-cart-table .product-thumbnail,
    .cart-page .a2-cart-table .product-name,
    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal,
    .cart-page .a2-cart-table .product-remove {
        position: static !important;
        grid-row: 1 !important;
        min-height: 104px !important;
        align-self: center !important;
        transform: none !important;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1 !important;
    }

    .cart-page .a2-cart-table .product-name {
        grid-column: 2 !important;
    }

    .cart-page .a2-cart-table .product-price {
        grid-column: 3 !important;
    }

    .cart-page .a2-cart-table .product-quantity {
        grid-column: 4 !important;
    }

    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 5 !important;
    }

    .cart-page .a2-cart-table .product-remove {
        grid-column: 6 !important;
        width: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }
}

@media (max-width: 900px) {
    .cart-page .a2-cart-table tr.cart_item {
        display: grid !important;
        grid-template-columns: 92px minmax(0, 1fr) 42px !important;
        grid-template-rows: auto !important;
        gap: 14px 16px !important;
        align-items: start !important;
        padding: 16px !important;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1 !important;
        grid-row: 1 / 5 !important;
        min-height: 0 !important;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 92px !important;
        height: 108px !important;
    }

    .cart-page .a2-cart-table .product-name {
        grid-column: 2 !important;
        grid-row: 1 !important;
        min-height: 0 !important;
        padding-right: 0 !important;
    }

    .cart-page .a2-cart-table .product-remove {
        position: static !important;
        grid-column: 3 !important;
        grid-row: 1 !important;
        width: 42px !important;
        min-height: 42px !important;
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-end !important;
        transform: none !important;
    }

    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 2 / 4 !important;
        min-height: 0 !important;
        display: grid !important;
        grid-template-columns: 88px minmax(0, 1fr) !important;
        grid-template-rows: auto !important;
        gap: 10px !important;
        align-items: center !important;
        align-self: auto !important;
    }

    .cart-page .a2-cart-table .product-price {
        grid-row: 2 !important;
    }

    .cart-page .a2-cart-table .product-quantity {
        grid-row: 3 !important;
    }

    .cart-page .a2-cart-table .product-subtotal {
        grid-row: 4 !important;
    }

    .cart-page .a2-cart-table .a2-cart-cell-label {
        height: auto;
        margin: 0;
    }

    .cart-page .a2-cart-table .a2-cart-cell-value {
        min-height: 0 !important;
        height: auto !important;
        justify-content: flex-start !important;
    }
}

@media (max-width: 560px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 1fr 42px !important;
    }

    .cart-page .a2-cart-table .product-thumbnail {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
    }

    .cart-page .a2-cart-table .product-thumbnail img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1.18;
    }

    .cart-page .a2-cart-table .product-name {
        grid-column: 1 !important;
        grid-row: 2 !important;
    }

    .cart-page .a2-cart-table .product-remove {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .cart-page .a2-cart-table .product-price,
    .cart-page .a2-cart-table .product-quantity,
    .cart-page .a2-cart-table .product-subtotal {
        grid-column: 1 / -1 !important;
        grid-template-columns: 92px minmax(0, 1fr) !important;
    }

    .cart-page .a2-cart-table .product-price {
        grid-row: 3 !important;
    }

    .cart-page .a2-cart-table .product-quantity {
        grid-row: 4 !important;
    }

    .cart-page .a2-cart-table .product-subtotal {
        grid-row: 5 !important;
    }
}

/* Cart summary alignment and remove control sizing. */
.cart-page .cart_totals table.shop_table,
.cart-page .cart_totals table.shop_table tbody,
.cart-page .cart_totals table.shop_table tr,
.cart-page .cart_totals table.shop_table th,
.cart-page .cart_totals table.shop_table td {
    display: block;
}

.cart-page .cart_totals table.shop_table tr {
    display: grid;
    grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
    column-gap: clamp(24px, 4vw, 64px);
    align-items: center;
}

.cart-page .cart_totals table.shop_table th {
    width: auto;
    text-align: left !important;
}

.cart-page .cart_totals table.shop_table td {
    width: auto;
    text-align: right !important;
}

.cart-page .cart_totals .order-total th,
.cart-page .cart_totals .order-total td {
    align-self: center;
}

.cart-page .woocommerce-cart-form .remove {
    width: 52px !important;
    height: 52px !important;
    flex: 0 0 52px !important;
}

.cart-page .woocommerce-cart-form .remove svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 901px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 112px minmax(260px, 1fr) minmax(118px, .32fr) 78px minmax(146px, .38fr) 52px !important;
    }

    .cart-page .a2-cart-table .product-remove {
        width: 52px !important;
        justify-content: flex-end !important;
    }
}

@media (max-width: 900px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 92px minmax(0, 1fr) 52px !important;
    }

    .cart-page .a2-cart-table .product-remove {
        width: 52px !important;
        min-height: 52px !important;
    }
}

@media (max-width: 560px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-columns: 1fr 52px !important;
    }

    .cart-page .cart_totals table.shop_table tr {
        grid-template-columns: 1fr;
        row-gap: 8px;
    }

    .cart-page .cart_totals table.shop_table td {
        text-align: left !important;
    }
}

/* Cart controls visual weight. */
.cart-page .quantity .qty,
.cart-page .woocommerce-cart-form .remove {
    border-color: rgba(7, 19, 38, .16) !important;
}

.cart-page .quantity .qty {
    font-weight: 700 !important;
    color: rgba(7, 19, 38, .88);
}

.cart-page .woocommerce-cart-form .remove {
    color: rgba(7, 19, 38, .68) !important;
}

.cart-page .woocommerce-cart-form .remove svg {
    stroke-width: 1.75;
}

/* Cart coupon notices and discounted line prices. */
.cart-page .woocommerce-remove-coupon {
    color: rgba(7, 19, 38, .52) !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration: none;
}

.cart-page .woocommerce-remove-coupon:hover {
    color: #b98d35 !important;
}

.cart-page .a2-cart-coupon-notices {
    width: 100%;
    margin-top: 12px;
}

.cart-page .a2-cart-coupon-notices:empty {
    display: none;
}

.cart-page .a2-cart-coupon-notices .woocommerce-message,
.cart-page .a2-cart-coupon-notices .woocommerce-info,
.cart-page .a2-cart-coupon-notices .woocommerce-error {
    margin: 0;
    padding: 14px 16px;
    border: 1px solid rgba(209, 170, 89, .28);
    background: #fbfaf7;
    box-shadow: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.cart-page .a2-cart-price {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
    line-height: 1;
}

.cart-page .a2-cart-price del {
    color: rgba(7, 19, 38, .45);
    font-size: .86em;
    font-weight: 700;
    text-decoration-thickness: 1px;
}

.cart-page .a2-cart-price ins {
    color: #b98d35;
    font-weight: 950;
    text-decoration: none;
}

.cart-page .product-price .a2-cart-price ins {
    color: #071326;
}

/* Offer product cards: compact natural rhythm, no reserved sale gap. */
.woocommerce ul.products,
ul.products {
    align-items: start;
}

.woocommerce ul.products li.product.product-card,
ul.products li.product.product-card,
.product-card {
    height: auto !important;
    align-self: start;
}

.product-card__body {
    display: flex !important;
    flex-direction: column;
    min-height: 0 !important;
    padding: clamp(22px, 2vw, 28px) !important;
}

.product-card h2,
.woocommerce ul.products li.product .product-card h2 {
    min-height: 0 !important;
    max-width: 94%;
    font-size: clamp(28px, 2.15vw, 38px);
    line-height: 1.04;
}

.product-card__meta {
    min-height: 0 !important;
    margin-top: 14px !important;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    min-height: 0 !important;
    margin: clamp(28px, 3vw, 42px) 0 0 !important;
}

.product-card__price .a2-price,
.woocommerce ul.products li.product .price .a2-price {
    gap: 5px;
}

.product-card__price .a2-price__row,
.woocommerce ul.products li.product .price .a2-price__row {
    gap: 10px;
}

.product-card__price .a2-price__current,
.woocommerce ul.products li.product .price .a2-price__current,
.product-card__price > .woocommerce-Price-amount,
.woocommerce ul.products li.product .price > .woocommerce-Price-amount {
    font-size: clamp(30px, 2.35vw, 40px);
}

.product-card__price .a2-price__regular,
.product-card__price .a2-price__lowest,
.woocommerce ul.products li.product .price .a2-price__regular,
.woocommerce ul.products li.product .price .a2-price__lowest {
    font-size: 12px;
    line-height: 1.28;
}

.product-card__actions {
    margin-top: clamp(22px, 2.4vw, 34px) !important;
    padding-top: 0 !important;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
    min-height: 58px !important;
}

@supports selector(:has(*)) {
    .product-card__price:not(:has(.a2-price__regular)):not(:has(.a2-price__lowest)) {
        margin-bottom: 0;
    }

    .product-card__price:not(:has(.a2-price__regular)):not(:has(.a2-price__lowest)) + .product-card__actions {
        margin-top: clamp(24px, 2.6vw, 36px) !important;
    }

    .product-card__price:has(.a2-price__regular) + .product-card__actions,
    .product-card__price:has(.a2-price__lowest) + .product-card__actions {
        margin-top: clamp(18px, 2vw, 28px) !important;
    }
}

@media (max-width: 780px) {
    .product-card__body {
        padding: 22px !important;
    }

    .product-card__price,
    .woocommerce ul.products li.product .price {
        margin-top: 24px !important;
    }

    .product-card__actions {
        margin-top: 24px !important;
    }
}

/* Offer cards equal rows with full-width actions. */
.woocommerce ul.products,
ul.products {
    align-items: stretch;
}

.woocommerce ul.products li.product.product-card,
ul.products li.product.product-card,
.product-card {
    height: 100% !important;
    align-self: stretch;
}

.product-card__body {
    height: 100%;
    display: flex !important;
    flex-direction: column;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    min-height: clamp(96px, 8vw, 118px) !important;
    margin-top: clamp(24px, 2.6vw, 34px) !important;
}

.product-card__actions {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto !important;
    padding-top: clamp(18px, 2vw, 28px) !important;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button,
.woocommerce ul.products li.product .product-card__actions .button,
.woocommerce ul.products li.product .product-card__actions .add_to_cart_button {
    width: 100% !important;
    max-width: none !important;
    min-height: 58px !important;
    margin: 0 !important;
}

@supports selector(:has(*)) {
    .product-card__price:not(:has(.a2-price__regular)):not(:has(.a2-price__lowest)) + .product-card__actions,
    .product-card__price:has(.a2-price__regular) + .product-card__actions,
    .product-card__price:has(.a2-price__lowest) + .product-card__actions {
        margin-top: auto !important;
    }
}

@media (max-width: 780px) {
    .woocommerce ul.products,
    ul.products {
        align-items: start;
    }

    .woocommerce ul.products li.product.product-card,
    ul.products li.product.product-card,
    .product-card {
        height: auto !important;
        align-self: start;
    }

    .product-card__price,
    .woocommerce ul.products li.product .price {
        min-height: 0 !important;
    }

    .product-card__actions {
        margin-top: 24px !important;
        padding-top: 0 !important;
    }
}

/* Offer cards row logic: compact rows unless a product in that row needs sale space. */
.woocommerce ul.products,
ul.products {
    align-items: stretch !important;
}

.woocommerce ul.products li.product.product-card,
ul.products li.product.product-card,
.product-card {
    height: 100% !important;
    align-self: stretch !important;
}

.product-card {
    display: flex !important;
    flex-direction: column;
}

.product-card__body {
    flex: 1 1 auto;
    display: flex !important;
    flex-direction: column;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    min-height: 0 !important;
    margin-top: clamp(22px, 2.2vw, 30px) !important;
}

.product-card__actions {
    width: 100%;
    margin-top: auto !important;
    padding-top: clamp(18px, 2vw, 26px) !important;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
    width: 100% !important;
    max-width: none !important;
}

@supports selector(:has(*)) {
    .product-card__price:has(.a2-price__regular),
    .product-card__price:has(.a2-price__lowest) {
        margin-bottom: 0 !important;
    }

    .product-card__price:has(.a2-price__regular) + .product-card__actions,
    .product-card__price:has(.a2-price__lowest) + .product-card__actions,
    .product-card__price:not(:has(.a2-price__regular)):not(:has(.a2-price__lowest)) + .product-card__actions {
        margin-top: auto !important;
    }
}

@media (max-width: 780px) {
    .woocommerce ul.products,
    ul.products {
        align-items: start !important;
    }

    .woocommerce ul.products li.product.product-card,
    ul.products li.product.product-card,
    .product-card {
        height: auto !important;
        align-self: start !important;
    }

    .product-card__actions {
        margin-top: 24px !important;
        padding-top: 0 !important;
    }
}

/* Offer card spacing final reset: no large auto gap before buttons. */
.woocommerce ul.products,
ul.products {
    align-items: stretch !important;
}

.woocommerce ul.products li.product.product-card,
ul.products li.product.product-card,
.product-card {
    height: 100% !important;
}

.product-card__body {
    display: flex !important;
    flex-direction: column;
    height: 100%;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    min-height: 0 !important;
    margin: 22px 0 0 !important;
}

.product-card__actions,
.product-card__price + .product-card__actions {
    width: 100%;
    margin-top: 22px !important;
    padding-top: 0 !important;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button,
.woocommerce ul.products li.product .product-card__actions .button,
.woocommerce ul.products li.product .product-card__actions .add_to_cart_button {
    width: 100% !important;
    max-width: none !important;
}

@supports selector(:has(*)) {
    .product-card__price:has(.a2-price__regular) + .product-card__actions,
    .product-card__price:has(.a2-price__lowest) + .product-card__actions,
    .product-card__price:not(:has(.a2-price__regular)):not(:has(.a2-price__lowest)) + .product-card__actions {
        margin-top: 22px !important;
    }
}

@media (max-width: 780px) {
    .woocommerce ul.products li.product.product-card,
    ul.products li.product.product-card,
    .product-card {
        height: auto !important;
    }
}

/* Offer cards hard reset: compact body, no inflated empty space. */
.woocommerce ul.products,
ul.products {
    align-items: start !important;
}

.woocommerce ul.products li.product.product-card,
ul.products li.product.product-card,
.product-card {
    height: auto !important;
    min-height: 0 !important;
    align-self: start !important;
}

.product-card {
    display: block !important;
}

.product-card__body {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    padding: 22px !important;
}

.product-card__body > a {
    display: block !important;
}

.product-card h2,
.woocommerce ul.products li.product .product-card h2 {
    min-height: 0 !important;
    max-width: none !important;
    margin: 0 !important;
}

.product-card__meta {
    min-height: 0 !important;
    margin: 10px 0 0 !important;
}

.product-card__price,
.woocommerce ul.products li.product .price {
    min-height: 0 !important;
    height: auto !important;
    margin: 22px 0 0 !important;
}

.product-card__actions,
.product-card__price + .product-card__actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button,
.woocommerce ul.products li.product .product-card__actions .button,
.woocommerce ul.products li.product .product-card__actions .add_to_cart_button {
    width: 100% !important;
    max-width: none !important;
    min-height: 52px !important;
    margin: 0 !important;
}

@supports selector(:has(*)) {
    .product-card__price:has(.a2-price__regular) + .product-card__actions,
    .product-card__price:has(.a2-price__lowest) + .product-card__actions,
    .product-card__price:not(:has(.a2-price__regular)):not(:has(.a2-price__lowest)) + .product-card__actions {
        margin: 20px 0 0 !important;
    }
}

.product-card.is-sale-row {
    display: flex !important;
    flex-direction: column;
}

.product-card.is-sale-row .product-card__body {
    flex: 1 1 auto;
}

/* Offer add-to-cart AJAX feedback: keep WooCommerce messages local to the card. */
.product-card__actions .added_to_cart.wc-forward {
    display: none !important;
}

.product-card__actions .add_to_cart_button.is-loading,
.woocommerce ul.products li.product .product-card__actions .add_to_cart_button.is-loading {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #071326 !important;
    background: #fff !important;
    border-color: #071326 !important;
    pointer-events: none;
}

.product-card__actions .add_to_cart_button.is-loading .button-dots {
    margin: 0;
}

.product-card__feedback.ajax-cart-feedback {
    width: 100%;
    margin-top: 12px;
    box-sizing: border-box;
}

.product-card__feedback.ajax-cart-feedback--success,
.product-card__feedback.ajax-cart-feedback--error {
    display: flex;
    min-height: 52px;
    padding: 12px 14px;
    font-size: 12px;
    line-height: 1.45;
}

.single-product div.product form.cart + .woocommerce-notices-wrapper {
    width: 100%;
    margin: 12px 0 0;
}

.single-product div.product form.cart + .woocommerce-notices-wrapper:empty {
    display: none;
}

/* Final product page shell alignment: match the global content edge. */
body.single-product .product-showcase__inner,
body.single-product .single-product .woocommerce-notices-wrapper,
body.single-product .single-product-layout,
body.single-product .product-a2-assurance__inner {
    width: var(--page-shell) !important;
    max-width: var(--page-shell) !important;
    box-sizing: border-box;
}

body.single-product .single-product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 426px);
}

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

/* Product image hover swap: featured image -> first gallery image. */
.product-hover-image {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    background: inherit;
}

.product-hover-image__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity .3s ease, transform .34s ease;
}

.product-hover-image__img--hover {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
}

.product-hover-image--has-hover:hover .product-hover-image__img--primary,
a:hover .product-hover-image--has-hover .product-hover-image__img--primary,
.home-product-card:hover .product-hover-image--has-hover .product-hover-image__img--primary,
.post-card:hover .product-hover-image--has-hover .product-hover-image__img--primary,
.cart-page .product-thumbnail a:hover .product-hover-image--has-hover .product-hover-image__img--primary {
    opacity: 0;
    transform: scale(1.035);
}

.product-hover-image--has-hover:hover .product-hover-image__img--hover,
a:hover .product-hover-image--has-hover .product-hover-image__img--hover,
.home-product-card:hover .product-hover-image--has-hover .product-hover-image__img--hover,
.post-card:hover .product-hover-image--has-hover .product-hover-image__img--hover,
.cart-page .product-thumbnail a:hover .product-hover-image--has-hover .product-hover-image__img--hover {
    opacity: 1;
    transform: scale(1.035);
}

.product-card__image .product-hover-image {
    aspect-ratio: 1.34;
}

.home-product-card__image .product-hover-image {
    height: 100%;
    aspect-ratio: 1;
}

.post-card .product-hover-image {
    aspect-ratio: 1.35;
}

.cart-page .product-thumbnail .product-hover-image {
    width: 100%;
    height: 100%;
}

.cart-page .product-thumbnail .product-hover-image__img {
    width: 100% !important;
    height: 100% !important;
}

/* Checkout page final layout. */
body.woocommerce-checkout {
    color: #071326;
    background: #fbfaf7;
}

body.woocommerce-checkout .page-hero {
    width: var(--page-shell) !important;
    max-width: var(--page-shell) !important;
    margin: 0 auto;
    padding: clamp(42px, 5vw, 72px) 0 clamp(28px, 3vw, 42px);
}

body.woocommerce-checkout .page-hero .eyebrow {
    color: #d1aa59;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .42em;
}

body.woocommerce-checkout .page-hero h1 {
    max-width: 900px;
    margin-top: 22px;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 92px);
    line-height: .9;
}

body.woocommerce-checkout .content-shell {
    width: var(--page-shell) !important;
    max-width: var(--page-shell) !important;
    margin: 0 auto;
    padding: 0 0 clamp(74px, 8vw, 118px);
    color: #071326;
}

body.woocommerce-checkout .content-shell > .checkout-trust,
body.woocommerce-checkout .woocommerce > .checkout-trust {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    box-shadow: 0 16px 42px rgba(7, 19, 38, .045);
}

body.woocommerce-checkout .checkout-trust span {
    min-height: 72px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(7, 19, 38, .64);
    background: #fff;
    border: 0;
    border-right: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.35;
    text-align: center;
    text-transform: uppercase;
}

body.woocommerce-checkout .checkout-trust span:last-child {
    border-right: 0;
}

body.woocommerce-checkout .content-shell > .woocommerce {
    display: block;
}

body.woocommerce-checkout .woocommerce-notices-wrapper {
    margin: 0 0 16px;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-error {
    margin: 0 0 14px;
    padding: 16px 18px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(209, 170, 89, .28);
    border-top: 1px solid rgba(209, 170, 89, .28);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 720;
    line-height: 1.55;
}

body.woocommerce-checkout .woocommerce-error {
    color: #6f1717;
    background: rgba(155, 31, 31, .055);
    border-color: rgba(155, 31, 31, .18);
}

body.woocommerce-checkout .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-error::before {
    display: none;
}

body.woocommerce-checkout form.login,
body.woocommerce-checkout form.checkout_coupon {
    margin: 0 0 18px;
    padding: clamp(22px, 2.4vw, 30px);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    box-shadow: 0 16px 42px rgba(7, 19, 38, .045);
}

body.woocommerce-checkout form.login p:first-child,
body.woocommerce-checkout form.checkout_coupon p:first-child {
    margin-top: 0;
}

body.woocommerce-checkout form.checkout_coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 14px;
    align-items: end;
}

body.woocommerce-checkout form.checkout_coupon p {
    margin: 0;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first,
body.woocommerce-checkout form.checkout_coupon .form-row-last {
    width: auto;
    float: none;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first {
    grid-column: 1;
}

body.woocommerce-checkout form.checkout_coupon .form-row-last {
    grid-column: 2;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
    margin: 0;
    padding: 0 !important;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 450px);
    grid-template-rows: auto auto;
    column-gap: clamp(22px, 3vw, 36px);
    row-gap: 0;
    align-items: start;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

body.woocommerce-checkout #customer_details {
    min-width: 0;
    display: grid;
    gap: 18px;
    grid-column: 1;
    grid-row: 1 / span 2;
}

body.woocommerce-checkout .col2-set,
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
    width: 100%;
    float: none;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout .woocommerce-account-fields {
    padding: clamp(24px, 3vw, 34px);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(7, 19, 38, .055);
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3,
body.woocommerce-checkout #order_review_heading {
    margin: 0 0 24px;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 46px);
    line-height: .98;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

body.woocommerce-checkout .form-row {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout .form-row-wide,
body.woocommerce-checkout #billing_country_field,
body.woocommerce-checkout #billing_address_1_field,
body.woocommerce-checkout #billing_address_2_field,
body.woocommerce-checkout #billing_phone_field,
body.woocommerce-checkout #billing_email_field,
body.woocommerce-checkout #shipping_country_field,
body.woocommerce-checkout #shipping_address_1_field,
body.woocommerce-checkout #shipping_address_2_field,
body.woocommerce-checkout #order_comments_field {
    grid-column: 1 / -1;
}

body.woocommerce-checkout .form-row label {
    margin: 0 0 8px;
    display: block;
    color: rgba(7, 19, 38, .62);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.35;
    text-transform: uppercase;
}

body.woocommerce-checkout .required {
    color: #b98d35;
}

body.woocommerce-checkout .woocommerce-input-wrapper {
    display: block;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    box-sizing: border-box;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .12);
    border-radius: 0;
    font-size: 15px;
    font-weight: 650;
    line-height: 56px;
    outline: none;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

body.woocommerce-checkout textarea {
    min-height: 132px;
    padding-top: 14px;
    line-height: 1.55;
    resize: vertical;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout .select2-container--open .select2-selection--single {
    background: #fff;
    border-color: rgba(209, 170, 89, .72);
    box-shadow: 0 0 0 3px rgba(209, 170, 89, .12);
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #071326;
    line-height: 56px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 56px;
    right: 12px;
}

body.woocommerce-checkout .woocommerce-invalid input.input-text,
body.woocommerce-checkout .woocommerce-invalid select,
body.woocommerce-checkout .woocommerce-invalid textarea,
body.woocommerce-checkout .woocommerce-invalid .select2-selection {
    border-color: rgba(155, 31, 31, .42) !important;
}

body.woocommerce-checkout .woocommerce-validated input.input-text,
body.woocommerce-checkout .woocommerce-validated select,
body.woocommerce-checkout .woocommerce-validated textarea,
body.woocommerce-checkout .woocommerce-validated .select2-selection {
    border-color: rgba(49, 116, 76, .32);
}

body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout label.checkbox {
    display: flex !important;
    gap: 10px;
    align-items: center;
    margin: 0;
    color: rgba(7, 19, 38, .72);
    font-size: 14px;
    font-weight: 680;
    letter-spacing: 0;
    line-height: 1.45;
    text-transform: none;
}

body.woocommerce-checkout input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: #d1aa59;
}

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review {
    grid-column: 2;
}

body.woocommerce-checkout #order_review_heading {
    display: none;
    grid-row: 1;
    margin: 0;
    padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) 0;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-bottom: 0;
    box-shadow: 0 18px 44px rgba(7, 19, 38, .055);
}

body.woocommerce-checkout #order_review {
    --checkout-summary-pad: clamp(24px, 3vw, 32px);
    grid-row: 1 / span 2;
    position: sticky;
    top: 104px;
    padding: var(--checkout-summary-pad);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    box-shadow: 0 18px 44px rgba(7, 19, 38, .055);
}

body.woocommerce-checkout #order_review::before {
    content: "Twoje zamówienie";
    display: block;
    margin: 0 0 22px;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    line-height: .98;
}

body.woocommerce-checkout table.shop_table {
    margin: 22px 0 0;
    border: 0;
    background: transparent;
}

body.woocommerce-checkout table.shop_table thead {
    display: none;
}

body.woocommerce-checkout table.shop_table tr,
body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    border-color: rgba(7, 19, 38, .08);
}

body.woocommerce-checkout table.shop_table th,
body.woocommerce-checkout table.shop_table td {
    padding: 16px 0;
    color: #071326;
    font-size: 14px;
    font-weight: 760;
    line-height: 1.45;
}

body.woocommerce-checkout table.shop_table td {
    text-align: right;
}

body.woocommerce-checkout table.shop_table .product-name {
    text-align: left;
}

body.woocommerce-checkout table.shop_table .product-total,
body.woocommerce-checkout table.shop_table .cart-subtotal td,
body.woocommerce-checkout table.shop_table .order-total td {
    color: #b98d35;
    font-weight: 950;
}

body.woocommerce-checkout table.shop_table .order-total th,
body.woocommerce-checkout table.shop_table .order-total td {
    padding-top: 22px;
    color: #071326;
    font-size: 18px;
}

body.woocommerce-checkout table.shop_table .order-total td,
body.woocommerce-checkout table.shop_table .order-total td .amount {
    color: #b98d35;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 950;
    line-height: 1;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 20px;
    padding-top: 20px;
    background: transparent !important;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

body.woocommerce-checkout #payment ul.payment_methods {
    padding: 0;
    border: 0;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    padding: 14px 0;
    color: #071326;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
    font-size: 14px;
    font-weight: 760;
}

body.woocommerce-checkout #payment div.payment_box {
    margin: 12px 0 0;
    padding: 14px 16px;
    color: rgba(7, 19, 38, .7);
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    font-size: 13px;
    line-height: 1.6;
}

body.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-top: 18px;
    color: rgba(7, 19, 38, .68);
    font-size: 13px;
    line-height: 1.6;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text p {
    margin: 0 0 14px;
}

body.woocommerce-checkout .place-order {
    margin: 20px 0 0 !important;
    padding: 0 !important;
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout button.button,
body.woocommerce-checkout .woocommerce-button {
    min-height: 58px;
    padding: 0 28px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #071326 !important;
    background: #d1aa59 !important;
    border: 1px solid #d1aa59 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    letter-spacing: .1em !important;
    line-height: 1 !important;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

body.woocommerce-checkout #place_order {
    width: 100%;
    margin-top: 4px;
}

body.woocommerce-checkout #place_order:hover,
body.woocommerce-checkout button.button:hover,
body.woocommerce-checkout .woocommerce-button:hover {
    background: #e0bb6b !important;
    border-color: #e0bb6b !important;
    transform: translateY(-1px);
}

body.woocommerce-checkout a {
    color: #b98d35;
}

@media (max-width: 980px) {
    body.woocommerce-checkout form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }

    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review {
        grid-column: 1;
    }

    body.woocommerce-checkout #order_review {
        position: static;
    }
}

@media (max-width: 760px) {
    body.woocommerce-checkout .page-hero,
    body.woocommerce-checkout .content-shell {
        width: var(--page-shell) !important;
        max-width: var(--page-shell) !important;
    }

    body.woocommerce-checkout .content-shell > .checkout-trust,
    body.woocommerce-checkout .woocommerce > .checkout-trust {
        grid-template-columns: 1fr 1fr;
    }

    body.woocommerce-checkout .checkout-trust span:nth-child(2n) {
        border-right: 0;
    }

    body.woocommerce-checkout .checkout-trust span:nth-child(n + 3) {
        border-top: 1px solid rgba(7, 19, 38, .08);
    }

    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
    body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper,
    body.woocommerce-checkout form.checkout_coupon {
        grid-template-columns: 1fr;
    }

    body.woocommerce-checkout form.checkout_coupon .form-row-first,
    body.woocommerce-checkout form.checkout_coupon .form-row-last {
        grid-column: 1;
    }

    body.woocommerce-checkout .woocommerce-billing-fields,
    body.woocommerce-checkout .woocommerce-shipping-fields,
    body.woocommerce-checkout .woocommerce-additional-fields,
    body.woocommerce-checkout .woocommerce-account-fields,
    body.woocommerce-checkout form.login,
    body.woocommerce-checkout form.checkout_coupon,
    body.woocommerce-checkout #order_review_heading,
    body.woocommerce-checkout #order_review {
        padding-right: 18px;
        padding-left: 18px;
    }
}

/* Checkout final refinement: form controls and order summary. */
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout .woocommerce-account-fields,
body.woocommerce-checkout form.login,
body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-checkout #order_review {
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    box-shadow: 0 16px 42px rgba(7, 19, 38, .045);
}

body.woocommerce-checkout .form-row label {
    margin: 0 0 8px;
    color: rgba(7, 19, 38, .72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

body.woocommerce-checkout input.input-text,
body.woocommerce-checkout select,
body.woocommerce-checkout textarea,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    min-height: 52px;
    height: 52px;
    padding: 0 15px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .12);
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 52px;
    box-shadow: none;
}

body.woocommerce-checkout textarea {
    height: auto;
    min-height: 150px;
    padding: 14px 15px;
    line-height: 1.45;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout select:focus,
body.woocommerce-checkout textarea:focus,
body.woocommerce-checkout .select2-container--open .select2-selection--single,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
    background: #fbfaf7;
    border-color: rgba(209, 170, 89, .9);
    outline: 2px solid rgba(209, 170, 89, .18);
    outline-offset: 0;
    box-shadow: none;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
}

body.woocommerce-checkout .woocommerce-invalid input.input-text,
body.woocommerce-checkout .woocommerce-invalid select,
body.woocommerce-checkout .woocommerce-invalid textarea,
body.woocommerce-checkout .woocommerce-invalid .select2-selection {
    background: #fff8f8 !important;
    border-color: #b64040 !important;
    outline: 0;
}

body.woocommerce-checkout .woocommerce-validated input.input-text,
body.woocommerce-checkout .woocommerce-validated select,
body.woocommerce-checkout .woocommerce-validated textarea,
body.woocommerce-checkout .woocommerce-validated .select2-selection {
    border-color: rgba(7, 19, 38, .12);
}

body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout label.checkbox {
    align-items: flex-start;
    gap: 11px;
    color: rgba(7, 19, 38, .72);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.5;
}

body.woocommerce-checkout input[type="checkbox"] {
    margin-top: 2px;
}

body.woocommerce-checkout #order_review {
    overflow: hidden;
}

body.woocommerce-checkout #order_review::before {
    margin: 0 calc(var(--checkout-summary-pad) * -1) 0;
    padding: var(--checkout-summary-pad) var(--checkout-summary-pad) 26px;
    background: #071326;
    color: #fff;
    border-bottom: 1px solid rgba(209, 170, 89, .28);
}

body.woocommerce-checkout #order_review table.shop_table,
body.woocommerce-checkout #order_review table.shop_table tbody,
body.woocommerce-checkout #order_review table.shop_table tfoot,
body.woocommerce-checkout #order_review table.shop_table tr,
body.woocommerce-checkout #order_review table.shop_table th,
body.woocommerce-checkout #order_review table.shop_table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

body.woocommerce-checkout #order_review table.shop_table {
    margin: 0;
}

body.woocommerce-checkout #order_review table.shop_table tbody {
    padding: 22px 0 8px;
}

body.woocommerce-checkout #order_review table.shop_table tr.cart_item {
    padding: 16px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

body.woocommerce-checkout #order_review table.shop_table .product-name {
    padding: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.08;
    text-align: left;
}

body.woocommerce-checkout #order_review table.shop_table .product-name strong,
body.woocommerce-checkout #order_review table.shop_table .product-quantity {
    color: rgba(7, 19, 38, .48);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

body.woocommerce-checkout #order_review table.shop_table .product-total {
    padding: 0;
    color: #b98d35;
    font-size: 19px;
    font-weight: 950;
    line-height: 1;
    text-align: left;
}

body.woocommerce-checkout #order_review table.shop_table tfoot {
    padding-top: 6px;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr {
    padding: 16px 0;
    display: grid;
    grid-template-columns: minmax(130px, .8fr) minmax(0, 1fr);
    column-gap: 20px;
    align-items: start;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

body.woocommerce-checkout #order_review table.shop_table tfoot th,
body.woocommerce-checkout #order_review table.shop_table tfoot td {
    padding: 0;
    border: 0;
}

body.woocommerce-checkout #order_review table.shop_table tfoot th {
    color: rgba(7, 19, 38, .52);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    line-height: 1.35;
    text-align: left;
    text-transform: uppercase;
}

body.woocommerce-checkout #order_review table.shop_table tfoot td {
    color: #071326;
    font-size: 15px;
    font-weight: 850;
    line-height: 1.35;
    text-align: right;
}

body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods {
    margin: 0;
    padding: 0;
    list-style: none;
}

body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods li {
    margin: 0;
}

body.woocommerce-checkout #order_review table.shop_table .shipping td {
    color: rgba(7, 19, 38, .7);
    font-size: 14px;
}

body.woocommerce-checkout #order_review table.shop_table .order-total {
    margin-top: 6px;
    padding: 22px 0 0;
    grid-template-columns: 1fr;
    gap: 10px;
    border-bottom: 0;
}

body.woocommerce-checkout #order_review table.shop_table .order-total th {
    color: rgba(7, 19, 38, .52);
    font-size: 12px;
}

body.woocommerce-checkout #order_review table.shop_table .order-total td {
    text-align: left;
}

body.woocommerce-checkout #order_review table.shop_table .order-total td,
body.woocommerce-checkout #order_review table.shop_table .order-total td .amount {
    color: #b98d35;
    font-family: var(--font-body);
    font-size: clamp(38px, 3.8vw, 54px);
    font-weight: 950;
    letter-spacing: 0;
    line-height: .95;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
    margin: 28px calc(var(--checkout-summary-pad) * -1) calc(var(--checkout-summary-pad) * -1);
    padding: 26px var(--checkout-summary-pad) var(--checkout-summary-pad);
    background: #fbfaf7 !important;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

body.woocommerce-checkout #payment ul.payment_methods li {
    padding: 0 0 16px;
}

body.woocommerce-checkout #payment .woocommerce-info {
    margin: 0;
    padding: 15px 16px;
    color: rgba(7, 19, 38, .72);
    background: #fff;
    border-color: rgba(7, 19, 38, .08);
    font-size: 13px;
    font-weight: 650;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-top: 20px;
}

body.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: rgba(7, 19, 38, .62);
}

body.woocommerce-checkout #place_order {
    min-height: 64px;
    margin-top: 18px;
    font-size: 14px !important;
}

@media (max-width: 760px) {
    body.woocommerce-checkout #order_review::before {
        margin: 0 -18px 0;
        padding: 26px 18px 22px;
    }

    body.woocommerce-checkout .woocommerce-checkout-payment {
        margin: 24px -18px -24px;
        padding: 22px 18px 24px;
    }

    body.woocommerce-checkout #order_review table.shop_table tfoot tr {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    body.woocommerce-checkout #order_review table.shop_table tfoot td {
        text-align: left;
    }
}

/* Cart notices final polish: larger quantity/coupon feedback without layout jumps. */
.cart-page .a2-cart-table tr.cart_item {
    overflow: visible !important;
}

.cart-page .a2-cart-item-message {
    display: none;
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: 15px 18px;
    box-sizing: border-box;
    color: #6f1717;
    background: rgba(155, 31, 31, .065);
    border: 1px solid rgba(155, 31, 31, .18);
    font-size: 14px;
    font-weight: 760;
    line-height: 1.5;
}

.cart-page .a2-cart-item-message.is-visible {
    display: block;
}

.cart-page .a2-cart-actions-row {
    margin-top: clamp(18px, 2.6vw, 30px) !important;
}

.cart-page .a2-cart-actions-row .actions {
    display: grid !important;
    gap: 14px;
}

.cart-page .a2-cart-coupon-notices {
    width: 100%;
    margin: 0 !important;
    display: grid;
    gap: 10px;
}

.cart-page .a2-cart-coupon-notices:empty {
    display: none;
}

.cart-page .a2-cart-coupon-notices .woocommerce-message,
.cart-page .a2-cart-coupon-notices .woocommerce-info,
.cart-page .a2-cart-coupon-notices .woocommerce-error,
.cart-page .woocommerce-cart-form .coupon .coupon-error-notice,
.cart-page .woocommerce-cart-form .coupon .coupon-success-notice {
    width: 100%;
    margin: 0 !important;
    padding: 16px 18px !important;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(209, 170, 89, .32);
    box-shadow: none;
    font-size: 14px !important;
    font-weight: 760 !important;
    line-height: 1.5 !important;
}

.cart-page .a2-cart-coupon-notices .woocommerce-error,
.cart-page .woocommerce-cart-form .coupon .coupon-error-notice {
    color: #6f1717;
    background: rgba(155, 31, 31, .055);
    border-color: rgba(155, 31, 31, .18);
}

.cart-page .woocommerce-cart-form .coupon .coupon-error-notice,
.cart-page .woocommerce-cart-form .coupon .coupon-success-notice {
    grid-column: 1 / -1;
}

.cart-page .woocommerce-cart-form .coupon .input-text.has-error {
    border-color: rgba(155, 31, 31, .32) !important;
    box-shadow: inset 0 0 0 1px rgba(155, 31, 31, .08);
}

.cart-page .a2-cart-coupon-notices .woocommerce-message::before,
.cart-page .a2-cart-coupon-notices .woocommerce-info::before,
.cart-page .a2-cart-coupon-notices .woocommerce-error::before {
    display: none;
}

.cart-page .woocommerce-remove-coupon {
    margin-left: 2px;
    white-space: nowrap;
}

@media (min-width: 901px) {
    .cart-page .a2-cart-table tr.cart_item {
        grid-template-rows: 104px auto !important;
        row-gap: 14px !important;
    }

    .cart-page .a2-cart-table .a2-cart-item-message {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;
    }
}

@media (max-width: 900px) {
    .cart-page .a2-cart-table .a2-cart-item-message {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        margin-top: 2px !important;
    }
}

@media (max-width: 560px) {
    .cart-page .a2-cart-item-message,
    .cart-page .a2-cart-coupon-notices .woocommerce-message,
    .cart-page .a2-cart-coupon-notices .woocommerce-info,
    .cart-page .a2-cart-coupon-notices .woocommerce-error,
    .cart-page .woocommerce-cart-form .coupon .coupon-error-notice,
    .cart-page .woocommerce-cart-form .coupon .coupon-success-notice {
        padding: 14px 15px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 760px) {
    body.single-product .product-showcase__inner,
    body.single-product .single-product .woocommerce-notices-wrapper,
    body.single-product .single-product-layout,
    body.single-product .product-a2-assurance__inner {
        width: var(--page-shell) !important;
        max-width: var(--page-shell) !important;
    }
}

/* Checkout final visual polish. */
body.woocommerce-checkout form.checkout .form-row input.input-text,
body.woocommerce-checkout form.checkout .form-row select,
body.woocommerce-checkout form.checkout .form-row textarea,
body.woocommerce-checkout form.checkout_coupon input.input-text,
body.woocommerce-checkout form.login input.input-text,
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    width: 100% !important;
    min-height: 52px !important;
    height: 52px !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    color: #071326 !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .12) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 52px !important;
    outline: 0 !important;
}

body.woocommerce-checkout form.checkout select.select2-hidden-accessible {
    position: absolute !important;
    width: 1px !important;
    min-width: 1px !important;
    max-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

body.woocommerce-checkout form.checkout .form-row textarea {
    min-height: 150px !important;
    height: auto !important;
    padding: 14px 15px !important;
    line-height: 1.45 !important;
    resize: vertical;
}

body.woocommerce-checkout form.checkout .form-row input.input-text:focus,
body.woocommerce-checkout form.checkout .form-row select:focus,
body.woocommerce-checkout form.checkout .form-row textarea:focus,
body.woocommerce-checkout form.checkout_coupon input.input-text:focus,
body.woocommerce-checkout form.login input.input-text:focus,
body.woocommerce-checkout .select2-container--open .select2-selection--single,
body.woocommerce-checkout .select2-container--focus .select2-selection--single {
    background: #fbfaf7 !important;
    border-color: rgba(209, 170, 89, .9) !important;
    box-shadow: none !important;
    outline: 2px solid rgba(209, 170, 89, .18) !important;
    outline-offset: 0 !important;
}

body.woocommerce-checkout .form-row label,
body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout label.checkbox {
    font-family: var(--font-body);
}

body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout label.checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    color: rgba(7, 19, 38, .62) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

body.woocommerce-checkout input[type="checkbox"] {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    margin: 0 !important;
    flex: 0 0 18px !important;
    accent-color: #d1aa59;
    border-radius: 0 !important;
}

body.woocommerce-checkout .a2-checkout-label-text {
    flex: 1 1 auto;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .required {
    display: none;
}

body.woocommerce-checkout #order_review {
    --checkout-summary-pad: clamp(24px, 2.4vw, 30px);
    border-color: rgba(7, 19, 38, .1);
    box-shadow: 0 20px 52px rgba(7, 19, 38, .07);
}

body.woocommerce-checkout #order_review::before {
    margin: 0 calc(var(--checkout-summary-pad) * -1);
    padding: var(--checkout-summary-pad);
    background: #071326;
    color: #fff;
    border-bottom: 3px solid #d1aa59;
    font-size: clamp(30px, 2.7vw, 42px);
}

body.woocommerce-checkout #order_review table.shop_table {
    padding-top: 20px;
}

body.woocommerce-checkout #order_review table.shop_table tbody {
    padding: 0 0 12px;
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item {
    margin: 0 0 14px;
    padding: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td.product-name {
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.04;
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item td.product-total {
    color: #b98d35;
    font-size: 18px;
    font-weight: 950;
    line-height: 1;
    text-align: left;
}

body.woocommerce-checkout #order_review table.shop_table tfoot {
    display: grid;
    gap: 0;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr {
    min-height: 54px;
    padding: 15px 0;
    display: grid;
    grid-template-columns: minmax(110px, .7fr) minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr th {
    color: rgba(7, 19, 38, .52);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr td {
    color: #071326;
    font-size: 15px;
    font-weight: 850;
    text-align: right;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr.cart-discount td,
body.woocommerce-checkout #order_review table.shop_table tfoot tr.cart-discount td a {
    color: #b98d35;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total {
    margin-top: 12px;
    padding: 20px 18px;
    grid-template-columns: 1fr;
    gap: 10px;
    background: rgba(209, 170, 89, .12);
    border: 1px solid rgba(209, 170, 89, .28);
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total th,
body.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total td {
    text-align: left;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total td,
body.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total td .amount {
    color: #b98d35;
    font-family: var(--font-body);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 950;
    line-height: .95;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 22px;
}

body.woocommerce-checkout #payment ul.payment_methods li {
    color: rgba(7, 19, 38, .72);
    font-weight: 650;
    list-style: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods li::marker {
    content: "";
}

body.woocommerce-checkout #payment .woocommerce-info {
    padding: 16px 18px !important;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .08) !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
}

body.woocommerce-checkout #place_order {
    min-height: 64px !important;
    margin-top: 20px !important;
}

body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message {
    border-color: rgba(209, 170, 89, .34) !important;
    outline: 0 !important;
}

@media (max-width: 760px) {
    body.woocommerce-checkout #order_review::before {
        margin: 0 -18px;
        padding: 24px 18px;
    }

    body.woocommerce-checkout #order_review table.shop_table tfoot tr {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    body.woocommerce-checkout #order_review table.shop_table tfoot tr td {
        text-align: left;
    }
}

/* Checkout spacing and controls cleanup. */
textarea,
.offer-form textarea,
.request-form textarea,
body.woocommerce-checkout textarea,
body.woocommerce-checkout form.checkout .form-row textarea {
    resize: none !important;
}

.offer-form__consent input[type="checkbox"],
.request-form__consent input[type="checkbox"],
body.woocommerce-checkout input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-grid !important;
    place-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 18px !important;
    cursor: pointer;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .22) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: background-color .16s ease, border-color .16s ease, outline-color .16s ease;
}

.offer-form__consent input[type="checkbox"]::before,
.request-form__consent input[type="checkbox"]::before,
body.woocommerce-checkout input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    background: #071326;
    clip-path: polygon(14% 46%, 0 61%, 39% 100%, 100% 18%, 84% 4%, 37% 66%);
    transition: transform .14s ease;
}

.offer-form__consent input[type="checkbox"]:checked,
.request-form__consent input[type="checkbox"]:checked,
body.woocommerce-checkout input[type="checkbox"]:checked {
    background: #d1aa59 !important;
    border-color: #d1aa59 !important;
}

.offer-form__consent input[type="checkbox"]:checked::before,
.request-form__consent input[type="checkbox"]:checked::before,
body.woocommerce-checkout input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.offer-form__consent input[type="checkbox"]:focus-visible,
.request-form__consent input[type="checkbox"]:focus-visible,
body.woocommerce-checkout input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(209, 170, 89, .32) !important;
    outline-offset: 2px !important;
}

body.woocommerce-checkout .page-hero {
    padding-top: clamp(36px, 4.2vw, 58px);
    padding-bottom: clamp(22px, 2.8vw, 34px);
}

body.woocommerce-checkout .woocommerce-notices-wrapper {
    margin-bottom: 12px;
}

body.woocommerce-checkout .content-shell > .checkout-trust,
body.woocommerce-checkout .woocommerce > .checkout-trust {
    margin-bottom: 14px;
}

body.woocommerce-checkout form.login,
body.woocommerce-checkout form.checkout_coupon {
    margin-bottom: 14px;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout {
    column-gap: clamp(24px, 3.2vw, 38px);
}

body.woocommerce-checkout #customer_details {
    gap: 14px;
}

body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout .woocommerce-account-fields {
    padding: clamp(22px, 2.6vw, 32px);
}

body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout .woocommerce-additional-fields h3 {
    margin-bottom: 22px;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    gap: 15px 18px;
}

body.woocommerce-checkout .woocommerce-account-fields,
body.woocommerce-checkout .woocommerce-shipping-fields {
    padding-top: 22px;
    padding-bottom: 22px;
}

body.woocommerce-checkout .woocommerce-form__label-for-checkbox,
body.woocommerce-checkout label.checkbox,
.offer-form label.offer-form__consent,
.request-form label.request-form__consent {
    align-items: center !important;
    gap: 12px !important;
}

body.woocommerce-checkout .a2-checkout-marketing-consent,
body.woocommerce-checkout label:has(input[name="mailpoet_woocommerce_checkout_optin"]) {
    margin-top: 14px !important;
}

body.woocommerce-checkout #order_review {
    --checkout-summary-pad: clamp(24px, 2.4vw, 30px);
    padding: var(--checkout-summary-pad);
}

body.woocommerce-checkout #order_review::before {
    margin: calc(var(--checkout-summary-pad) * -1) calc(var(--checkout-summary-pad) * -1) 0;
    padding: clamp(28px, 3vw, 40px) var(--checkout-summary-pad);
}

body.woocommerce-checkout #order_review table.shop_table {
    padding-top: 18px;
}

body.woocommerce-checkout #order_review table.shop_table tbody {
    padding-bottom: 10px;
}

body.woocommerce-checkout #order_review table.shop_table tbody tr.cart_item {
    margin-bottom: 12px;
    padding: 16px;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr {
    min-height: 50px;
    padding: 13px 0;
}

body.woocommerce-checkout #order_review table.shop_table tfoot tr.order-total {
    margin-top: 10px;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 20px;
    padding-top: 22px;
}

body.woocommerce-checkout #payment ul.payment_methods {
    margin: 0 !important;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-top: 18px;
}

body.woocommerce-checkout .place-order,
body.woocommerce-checkout #place_order {
    margin-top: 18px !important;
}

@media (max-width: 760px) {
    body.woocommerce-checkout #customer_details {
        gap: 12px;
    }

    body.woocommerce-checkout #order_review::before {
        margin: -18px -18px 0;
        padding: 26px 18px;
    }
}

/* Checkout page edge and checkbox rhythm fixes. */
body.woocommerce-checkout {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fbfaf7 !important;
}

body.woocommerce-checkout .site-header,
body.woocommerce-checkout .site-footer,
body.woocommerce-checkout .site-main {
    width: 100% !important;
    max-width: none !important;
}

body.woocommerce-checkout .site-header .primary-nav a,
body.woocommerce-checkout .site-header .primary-nav a .icon {
    color: rgba(239, 242, 247, .78) !important;
}

body.woocommerce-checkout .site-header .header-action {
    color: rgba(239, 242, 247, .82) !important;
}

body.woocommerce-checkout .site-header .primary-nav a:hover,
body.woocommerce-checkout .site-header .primary-nav a:hover .icon,
body.woocommerce-checkout .site-header .header-action:hover {
    color: #d1aa59 !important;
}

body.woocommerce-checkout .site-footer .footer-column a {
    color: rgba(180, 195, 214, .68) !important;
}

body.woocommerce-checkout .site-footer .footer-bottom a {
    color: rgba(180, 195, 214, .48) !important;
}

body.woocommerce-checkout .site-footer .footer-column a:hover,
body.woocommerce-checkout .site-footer .footer-bottom a:hover {
    color: #d1aa59 !important;
}

body.woocommerce-checkout .header-inner,
body.woocommerce-checkout .page-hero,
body.woocommerce-checkout .content-shell,
body.woocommerce-checkout .site-footer .footer-inner,
body.woocommerce-checkout .site-footer .footer-bottom {
    width: var(--page-shell) !important;
    max-width: var(--page-shell) !important;
}

body.woocommerce-checkout #customer_details {
    gap: 12px;
}

body.woocommerce-checkout .woocommerce-account-fields,
body.woocommerce-checkout .woocommerce-shipping-fields {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

body.woocommerce-checkout .woocommerce-account-fields .form-row,
body.woocommerce-checkout .woocommerce-shipping-fields .form-row {
    min-height: 0 !important;
}

body.woocommerce-checkout .woocommerce-account-fields label.checkbox,
body.woocommerce-checkout .woocommerce-shipping-fields label.checkbox,
body.woocommerce-checkout #ship-to-different-address label {
    min-height: 22px;
}

body.woocommerce-checkout #ship-to-different-address {
    margin: 0 !important;
    padding: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

body.woocommerce-checkout #ship-to-different-address label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    color: rgba(7, 19, 38, .62) !important;
}

body.woocommerce-checkout .woocommerce-shipping-fields__field-wrapper {
    margin-top: 18px;
}

body.woocommerce-checkout #ship-to-different-address + .shipping_address {
    margin-top: 18px;
}

@media (max-width: 760px) {
    body.woocommerce-checkout .header-inner,
    body.woocommerce-checkout .page-hero,
    body.woocommerce-checkout .content-shell,
    body.woocommerce-checkout .site-footer .footer-inner,
    body.woocommerce-checkout .site-footer .footer-bottom {
        width: var(--page-shell) !important;
        max-width: var(--page-shell) !important;
    }
}

/* Checkout content width must follow the global page shell. */
body.woocommerce-checkout .page-hero,
body.woocommerce-checkout .content-shell,
body.woocommerce-checkout .content-shell > .woocommerce,
body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout form.checkout.woocommerce-checkout {
    width: var(--page-shell) !important;
    max-width: var(--page-shell) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

body.woocommerce-checkout .content-shell > .woocommerce,
body.woocommerce-checkout .woocommerce-notices-wrapper,
body.woocommerce-checkout form.checkout.woocommerce-checkout {
    min-width: 0;
}

/* Checkout and offer panels should stay in the document flow. */
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-message {
    font-weight: 560 !important;
}

body.woocommerce-checkout .woocommerce-info a,
body.woocommerce-checkout .woocommerce-message a {
    font-weight: 700 !important;
}

body.woocommerce-checkout #order_review {
    position: static !important;
    top: auto !important;
    align-self: start !important;
}

.shop-layout__filters {
    position: static !important;
    top: auto !important;
    align-self: start !important;
}

/* Checkout integrations: InPost delivery and Przelewy24 payment widgets. */
body.woocommerce-checkout #order_review table.shop_table .shipping td {
    text-align: left !important;
}

body.woocommerce-checkout #order_review table.shop_table ul#shipping_method,
body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods {
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
    list-style: none !important;
}

body.woocommerce-checkout #order_review table.shop_table ul#shipping_method li,
body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods li {
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
    list-style: none !important;
}

body.woocommerce-checkout #order_review table.shop_table ul#shipping_method li label,
body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods li label,
body.woocommerce-checkout #payment ul.payment_methods li > label {
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #071326 !important;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .1) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 780 !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    cursor: pointer;
}

body.woocommerce-checkout #order_review table.shop_table ul#shipping_method input[type="radio"],
body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods input[type="radio"],
body.woocommerce-checkout #payment ul.payment_methods input[type="radio"] {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    accent-color: #d1aa59;
}

body.woocommerce-checkout #order_review table.shop_table ul#shipping_method input[type="radio"]:checked + label,
body.woocommerce-checkout #order_review table.shop_table .woocommerce-shipping-methods input[type="radio"]:checked + label,
body.woocommerce-checkout #payment ul.payment_methods input[type="radio"]:checked + label {
    border-color: rgba(209, 170, 89, .66) !important;
    background: rgba(209, 170, 89, .1) !important;
}

body.woocommerce-checkout .easypack_show_geowidget,
body.woocommerce-checkout button.easypack_show_geowidget,
body.woocommerce-checkout .button.easypack_show_geowidget,
body.woocommerce-checkout .select-paczkomat-button,
body.woocommerce-checkout .change-paczkomat-button,
body.woocommerce-checkout .inpost-select-point,
body.woocommerce-checkout button[name*="paczkomat"],
body.woocommerce-checkout button[class*="parcel"],
body.woocommerce-checkout button[class*="locker"] {
    width: 100% !important;
    min-height: 58px !important;
    margin: 8px 0 0 !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #071326 !important;
    background: #d1aa59 !important;
    border: 1px solid #d1aa59 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    font-weight: 950 !important;
    letter-spacing: .14em !important;
    line-height: 1.2 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    cursor: pointer;
}

body.woocommerce-checkout .easypack_show_geowidget:hover,
body.woocommerce-checkout button.easypack_show_geowidget:hover,
body.woocommerce-checkout .button.easypack_show_geowidget:hover,
body.woocommerce-checkout .select-paczkomat-button:hover,
body.woocommerce-checkout .change-paczkomat-button:hover,
body.woocommerce-checkout .inpost-select-point:hover {
    background: #c79a40 !important;
    border-color: #c79a40 !important;
    transform: translateY(-1px);
}

body.woocommerce-checkout .easypack_selected_machine,
body.woocommerce-checkout .easypack_selected_point,
body.woocommerce-checkout .easypack-parcel-machine,
body.woocommerce-checkout .easypack-parcel-machine-info,
body.woocommerce-checkout .inpost-selected-point,
body.woocommerce-checkout .selected-parcel-machine,
body.woocommerce-checkout #easypack-parcel-machine,
body.woocommerce-checkout #easypack_parcel_machine,
body.woocommerce-checkout [class*="parcel-machine"] {
    margin-top: 10px !important;
    padding: 14px 16px !important;
    color: rgba(7, 19, 38, .76) !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .08) !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 620 !important;
    line-height: 1.45 !important;
}

body.woocommerce-checkout .easypack_selected_machine:empty,
body.woocommerce-checkout .easypack_selected_point:empty,
body.woocommerce-checkout .easypack-parcel-machine:empty,
body.woocommerce-checkout .easypack-parcel-machine-info:empty,
body.woocommerce-checkout .inpost-selected-point:empty,
body.woocommerce-checkout .selected-parcel-machine:empty {
    display: none !important;
}

body.woocommerce-checkout .easypack_geowidget,
body.woocommerce-checkout .easypack_geowidget_modal,
body.woocommerce-checkout .inpost-geowidget,
body.woocommerce-checkout inpost-geowidget,
body.woocommerce-checkout #easypack-map,
body.woocommerce-checkout #inpost-geowidget,
body.woocommerce-checkout [class*="geowidget"] {
    max-width: 100% !important;
    border-radius: 0 !important;
}

body.woocommerce-checkout .p24-payment-container,
body.woocommerce-checkout .p24-online-payments,
body.woocommerce-checkout .p24-payment-card,
body.woocommerce-checkout .p24-payment-blik,
body.woocommerce-checkout .p24-payment-google-pay,
body.woocommerce-checkout .p24-payment-apple-pay {
    margin-top: 14px !important;
    padding: 16px !important;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .08) !important;
    border-radius: 0 !important;
}

body.woocommerce-checkout .p24-methods {
    display: grid !important;
    gap: 12px !important;
}

body.woocommerce-checkout .p24-methods__items {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

body.woocommerce-checkout .p24-method-item {
    min-height: 68px !important;
    padding: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    color: #071326 !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .1) !important;
    border-radius: 0 !important;
    font-size: 12px !important;
    font-weight: 840 !important;
    line-height: 1.25 !important;
    text-align: center !important;
    cursor: pointer;
}

body.woocommerce-checkout .p24-method-item:hover,
body.woocommerce-checkout .p24-method-item.active,
body.woocommerce-checkout .p24-method-item.selected,
body.woocommerce-checkout .p24-method-item.is-active {
    border-color: rgba(209, 170, 89, .68) !important;
    background: rgba(209, 170, 89, .1) !important;
}

body.woocommerce-checkout .p24-method-item picture {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
}

body.woocommerce-checkout .p24-method-item img {
    max-width: 74px !important;
    max-height: 28px !important;
    object-fit: contain !important;
}

body.woocommerce-checkout .p24-method-item span {
    display: block !important;
}

body.woocommerce-checkout .p24-checkbox,
body.woocommerce-checkout .p24-payment-container .checkbox {
    margin-top: 14px !important;
}

body.woocommerce-checkout .p24-payment-container input[type="text"],
body.woocommerce-checkout .p24-payment-container input[type="tel"],
body.woocommerce-checkout .p24-payment-container input[type="number"] {
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 15px !important;
    color: #071326 !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .12) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 52px !important;
}

@media (max-width: 760px) {
    body.woocommerce-checkout .p24-methods__items {
        grid-template-columns: 1fr !important;
    }
}

/* Checkout delivery, validation and integration overlays. */
body.woocommerce-checkout .site-header {
    position: relative;
    z-index: 1200;
}

body.woocommerce-checkout .site-main,
body.woocommerce-checkout .content-shell,
body.woocommerce-checkout form.checkout.woocommerce-checkout {
    position: relative;
}

body.woocommerce-checkout .blockUI.blockOverlay {
    z-index: 60 !important;
    background: rgba(251, 250, 247, .76) !important;
    opacity: 1 !important;
}

body.woocommerce-checkout .blockUI.blockMsg {
    z-index: 70 !important;
    padding: 14px 18px !important;
    color: #071326 !important;
    background: #fff !important;
    border: 1px solid rgba(209, 170, 89, .32) !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 46px rgba(7, 19, 38, .12) !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
}

body.woocommerce-checkout form.checkout.woocommerce-checkout.processing,
body.woocommerce-checkout #order_review.processing,
body.woocommerce-checkout #payment.processing {
    opacity: 1 !important;
}

body.woocommerce-checkout textarea,
body.woocommerce-checkout textarea.input-text {
    resize: none !important;
}

body.woocommerce-checkout .a2-checkout-shipping-panel {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    padding: clamp(24px, 3vw, 34px);
    box-sizing: border-box;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
    box-shadow: 0 16px 42px rgba(7, 19, 38, .045);
}

body.woocommerce-checkout .a2-checkout-shipping-panel__head {
    margin: 0 0 22px;
}

body.woocommerce-checkout .a2-checkout-shipping-panel__head .eyebrow {
    margin: 0 0 10px;
}

body.woocommerce-checkout .a2-checkout-shipping-panel h3 {
    margin: 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 700;
    line-height: .98;
}

body.woocommerce-checkout .a2-checkout-shipping-panel__body {
    display: grid;
    gap: 14px;
}

body.woocommerce-checkout .a2-checkout-shipping-panel__placeholder {
    margin: 0;
    padding: 16px 18px;
    color: rgba(7, 19, 38, .68);
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

body.woocommerce-checkout .a2-checkout-shipping-methods {
    display: grid;
    gap: 12px;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__label {
    color: rgba(7, 19, 38, .62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.35;
    text-transform: uppercase;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__content {
    display: grid;
    gap: 12px;
    color: rgba(7, 19, 38, .72);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__content ul#shipping_method,
body.woocommerce-checkout .a2-checkout-shipping-methods__content .woocommerce-shipping-methods {
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
    list-style: none !important;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__content ul#shipping_method li,
body.woocommerce-checkout .a2-checkout-shipping-methods__content .woocommerce-shipping-methods li {
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
    list-style: none !important;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__content ul#shipping_method li label,
body.woocommerce-checkout .a2-checkout-shipping-methods__content .woocommerce-shipping-methods li label,
body.woocommerce-checkout .a2-checkout-shipping-methods__content label {
    min-height: 54px !important;
    margin: 0 !important;
    padding: 14px 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #071326 !important;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .1) !important;
    border-radius: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 780 !important;
    letter-spacing: 0 !important;
    line-height: 1.35 !important;
    text-transform: none !important;
    cursor: pointer;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__content input[type="radio"] {
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    accent-color: #d1aa59;
}

body.woocommerce-checkout .a2-checkout-shipping-methods__content input[type="radio"]:checked + label {
    border-color: rgba(209, 170, 89, .66) !important;
    background: rgba(209, 170, 89, .1) !important;
}

body.woocommerce-checkout #order_review table.shop_table tr.a2-shipping-row-moved {
    display: none !important;
}

body.woocommerce-checkout .woocommerce-NoticeGroup,
body.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
    width: 100%;
    margin: 0 0 18px !important;
    grid-column: 1 / -1;
}

body.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-error,
body.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-error,
body.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-message,
body.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-NoticeGroup .woocommerce-info,
body.woocommerce-checkout .woocommerce-NoticeGroup-checkout .woocommerce-info {
    margin: 0 !important;
    padding: 16px 18px !important;
}

body.woocommerce-checkout .form-row .woocommerce-error,
body.woocommerce-checkout .form-row .error,
body.woocommerce-checkout .form-row .woocommerce-invalid-message,
body.woocommerce-checkout .form-row .wc-block-components-validation-error,
body.woocommerce-checkout .form-row [role="alert"],
body.woocommerce-checkout .woocommerce-input-wrapper + .woocommerce-error,
body.woocommerce-checkout .woocommerce-input-wrapper + .error,
body.woocommerce-checkout .form-row.woocommerce-invalid .woocommerce-input-wrapper + p,
body.woocommerce-checkout .form-row.woocommerce-invalid .woocommerce-input-wrapper + span:not(.select2),
body.woocommerce-checkout .woocommerce-input-wrapper + span.error,
body.woocommerce-checkout .woocommerce-input-wrapper + small.error,
body.woocommerce-checkout #payment .woocommerce-error,
body.woocommerce-checkout #payment .error,
body.woocommerce-checkout .a2-checkout-shipping-panel .woocommerce-error,
body.woocommerce-checkout .a2-checkout-shipping-panel .error,
body.woocommerce-checkout .a2-checkout-shipping-panel [role="alert"] {
    width: 100%;
    margin: 10px 0 0 !important;
    padding: 12px 14px !important;
    display: block !important;
    box-sizing: border-box;
    color: #6f1717 !important;
    background: rgba(155, 31, 31, .055) !important;
    border: 1px solid rgba(155, 31, 31, .18) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 13px !important;
    font-weight: 720 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

body.woocommerce-checkout .woocommerce-invalid .woocommerce-input-wrapper {
    display: block;
}

body.woocommerce-checkout #payment ul.payment_methods li > label,
body.woocommerce-checkout #payment ul.payment_methods li label {
    width: 100%;
    box-sizing: border-box;
}

body.woocommerce-checkout #payment ul.payment_methods li input[type="radio"],
body.woocommerce-checkout #payment ul.payment_methods li input[type="checkbox"],
body.woocommerce-checkout .a2-checkout-shipping-panel input[type="radio"],
body.woocommerce-checkout .a2-checkout-shipping-panel input[type="checkbox"] {
    flex: 0 0 18px;
}

body.woocommerce-checkout .easypack_geowidget_modal,
body.woocommerce-checkout .easypack_geowidget,
body.woocommerce-checkout .inpost-geowidget,
body.woocommerce-checkout inpost-geowidget,
body.woocommerce-checkout [class*="geowidget"] {
    z-index: 1100 !important;
}

@media (max-width: 980px) {
    body.woocommerce-checkout .a2-checkout-shipping-panel {
        grid-column: 1;
    }
}

@media (max-width: 760px) {
    body.woocommerce-checkout .a2-checkout-shipping-panel {
        padding-right: 18px;
        padding-left: 18px;
    }
}

/* Customer account frontend. */
body.woocommerce-account {
    background: #fbfaf7;
}

body.woocommerce-account,
body.woocommerce-account .site-main {
    max-width: 100%;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    body.woocommerce-account,
    body.woocommerce-account .site-main {
        overflow-x: hidden;
    }
}

body.woocommerce-account .site-header,
body.woocommerce-account .header-inner,
body.woocommerce-account .page-hero,
body.woocommerce-account .content-shell,
body.woocommerce-account .content-shell > .woocommerce,
body.woocommerce-account .a2-account,
body.woocommerce-account .a2-account-nav,
body.woocommerce-account .a2-account__content {
    min-width: 0;
    max-width: 100%;
}

body.woocommerce-account .header-inner {
    width: min(1380px, calc(100% - 36px));
}

body.woocommerce-account .page-hero,
body.woocommerce-account .content-shell {
    width: min(1380px, calc(100% - 52px)) !important;
    max-width: min(1380px, calc(100% - 52px)) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

body.woocommerce-account .page-hero {
    padding-top: clamp(38px, 4.4vw, 64px);
    padding-bottom: clamp(24px, 3vw, 42px);
}

body.woocommerce-account .page-hero h1 {
    max-width: 920px;
}

body.woocommerce-account .content-shell {
    padding-bottom: clamp(74px, 8vw, 118px);
}

body.woocommerce-account .content-shell > .woocommerce,
.a2-account {
    width: 100%;
}

body.woocommerce-account .content-shell > .woocommerce {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.a2-account {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 36px);
    align-items: start;
    min-width: 0;
}

.a2-account-nav {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    float: none !important;
}

.a2-account-nav__card {
    margin-bottom: 14px;
    padding: 22px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    background: #071326;
    border: 1px solid rgba(209, 170, 89, .32);
    color: #fff;
    min-width: 0;
}

.a2-account-nav__card > div {
    min-width: 0;
}

.a2-account-nav__avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    color: #071326;
    background: #d1aa59;
    border: 1px solid rgba(209, 170, 89, .85);
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .08em;
}

.a2-account-nav__card span:not(.a2-account-nav__avatar) {
    display: block;
    color: rgba(255, 255, 255, .52);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.a2-account-nav__card strong {
    margin-top: 4px;
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
}

.a2-account-nav__list,
.woocommerce-MyAccount-navigation ul {
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    gap: 8px;
    list-style: none !important;
    min-width: 0;
    max-width: 100%;
}

.a2-account-nav__list li,
.woocommerce-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    min-width: 0;
    max-width: 100%;
}

.a2-account-nav__list a {
    min-height: 58px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .1);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
    min-width: 0;
    max-width: 100%;
}

.a2-account-nav__list a span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.a2-account-nav__list a .icon {
    width: 17px;
    height: 17px;
    color: #b98d35;
}

.a2-account-nav__list a:hover,
.a2-account-nav__list .is-active a,
.a2-account-nav__list .woocommerce-MyAccount-navigation-link.is-active a,
.a2-account-nav__list a[aria-current="page"] {
    background: rgba(209, 170, 89, .12);
    border-color: rgba(209, 170, 89, .58);
    transform: translateY(-1px);
}

.a2-account__content,
.woocommerce-MyAccount-content {
    width: 100% !important;
    min-width: 0;
    float: none !important;
}

.a2-account__content {
    padding: clamp(24px, 3vw, 36px);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    box-shadow: 0 20px 52px rgba(7, 19, 38, .06);
}

.a2-account-dashboard__hero {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

.a2-account-dashboard__hero h2,
.a2-account-section__head h2,
.a2-auth h2 {
    margin: 12px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 700;
    line-height: .96;
}

.a2-account-dashboard__hero p:not(.eyebrow),
.a2-account-section__head p:not(.eyebrow),
.a2-account-empty p,
.a2-auth__note {
    max-width: 760px;
    margin: 16px 0 0;
    color: rgba(7, 19, 38, .62);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.a2-account-metrics {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-account-metrics article {
    min-height: 112px;
    padding: 20px;
    display: grid;
    align-content: center;
    gap: 8px;
    border-right: 1px solid rgba(7, 19, 38, .08);
}

.a2-account-metrics article:last-child {
    border-right: 0;
}

.a2-account-metrics span,
.a2-order-card span,
.a2-order-status span {
    color: rgba(7, 19, 38, .52);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.a2-account-metrics strong {
    color: #b98d35;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 950;
    line-height: 1;
}

.a2-account-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.a2-account-actions a {
    min-height: 136px;
    padding: 22px;
    display: grid;
    align-content: end;
    gap: 10px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
    transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.a2-account-actions a:hover {
    background: rgba(209, 170, 89, .1);
    border-color: rgba(209, 170, 89, .5);
    transform: translateY(-2px);
}

.a2-account-actions strong {
    color: #071326;
    font-size: 18px;
    font-weight: 900;
}

.a2-account-actions span {
    color: rgba(7, 19, 38, .62);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.55;
}

.a2-account-section__head {
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(7, 19, 38, .08);
}

.a2-account-back {
    width: max-content;
    max-width: 100%;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b98d35 !important;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.a2-account-back .icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    transform: rotate(180deg);
}

.a2-account-back:hover {
    color: #071326 !important;
}

.a2-orders-list {
    display: grid;
    gap: 14px;
}

.a2-order-card {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr minmax(150px, .8fr) auto;
    gap: 16px;
    align-items: center;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-order-card div {
    display: grid;
    gap: 7px;
}

.a2-order-card strong,
.a2-order-status strong {
    color: #071326;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.a2-order-card small {
    color: rgba(7, 19, 38, .54);
    font-size: 12px;
    font-weight: 600;
}

.a2-order-card .button,
.a2-account-section > .button,
.a2-auth .button,
.a2-account-pagination .button,
.woocommerce-MyAccount-content .button {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 0 !important;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.a2-order-card .button,
.a2-account-section > .button,
.a2-auth .button.button--primary,
.woocommerce-MyAccount-content .button:not(.button--ghost) {
    color: #071326 !important;
    background: #d1aa59 !important;
    border: 1px solid #d1aa59 !important;
}

.a2-account-empty {
    padding: clamp(28px, 4vw, 48px);
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-account-empty h3,
.a2-order-updates h3,
.woocommerce-order-details__title,
.woocommerce-customer-details h2,
.woocommerce-EditAccountForm legend,
.woocommerce-address-fields h2 {
    margin: 0;
    color: #071326;
    font-size: 19px;
    font-weight: 950;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.a2-account-empty .button {
    margin-top: 24px;
}

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

.a2-address-card {
    padding: 24px;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-address-card .title {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.a2-address-card h3 {
    margin: 0;
    color: #071326;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.a2-address-card .edit,
.a2-auth__row a,
.woocommerce-MyAccount-content a:not(.button) {
    color: #b98d35;
    font-weight: 850;
    text-decoration: none;
}

.a2-address-card address {
    color: rgba(7, 19, 38, .68);
    font-size: 15px;
    font-style: normal;
    font-weight: 520;
    line-height: 1.7;
}

.a2-order-status {
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-order-status div {
    min-height: 104px;
    padding: 20px;
    display: grid;
    align-content: center;
    gap: 8px;
    border-right: 1px solid rgba(7, 19, 38, .08);
}

.a2-order-status div:last-child {
    border-right: 0;
}

.a2-order-updates {
    margin-bottom: 28px;
    padding: 22px;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-order-updates ol {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.a2-order-updates li {
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
}

.a2-order-updates time {
    display: block;
    margin-bottom: 8px;
    color: #b98d35;
    font-size: 12px;
    font-weight: 900;
}

body.woocommerce-account table.shop_table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 24px;
    overflow-x: auto;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-radius: 0;
}

body.woocommerce-account table.shop_table th,
body.woocommerce-account table.shop_table td {
    padding: 16px;
    border-color: rgba(7, 19, 38, .08);
    color: #071326;
    font-size: 14px;
    font-weight: 720;
    line-height: 1.45;
}

body.woocommerce-account table.shop_table th {
    color: rgba(7, 19, 38, .56);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .13em;
    text-transform: uppercase;
}

body.woocommerce-account table.shop_table .amount {
    color: #b98d35;
    font-weight: 950;
}

.woocommerce-MyAccount-content form,
.a2-auth__panel {
    display: grid;
    gap: 16px;
}

.woocommerce-MyAccount-content form .form-row,
.a2-auth form .form-row {
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-MyAccount-content form label,
.a2-auth form label {
    margin: 0 0 8px;
    display: block;
    color: rgba(7, 19, 38, .68);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.woocommerce-MyAccount-content input.input-text,
.woocommerce-MyAccount-content input[type="text"],
.woocommerce-MyAccount-content input[type="email"],
.woocommerce-MyAccount-content input[type="password"],
.woocommerce-MyAccount-content input[type="tel"],
.woocommerce-MyAccount-content select,
.woocommerce-MyAccount-content textarea,
.a2-auth input.input-text {
    width: 100%;
    min-height: 54px;
    padding: 0 15px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .12);
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 54px;
    outline: 0;
}

.woocommerce-MyAccount-content textarea {
    min-height: 140px;
    padding-top: 14px;
    line-height: 1.45;
    resize: none;
}

.woocommerce-MyAccount-content input:focus,
.woocommerce-MyAccount-content select:focus,
.woocommerce-MyAccount-content textarea:focus,
.a2-auth input:focus {
    border-color: rgba(209, 170, 89, .85);
    outline: 2px solid rgba(209, 170, 89, .16);
}

.woocommerce-EditAccountForm,
.woocommerce-address-fields,
.woocommerce-ResetPassword {
    padding: 0;
}

.woocommerce-EditAccountForm fieldset {
    margin: 12px 0 0;
    padding: 24px 0 0;
    display: grid;
    gap: 16px;
    border: 0;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last,
.woocommerce-address-fields .form-row-first,
.woocommerce-address-fields .form-row-last {
    width: calc(50% - 9px) !important;
}

.woocommerce-EditAccountForm .form-row-wide,
.woocommerce-address-fields .form-row-wide {
    width: 100% !important;
}

.woocommerce-form__label-for-checkbox {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    color: rgba(7, 19, 38, .64) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1.45 !important;
    text-transform: none !important;
}

body.woocommerce-account input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    display: inline-grid;
    place-content: center;
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .22);
    border-radius: 0;
}

body.woocommerce-account input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    background: #071326;
    clip-path: polygon(14% 46%, 0 61%, 39% 100%, 100% 18%, 84% 4%, 37% 66%);
    transition: transform .14s ease;
}

body.woocommerce-account input[type="checkbox"]:checked {
    background: #d1aa59;
    border-color: #d1aa59;
}

body.woocommerce-account input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.a2-auth {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.a2-auth__panel {
    padding: clamp(24px, 3vw, 36px);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    box-shadow: 0 18px 44px rgba(7, 19, 38, .05);
}

.a2-auth__panel--dark {
    color: #fff;
    background: #071326;
    border-color: rgba(209, 170, 89, .32);
}

.a2-auth__panel--dark h2 {
    color: #fff;
}

.a2-auth__panel--dark form label,
.a2-auth__panel--dark .a2-auth__note {
    color: rgba(255, 255, 255, .66);
}

.a2-auth__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.a2-auth .button {
    width: 100%;
}

.woocommerce-notices-wrapper,
body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info {
    margin-bottom: 16px;
}

body.woocommerce-account .woocommerce-error,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info {
    padding: 16px 18px;
    color: #071326;
    background: #fff;
    border: 1px solid rgba(209, 170, 89, .28);
    border-top-color: rgba(209, 170, 89, .28);
    border-radius: 0;
    font-size: 14px;
    font-weight: 620;
    line-height: 1.55;
}

body.woocommerce-account .woocommerce-error::before,
body.woocommerce-account .woocommerce-message::before,
body.woocommerce-account .woocommerce-info::before {
    display: none;
}

/* My account form controls. */
body.woocommerce-account .woocommerce-MyAccount-content form {
    gap: 18px;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
    display: grid;
    gap: 18px;
    min-width: 0;
    max-width: 100%;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row,
body.woocommerce-account .woocommerce-MyAccount-content .form-row,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper > p {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .form-row-wide,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm > p:last-child,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields > p:last-child {
    grid-column: 1 / -1;
}

body.woocommerce-account .woocommerce-MyAccount-content form label:not(.woocommerce-form__label-for-checkbox):not(.checkbox) {
    margin: 0 0 8px !important;
    display: block !important;
    color: rgba(7, 19, 38, .72) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    line-height: 1.35 !important;
    text-transform: uppercase !important;
}

body.woocommerce-account .woocommerce-MyAccount-content form label.screen-reader-text {
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .required {
    color: #b98d35;
    text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-content input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 10px 12px !important;
    color: #071326 !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .12) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    outline: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content textarea {
    height: auto !important;
    min-height: 150px !important;
    padding-top: 14px !important;
    resize: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input.input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="text"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
    border-color: rgba(209, 170, 89, .9) !important;
    outline: 2px solid rgba(209, 170, 89, .18) !important;
    outline-offset: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .select2-container {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

body.woocommerce-account .woocommerce-MyAccount-content select.select2-hidden-accessible,
body.woocommerce-checkout select.select2-hidden-accessible,
.woocommerce select.select2-hidden-accessible,
.woocommerce-page select.select2-hidden-accessible {
    width: 1px !important;
    min-width: 1px !important;
    max-width: 1px !important;
    height: 1px !important;
    min-height: 1px !important;
    max-height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    position: absolute !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection--single {
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    color: #071326 !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .12) !important;
    border-radius: 0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection__rendered {
    padding: 0 36px 0 12px !important;
    color: #071326 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 50px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .select2-container .select2-selection__arrow {
    height: 50px !important;
    right: 8px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    margin: 8px 0 0 !important;
    padding: 24px 0 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(7, 19, 38, .08) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset legend {
    grid-column: 1 / -1;
    margin: 0 0 2px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content #account_display_name_description,
body.woocommerce-account .woocommerce-MyAccount-content .description,
body.woocommerce-account .woocommerce-MyAccount-content em {
    margin-top: 8px;
    display: block;
    color: rgba(7, 19, 38, .56);
    font-size: 13px;
    font-style: normal;
    font-weight: 560;
    line-height: 1.55;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox,
body.woocommerce-account .woocommerce-MyAccount-content label.checkbox {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    min-height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    color: rgba(7, 19, 38, .62) !important;
    font-size: 14px !important;
    font-weight: 520 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form__label-for-checkbox span,
body.woocommerce-account .woocommerce-MyAccount-content label.checkbox span {
    flex: 1 1 auto;
    min-width: 0;
    color: rgba(7, 19, 38, .62);
    line-height: 1.5;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-grid !important;
    place-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 18px !important;
    cursor: pointer;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .24) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: background-color .16s ease, border-color .16s ease, outline-color .16s ease;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    background: #071326;
    clip-path: polygon(14% 46%, 0 61%, 39% 100%, 100% 18%, 84% 4%, 37% 66%);
    transition: transform .14s ease;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]:checked {
    background: #d1aa59 !important;
    border-color: #d1aa59 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]:checked::before {
    transform: scale(1);
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(209, 170, 89, .32) !important;
    outline-offset: 2px !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    min-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-grid !important;
    place-content: center !important;
    border: 1px solid rgba(7, 19, 38, .24) !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    transform: scale(0);
    border-radius: 50%;
    background: #d1aa59;
    transition: transform .14s ease;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]:checked {
    border-color: #d1aa59 !important;
}

body.woocommerce-account .woocommerce-MyAccount-content input[type="radio"]:checked::before {
    transform: scale(1);
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-privacy-policy-text p,
body.woocommerce-account .woocommerce-MyAccount-content form > p:not(.form-row) {
    color: rgba(7, 19, 38, .62);
    font-size: 14px;
    font-weight: 560;
    line-height: 1.65;
}

body.woocommerce-account .woocommerce-MyAccount-content form > p:not(.form-row) .button {
    margin-top: 4px;
}

/* Standalone login and registration pages. */
.content-shell--auth {
    width: var(--page-shell) !important;
    max-width: var(--page-shell) !important;
    padding-top: clamp(46px, 5vw, 82px);
    padding-bottom: clamp(78px, 8vw, 124px);
}

.content-shell--auth > p:empty {
    display: none;
}

.a2-auth-standalone {
    color: #071326;
}

.a2-auth-standalone__inner {
    display: grid;
    grid-template-columns: minmax(0, 820px);
    justify-content: center;
}

.a2-auth-card {
    min-width: 0;
    border: 1px solid rgba(7, 19, 38, .08);
    box-shadow: 0 22px 60px rgba(7, 19, 38, .06);
}

.a2-auth-card {
    padding: clamp(28px, 4.2vw, 58px);
    background: #fff;
}

.a2-auth-card .woocommerce-notices-wrapper {
    margin: 0 0 clamp(20px, 2.4vw, 30px);
}

.a2-auth-card .woocommerce-notices-wrapper:empty {
    display: none;
}

.a2-auth-card .woocommerce-message,
.a2-auth-card .woocommerce-info,
.a2-auth-card .woocommerce-error {
    margin: 0 0 14px;
    padding: 18px 20px 18px 54px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .1);
    border-left: 4px solid #d1aa59;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
    position: relative;
}

.a2-auth-card .woocommerce-message::before,
.a2-auth-card .woocommerce-info::before,
.a2-auth-card .woocommerce-error::before {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    color: #071326;
    background: #d1aa59;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    content: "i";
}

.a2-auth-card .woocommerce-message {
    border-left-color: #d1aa59;
}

.a2-auth-card .woocommerce-message::before {
    content: "✓";
}

.a2-auth-card .woocommerce-error {
    color: #671c1c;
    background: #fff8f8;
    border-color: rgba(155, 31, 31, .2);
    border-left-color: #9b1f1f;
    list-style: none;
}

.a2-auth-card .woocommerce-error::before {
    color: #fff;
    background: #9b1f1f;
    content: "!";
}

.a2-auth-card .woocommerce-error li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.a2-auth-card .woocommerce-message a,
.a2-auth-card .woocommerce-info a,
.a2-auth-card .woocommerce-error a {
    color: #b98d35;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.a2-auth-card h2 {
    max-width: 780px;
    margin: 10px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(48px, 5.8vw, 86px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .92;
}

.a2-auth-card__lead,
.a2-auth-card__hint {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(7, 19, 38, .62);
    font-size: 16px;
    font-weight: 520;
    line-height: 1.7;
}

.a2-auth-card form {
    margin-top: clamp(24px, 3vw, 36px);
    display: grid;
    gap: 18px;
}

.a2-auth-card form .form-row {
    margin: 0 !important;
    padding: 0 !important;
}

.a2-auth-card form label {
    margin: 0 0 8px;
    display: block;
    color: rgba(7, 19, 38, .72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.35;
    text-transform: uppercase;
}

.a2-auth-card input.input-text,
.a2-auth-card input[type="text"],
.a2-auth-card input[type="email"],
.a2-auth-card input[type="password"] {
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 10px 12px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .12);
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    outline: 0;
}

.a2-auth-card input:focus {
    border-color: rgba(209, 170, 89, .9);
    outline: 2px solid rgba(209, 170, 89, .18);
    outline-offset: 0;
}

.a2-auth-card .required {
    color: #b98d35;
}

.a2-auth-card .woocommerce-privacy-policy-text p {
    margin: 4px 0 0;
    color: rgba(7, 19, 38, .58);
    font-size: 13px;
    font-weight: 560;
    line-height: 1.7;
}

.a2-auth-card .woocommerce-privacy-policy-text a {
    color: #b98d35;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.a2-auth-card .woocommerce-form__label-for-checkbox {
    display: flex !important;
    grid-template-columns: none;
    flex-wrap: wrap;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
    color: rgba(7, 19, 38, .6) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    text-transform: none !important;
}

.a2-auth-card .woocommerce-form__label-for-checkbox span {
    flex: 1 1 min(260px, calc(100% - 30px));
    color: rgba(7, 19, 38, .6);
    line-height: 1.5;
}

.a2-auth-card input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-grid !important;
    place-content: center !important;
    box-sizing: border-box !important;
    flex: 0 0 18px !important;
    cursor: pointer;
    background: #fff !important;
    border: 1px solid rgba(7, 19, 38, .24) !important;
    border-radius: 0 !important;
}

.a2-auth-card input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 9px;
    transform: scale(0);
    background: #071326;
    clip-path: polygon(14% 46%, 0 61%, 39% 100%, 100% 18%, 84% 4%, 37% 66%);
    transition: transform .14s ease;
}

.a2-auth-card input[type="checkbox"]:checked {
    background: #d1aa59;
    border-color: #d1aa59;
}

.a2-auth-card input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.a2-auth-card .a2-auth__row {
    margin-top: 2px;
    padding: 2px 0;
}

.a2-auth-card .a2-auth__row a,
.a2-auth-switch a {
    color: #b98d35;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.a2-auth-card .button {
    width: 100%;
    margin-top: 6px;
}

.a2-auth-switch {
    margin: 2px 0 0;
    padding-top: 18px;
    color: rgba(7, 19, 38, .62);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid rgba(7, 19, 38, .08);
}

.a2-password-screen {
    width: 100%;
    display: grid;
    justify-content: center;
}

.a2-password-card {
    width: min(820px, 100%);
    padding: clamp(28px, 4.2vw, 58px);
    background: #fff;
    border: 1px solid rgba(7, 19, 38, .08);
    border-top: 4px solid #d1aa59;
    box-shadow: 0 22px 60px rgba(7, 19, 38, .06);
}

.a2-password-card .woocommerce-notices-wrapper {
    margin: 0 0 clamp(20px, 2.4vw, 30px);
}

.a2-password-card .woocommerce-notices-wrapper:empty {
    display: none;
}

.a2-password-card .woocommerce-message,
.a2-password-card .woocommerce-info,
.a2-password-card .woocommerce-error {
    margin: 0 0 22px;
    padding: 18px 20px 18px 54px;
    color: #071326;
    background: #fbfaf7;
    border: 1px solid rgba(7, 19, 38, .1);
    border-left: 4px solid #d1aa59;
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.55;
    position: relative;
}

.a2-password-card .woocommerce-message::before,
.a2-password-card .woocommerce-info::before,
.a2-password-card .woocommerce-error::before {
    width: 22px;
    height: 22px;
    position: absolute;
    top: 18px;
    left: 18px;
    display: grid;
    place-items: center;
    color: #071326;
    background: #d1aa59;
    border-radius: 50%;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    content: "i";
}

.a2-password-card .woocommerce-message::before {
    content: "✓";
}

.a2-password-card .woocommerce-error {
    color: #671c1c;
    background: #fff8f8;
    border-color: rgba(155, 31, 31, .2);
    border-left-color: #9b1f1f;
    list-style: none;
}

.a2-password-card .woocommerce-error::before {
    color: #fff;
    background: #9b1f1f;
    content: "!";
}

.a2-password-card h2 {
    max-width: 780px;
    margin: 10px 0 0;
    color: #071326;
    font-family: var(--font-display);
    font-size: clamp(48px, 5.8vw, 86px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: .92;
}

.a2-password-card__lead {
    max-width: 720px;
    margin: 18px 0 0;
    color: rgba(7, 19, 38, .62);
    font-size: 16px;
    font-weight: 520;
    line-height: 1.7;
}

.a2-password-card form {
    margin-top: clamp(24px, 3vw, 36px);
    display: grid;
    gap: 18px;
}

.a2-password-card form .form-row {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.a2-password-card form label {
    margin: 0 0 8px;
    display: inline-flex !important;
    align-items: baseline;
    gap: 4px !important;
    color: rgba(7, 19, 38, .72) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    line-height: 1.35 !important;
    text-transform: uppercase;
}

.a2-password-card input.input-text,
.a2-password-card input[type="text"],
.a2-password-card input[type="password"] {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 10px 12px !important;
    color: #071326 !important;
    background: #fbfaf7 !important;
    border: 1px solid rgba(7, 19, 38, .12) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    outline: 0 !important;
}

.a2-password-card input:focus {
    border-color: rgba(209, 170, 89, .9);
    outline: 2px solid rgba(209, 170, 89, .18);
    outline-offset: 0;
}

.a2-password-card .required {
    color: #b98d35;
}

.a2-password-card .button,
.a2-password-card button.button,
.woocommerce .a2-password-card button.button {
    width: 100%;
    min-height: 58px;
    margin-top: 6px;
    color: #061b31 !important;
    background: #d1aa59 !important;
    border-color: #d1aa59 !important;
    border-radius: 0 !important;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.a2-password-card .button:hover,
.a2-password-card button.button:hover,
.woocommerce .a2-password-card button.button:hover {
    color: #061b31 !important;
    background: #e0bb6b !important;
    border-color: #e0bb6b !important;
}

.a2-password-card__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.a2-password-card--confirmation .button {
    margin-top: 28px;
}

.a2-auth-standalone--logged-in .a2-auth-standalone__inner {
    grid-template-columns: minmax(0, 760px);
}

.a2-auth-standalone--logged-in .a2-auth-card .button {
    max-width: 360px;
}

@media (max-width: 1100px) {
    .a2-account {
        grid-template-columns: 1fr;
    }

    .a2-account-nav__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    body.woocommerce-account .header-inner {
        width: 100%;
    }

    body.woocommerce-account .page-hero,
    body.woocommerce-account .content-shell {
        width: calc(100% - 38px) !important;
        max-width: calc(100% - 38px) !important;
    }
}

@media (max-width: 820px) {
    .a2-auth-standalone__inner {
        grid-template-columns: 1fr;
    }

    .a2-auth,
    .a2-account-actions,
    .a2-address-grid,
    .a2-account-metrics,
    .a2-order-status,
    .a2-password-card__grid {
        grid-template-columns: 1fr;
    }

    .a2-account-metrics article,
    .a2-order-status div {
        border-right: 0;
        border-bottom: 1px solid rgba(7, 19, 38, .08);
    }

    .a2-account-metrics article:last-child,
    .a2-order-status div:last-child {
        border-bottom: 0;
    }

    .a2-order-card {
        grid-template-columns: 1fr;
    }

    .a2-order-card .button {
        width: 100%;
    }

    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm,
    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields__field-wrapper,
    body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .a2-auth-card,
    .a2-password-card {
        padding: 24px;
    }

    .a2-auth-card h2,
    .a2-password-card h2 {
        font-size: clamp(42px, 14vw, 58px);
    }

    .a2-auth-card__lead,
    .a2-auth-card__hint,
    .a2-password-card__lead {
        font-size: 14px;
    }

    .a2-account__content {
        padding: 20px;
    }

    .a2-account-nav__list {
        grid-template-columns: 1fr;
    }

    .a2-auth__row {
        align-items: flex-start;
        flex-direction: column;
    }

    .woocommerce-EditAccountForm .form-row-first,
    .woocommerce-EditAccountForm .form-row-last,
    .woocommerce-address-fields .form-row-first,
    .woocommerce-address-fields .form-row-last {
        width: 100% !important;
        float: none !important;
    }
}
