/*
Theme Name: US Anti Aging
Theme URI: https://example.com/us-anti-aging
Author: US Anti Aging
Description: Premium clinical ecommerce homepage for research peptides.
Version: 1.0.0
Template: hello-elementor
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: usaa
*/

:root {
    /* Design tokens */
    --color-primary: #14532d;
    --color-primary-dark: #0f3f24;
    --color-accent: #2f7d46;
    --color-secondary: #eaf5ee;
    --color-text: #152238;
    --color-muted: #6b7280;
    --color-background: #ffffff;
    --color-surface: #f8fbf9;
    --color-border: #dce8e0;
    --color-footer: #0f3322;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-soft: 0 18px 50px rgba(20, 83, 45, 0.12);
    --shadow-card: 0 14px 32px rgba(21, 34, 56, 0.08);
    --container: 1750px;
    --container-wide: 100%;
}

/* Base layout */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.usaa-home {
    margin: 0;
    background: var(--color-background);
    color: var(--color-text);
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

body.usaa-home a {
    color: inherit;
    text-decoration: none;
}

body.usaa-home h1,
body.usaa-home h2,
body.usaa-home h3,
body.usaa-home p {
    margin-top: 0;
}

.site-shell {
    overflow: hidden;
}

.section-pad,
.service-badges {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.site-header,
.site-footer {
    width: calc(100% - 24px);
    max-width: var(--container-wide) !important;
    padding: 30px;
    /* margin-inline: auto; */
}

.section-pad {
    padding-block: var(--space-2xl);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    min-height: 78px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(14px);
    padding-inline: 100px;
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
}

.brand em {
    display: block;
    color: var(--color-accent);
    font-style: normal;
    font-size: 0.86rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--color-primary);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.primary-nav,
.header-icons {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.primary-nav {
    position: absolute;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    justify-content: center;
    color: var(--color-muted);
    font-size: 0.92rem;
    font-weight: 650;
    white-space: nowrap;
}

.primary-nav a:hover,
.header-icons a:hover {
    color: var(--color-primary);
}

.header-icons {
    position: relative;
    z-index: 2;
    justify-content: end;
    gap: var(--space-sm);
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.icon-action {
    position: relative;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
}

.icon-action:hover {
    border-color: var(--color-border);
    background: var(--color-surface);
}

.icon-action svg {
    display: block;
    width: 21px;
    height: 21px;
    color: currentColor;
    pointer-events: none;
}

.icon-search svg,
.icon-account svg {
    width: 25px;
    height: 25px;
}

.icon-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.cart-link {
    position: relative;
}

.cart-link::after {
    content: "0";
    position: absolute;
    top: -2px;
    right: -2px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--color-accent);
    color: #ffffff;
    font-size: 0.68rem;
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 750px;
    padding: 72px clamp(28px, 5.8vw, 96px) 54px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 254, 252, 0.95) 36%, rgba(240, 248, 244, 0.42) 56%, rgba(240, 248, 244, 0) 68%),
        url("/wp-content/uploads/banner.png");
    background-position: center right;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 58%;
    background: radial-gradient(circle at 72% 62%, rgba(226, 244, 235, 0.58), transparent 34%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(100%, 730px);
    color: var(--color-text);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 18px;
    padding: 5px 13px;
    border: 1px solid rgba(20, 83, 45, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Shared components */
.eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--color-accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 630px;
    margin-bottom: 18px;
    color: var(--color-text);
    font-size: clamp(2.8rem, 4.7vw, 4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-title-accent {
    color: var(--color-accent);
}

.hero-text {
    max-width: 390px;
    margin-bottom: 26px;
    color: #314052;
    font-size: 1rem;
    line-height: 1.7;
}

.button-row,
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.hero-actions {
    align-items: center;
    margin-top: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.78rem 1.1rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-card);
}

.hero .btn-primary {
    min-width: 152px;
    min-height: 42px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.82rem;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary,
.btn-ghost {
    background: #ffffff;
    border-color: var(--color-border);
    color: var(--color-primary);
}

.product-section .btn-secondary {
    background: #ffffff;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.product-section .btn-secondary:hover,
.product-section .btn-secondary:focus {
    background: var(--color-primary);
    color: #ffffff;
}

.hero-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-learn span {
    margin-left: 15px;
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 83, 45, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
}

.hero-learn span::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 3px;
    border-block: 5px solid transparent;
    border-left: 7px solid var(--color-primary);
}

.btn.btn-card,
.btn.btn-card:visited,
.btn.btn-card:hover,
.btn.btn-card:focus {
    width: 100%;
    min-height: 38px;
    background: var(--color-primary);
    color: #ffffff;
    font-size: 0.78rem;
}

.lab-vial {
    position: relative;
    display: grid;
    justify-items: center;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), #ffffff 48%, rgba(219, 240, 226, 0.45));
    border: 1px solid rgba(111, 149, 125, 0.32);
    border-radius: 10px 10px 24px 24px;
    box-shadow: 0 22px 38px rgba(21, 34, 56, 0.16);
}

.product-vial {
    width: 74px;
    height: 132px;
}

.vial-cap {
    position: absolute;
    top: -28px;
    width: 72%;
    height: 34px;
    border-radius: 8px 8px 4px 4px;
    background: linear-gradient(90deg, #0e3a22, var(--color-accent), #0e3a22);
    box-shadow: 0 8px 14px rgba(20, 83, 45, 0.18);
}

.product-vial .vial-cap {
    top: -13px;
    height: 16px;
    border-radius: 5px 5px 3px 3px;
}

.vial-label {
    z-index: 1;
    display: grid;
    place-items: center;
    width: 76%;
    min-height: 34%;
    margin-top: 42%;
    padding: var(--space-xs);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 850;
    line-height: 1.12;
    text-align: center;
}

.vial-liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(180deg, rgba(234, 245, 238, 0.1), rgba(47, 125, 70, 0.18));
}

.molecule {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(47, 125, 70, 0.24);
    border-radius: 999px;
}

.molecule::before,
.molecule::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--color-accent);
    box-shadow: 58px 42px 0 rgba(47, 125, 70, 0.38), 110px 18px 0 rgba(20, 83, 45, 0.28);
}

.molecule::after {
    inset: auto 16px 26px auto;
    width: 1px;
    height: 94px;
    background: rgba(47, 125, 70, 0.24);
    transform: rotate(54deg);
    box-shadow: none;
}

.trust-strip {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.hero .trust-strip {
    width: min(100%, 686px);
    margin-top: 34px;
    padding: 18px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    border: 1px solid rgba(220, 232, 224, 0.9);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 55px rgba(21, 34, 56, 0.1);
    backdrop-filter: blur(12px);
}

.hero .trust-strip span {
    position: relative;
    justify-content: flex-start;
    min-height: 46px;
    padding: 0;
    gap: 10px;
    background: transparent;
    border: 0;
    color: var(--color-text);
    font-size: 0.74rem;
    font-weight: 650;
    line-height: 1.22;
    text-align: left;
}

.hero .trust-strip span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 1px;
    height: 36px;
    background: rgba(20, 83, 45, 0.18);
    transform: translateY(-50%);
}

.hero .trust-strip svg {
    flex: 0 0 auto;
    display: block;
    width: 40px;
    height: 40px;
    padding: 11px;
    border: 1px solid rgba(20, 83, 45, 0.22);
    border-radius: 999px;
    background: rgba(234, 245, 238, 0.86);
    color: var(--color-primary);
    box-sizing: border-box;
}

.trust-strip span,
.service-badges span,
.quality-badges span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.84rem;
    font-weight: 750;
    text-align: center;
}

.section-heading,
.value-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: end;
    gap: var(--space-xl);
}

.section-heading {
    grid-template-columns: 1fr auto;
    margin-bottom: var(--space-xl);
}

.section-heading h2,
.value-copy h2,
.quality-banner h2,
.center-heading h2,
.newsletter h2 {
    margin-bottom: var(--space-xs);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.06;
}


#value-title{
    width: 650px;
}

#products-title,
#value-title,
#quality-title,
#process-title,
#newsletter-title {
    font-weight: 700;
}

.section-heading p,
.value-copy p,
.quality-banner p,
.center-heading p,
.newsletter p,
.feature-card p,
.process-step p,
.site-footer p {
    color: var(--color-muted);
}

/* Product grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-md);
}

.product-card,
.feature-card,
.process-step {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.product-card {
    display: grid;
    gap: var(--space-xs);
    padding: var(--space-md);
    text-align: center;
}

.product-image {
    display: grid;
    place-items: center;
    min-height: 250px;
    margin-bottom: var(--space-xs);
    border-radius: var(--radius-sm);
    background: linear-gradient(180deg, #ffffff, var(--color-secondary));
}

.product-image a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 250px;
    min-height: 250px;
    padding: 24px;
}

.product-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 82%;
    mix-blend-mode: multiply;
    object-fit: contain;
    object-position: center;
}

.product-card h3 {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.product-card p {
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
    font-weight: 850;
}

/* Trust and quality sections */
.value-section {
    align-items: center;
    grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1.44fr);
    gap: clamp(2rem, 5vw, 5.5rem);
    padding-block: clamp(3rem, 6vw, 5rem);
}

.value-copy {
    max-width: 410px;
}

.value-copy .eyebrow {
    display: none;
}

.value-copy h2 {
    max-width: 450px;
    margin-bottom: 1.35rem;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1.12;
}

.value-copy p {
    max-width: 340px;
    margin-bottom: 1.8rem;
    color: #455468;
    font-size: 0.92rem;
    line-height: 1.75;
}

.value-copy .btn-secondary {
    min-width: 142px;
    min-height: 42px;
    padding-inline: 1.3rem;
    border-color: #b9c5bd;
    border-radius: 6px;
    background: #ffffff;
    color: var(--color-text);
    font-size: 0.78rem;
}

.value-copy .btn-secondary:hover,
.value-copy .btn-secondary:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-md);
}

.value-section .feature-grid {
    grid-template-columns: repeat(4, minmax(150px, 250px));
    justify-content: center;
    align-items: stretch;
    justify-self: end;
    width: fit-content;
    max-width: 100%;
    height: 330px;
    box-sizing: border-box;
    gap: 0;
    padding: clamp(1.6rem, 3vw, 4.35rem) clamp(0.75rem, 1.5vw, 1.2rem);
    border: 1px solid rgba(220, 226, 221, 0.95);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 55px rgba(21, 34, 56, 0.1);
}

.feature-card {
    padding: var(--space-lg);
}

.value-section .feature-card {
    display: grid;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-content: space-between;
    height: 100%;
    min-height: 0;
    padding: 0 clamp(0.85rem, 1.35vw, 1.35rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}

.value-section .feature-card:not(:last-child) {
    border-right: 1px solid rgba(208, 216, 210, 0.95);
}

.feature-card h3 {
    margin-bottom: var(--space-xs);
    font-size: 1rem;
}

.value-section .feature-card h3 {
    max-width: 150px;
    margin-bottom: 0;
    color: #122136;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.18;
}

.value-section .feature-card p {
    max-width: 175px;
    margin-bottom: 0;
    color: #4f5f70;
    font-size: 0.73rem;
    line-height: 1.55;
}

.icon {
    display: inline-block;
    width: 38px;
    height: 38px;
    margin-bottom: var(--space-md);
    border-radius: 999px;
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
}

.value-section .icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.icon::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: 10px;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
}

.value-section .icon::after {
    content: none;
}

.value-section .icon-molecule::before {
    content: none;
}

.value-section .icon svg {
    display: block;
    width: 72px;
    height: 72px;
    color: var(--color-primary);
}

.icon-shield::after {
    border-radius: 999px 999px 6px 6px;
}

.icon-document::after {
    border-radius: 2px;
    border-top-width: 5px;
}

.icon-leaf::after {
    border-radius: 999px 2px 999px 2px;
    transform: rotate(-24deg);
}

.quality-banner,
.newsletter {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
    align-items: center;
    gap: var(--space-xl);
    padding-inline: clamp(1.25rem, 3vw, 3rem);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 82% 26%, rgba(47, 125, 70, 0.16), transparent 30%),
        linear-gradient(105deg, #ffffff, var(--color-secondary));
}

.quality-banner {
    grid-template-columns: minmax(360px, 0.7fr) minmax(0, 1.3fr);
    gap: 0;
    min-height: 410px;
    overflow: hidden;
    padding-block: clamp(2.4rem, 4vw, 4.1rem);
    padding-inline: clamp(2rem, 4vw, 4.4rem) 0;
    border-radius: 18px;
    background: linear-gradient(100deg, #f8fbf8 0%, #f7fbf7 36%, #edf6ef 68%, #e5f1e8 100%);
}

.quality-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(248, 251, 248, 0.98) 0%, rgba(248, 251, 248, 0.9) 31%, rgba(248, 251, 248, 0.22) 58%, rgba(248, 251, 248, 0) 78%);
    pointer-events: none;
}

.quality-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.quality-banner .eyebrow {
    margin-bottom: 0.7rem;
    color: #4f8d62;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
}

.quality-banner h2 {
    max-width: 560px;
    margin-bottom: 1rem;
    color: #142136;
    font-size: clamp(1.85rem, 2.1vw, 2.25rem);
    line-height: 1.08;
}

.quality-banner p {
    max-width: 410px;
    margin-bottom: 1.35rem;
    color: #405162;
    font-size: 0.92rem;
    line-height: 1.72;
}

.quality-banner .btn-primary {
    min-height: 47px;
    padding-inline: 1.35rem;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.78rem;
}

.quality-banner .btn-primary:visited,
.quality-banner .btn-primary:hover,
.quality-banner .btn-primary:focus {
    color: #ffffff;
}

.quality-media {
    position: absolute;
    inset: 0 0 0 34%;
    z-index: 0;
    pointer-events: none;
}

.quality-media img {
    position: absolute;
    inset: 0 0 0 auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.quality-badges {
    grid-column: 1 / -1;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.5rem, 1.3vw, 1.35rem);
    max-width: 650px;
    margin-top: 1.75rem;
}

.quality-badges span {
    justify-content: flex-start;
    min-height: 28px;
    padding: 0;
    gap: 0.55rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #253445;
    font-size: 0.77rem;
    font-weight: 750;
    text-align: left;
}

.quality-badges svg {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    color: #4b6554;
}

.center-heading {
    max-width: 760px;
    margin: 0 auto var(--space-xl);
    text-align: center;
}

/* Process */
.process-section .center-heading {
    margin-bottom: clamp(1.4rem, 2.4vw, 2.4rem);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    align-items: start;
    padding-block: clamp(1rem, 2.5vw, 2.25rem);
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 74px 148px minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
    min-height: 150px;
    padding: 0 clamp(0.6rem, 1.1vw, 1.15rem) 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 190px;
    right: 18px;
    border-top: 1px dotted rgba(31, 47, 68, 0.42);
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-top: 1px solid rgba(31, 47, 68, 0.58);
    border-right: 1px solid rgba(31, 47, 68, 0.58);
    transform: rotate(45deg);
}

.process-icon {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(222, 231, 225, 0.95);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(21, 34, 56, 0.1);
}

.process-icon svg {
    display: block;
    width: 29px;
    height: 29px;
}

.process-copy {
    position: absolute;
    top: 36px;
    left: 92px;
    width: 148px;
    padding-top: 0;
    transform: translateY(-50%);
}

.process-number {
    display: block;
    margin-bottom: 0.32rem;
    color: #142136;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
}

.process-step h3 {
    max-width: 140px;
    margin-bottom: 0;
    color: #142136;
    font-size: 0.82rem;
    font-weight: 850;
    line-height: 1.18;
}

.process-step p {
    position: absolute;
    top: 85px;
    left: 10px;
    width: 240px;
    max-width: 166px;
    margin: 0;
    color: #5f6d7a;
    font-size: 0.73rem;
    line-height: 1.55;
    text-align: left;
}

/* Newsletter and footer */
.newsletter {
    grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1.1fr);
    gap: 0;
    align-items: center;
    overflow: hidden;
    min-height: 360px;
    margin-top: clamp(1rem, 2vw, 2rem);
    padding: 0 clamp(2rem, 5vw, 5.5rem) 0 clamp(2rem, 5vw, 5.5rem);
    border-radius: 18px;
    background: linear-gradient(105deg, #eef8ef 0%, #f6fbf7 48%, #e4f1e7 100%);
}

.newsletter::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(236, 248, 238, 0.02) 0%, rgba(232, 246, 235, 0.18) 35%, rgba(245, 250, 246, 0.78) 60%, rgba(231, 243, 234, 0.9) 100%);
    pointer-events: none;
}

.newsletter-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    background: #e9f5ec;
    pointer-events: none;
}

.newsletter-media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
    object-position: center left;
    filter: saturate(1.18) contrast(1.08) brightness(0.98);
}

.newsletter-copy {
    position: relative;
    z-index: 2;
    left: 210px;
    grid-column: 2;
    max-width: 800px;
    padding-block: clamp(2rem, 4vw, 3.5rem);
}

.newsletter-copy .eyebrow {
    margin-bottom: 0.75rem;
    color: #2d6f43;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
}

.newsletter-copy h2 {
    max-width: 500px;
    margin-bottom: 1rem;
    color: #142136;
    font-size: clamp(2rem, 2.7vw, 2.9rem);
    line-height: 1.08;
}

.newsletter-copy p {
    max-width: 380px;
    margin-bottom: 0;
    color: #405162;
    font-size: 0.94rem;
    line-height: 1.65;
}

.flask {
    position: absolute;
    bottom: 0;
    border: 1px solid rgba(47, 125, 70, 0.3);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(47, 125, 70, 0.16));
    box-shadow: var(--shadow-soft);
}

.flask-large {
    left: 16%;
    width: 170px;
    height: 230px;
    border-radius: 18px 18px 42px 42px;
}

.flask-small {
    left: 48%;
    width: 110px;
    height: 170px;
    border-radius: 14px 14px 32px 32px;
}

.newsletter-molecule {
    right: 12%;
    top: 18%;
    scale: 0.88;
}

.newsletter-form,
.footer-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.newsletter-form {
    align-items: center;
    gap: 0.65rem;
    max-width: 600px;
    margin-top: 1.3rem;
}

.newsletter-form input,
.footer-form input {
    width: 100%;
    min-height: 44px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--color-text);
    font: inherit;
}

.newsletter-form input {
    min-height: 54px;
    border-color: rgba(220, 232, 224, 0.95);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    font-size: 0.86rem;
}

.newsletter-form button {
    flex: 0 0 auto;
    min-width: 150px;
    min-height: 54px;
    border-radius: 8px;
    background: #142136;
    color: #ffffff;
    box-shadow: none;
    font-size: 0.82rem;
}

.newsletter-form button:hover,
.newsletter-form button:focus {
    background: #0f1827;
    color: #ffffff;
}

.service-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 1.8rem;
    padding-bottom: var(--space-2xl);
}

.service-badges span {
    justify-content: center;
    min-height: 84px;
    gap: 0.95rem;
    padding: 0.9rem clamp(1rem, 2vw, 2rem);
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #142136;
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.25;
    text-align: left;
}

.service-badges span:not(:last-child) {
    border-right: 1px solid rgba(210, 220, 214, 0.9);
}

.service-badges svg {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 8px;
    border-radius: 999px;
    background: #eef6f0;
    color: var(--color-primary);
}

.site-footer {
    background: var(--color-footer);
    color: rgba(255, 255, 255, 0.86);
    /* width: calc(100% - 24px);
    max-width: var(--container-wide);
    margin-inline: auto; */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 0.8fr) 1.15fr;
    gap: var(--space-xl);
    width: 100%;
    max-width: none;
    padding-block: var(--space-2xl);
    padding-inline: 50px;
}

.footer-brand {
    margin-bottom: var(--space-md);
    color: #ffffff;
}

.footer-grid h2 {
    margin-bottom: var(--space-md);
    color: #ffffff;
    font-size: 0.98rem;
}

.footer-grid p {
    color: #ffffff;
    max-width: 350px;
    font-size: 13px;
}

.footer-grid a {
    display: block;
    margin-bottom: var(--space-xs);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-grid a:hover {
    color: #ffffff;
}

.footer-form button {
    min-width: 80px;
    border: 0;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--color-primary);
    font-weight: 850;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    width: 100%;
    max-width: none;
    padding-block: var(--space-lg);
    padding-inline: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

@media (max-width: 1100px) {
    .product-grid,
    .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-list {
        grid-template-columns: repeat(5, minmax(270px, 1fr));
        overflow-x: auto;
        padding-bottom: 0.75rem;
    }

    .value-section .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-self: stretch;
        width: 100%;
    }

    .value-section .feature-card {
        padding-block: 1.4rem;
    }

    .value-section .feature-card:nth-child(2n) {
        border-right: 0;
    }

    .value-section .feature-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(208, 216, 210, 0.95);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 68px;
        padding-inline: 16px;
    }

    .footer-grid,
    .footer-bottom {
        padding-inline: 16px;
    }

    .nav-toggle-label {
        display: grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid var(--color-border);
        border-radius: var(--radius-sm);
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--color-primary);
    }

    .nav-toggle-label span {
        position: relative;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .nav-toggle-label span::before {
        top: -6px;
    }

    .nav-toggle-label span::after {
        top: 6px;
    }

    .primary-nav,
    .header-icons {
        position: static;
        grid-column: 1 / -1;
        display: none;
        transform: none;
        width: 100%;
        justify-content: start;
    }

    .primary-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: var(--space-sm);
    }

    .primary-nav a {
        padding: var(--space-sm) 0;
        border-top: 1px solid var(--color-border);
    }

    .header-icons {
        gap: var(--space-sm);
        padding: var(--space-sm) 0;
        border-top: 1px solid var(--color-border);
    }

    .nav-toggle:checked ~ .primary-nav,
    .nav-toggle:checked ~ .header-icons {
        display: flex;
    }

    .hero,
    .quality-banner,
    .newsletter,
    .value-section,
    .section-heading {
        grid-template-columns: 1fr;
    }

    .hero {
        align-items: flex-start;
        min-height: 680px;
        padding: 56px 24px 36px;
        background-position: center right 18%;
        background-size: cover;
    }

    .hero::after {
        width: 100%;
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(255, 255, 255, 0.44) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(241, 249, 245, 0.76) 58%, rgba(241, 249, 245, 0.58) 100%),
            radial-gradient(circle at 46% 68%, rgba(226, 244, 235, 0.54), transparent 32%);
    }

    .hero-copy {
        width: min(100%, 560px);
    }

    .hero h1 {
        max-width: 520px;
        font-size: clamp(2.25rem, 8vw, 3.65rem);
    }

    .hero-text {
        max-width: 360px;
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .hero .trust-strip {
        width: min(100%, 560px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 28px;
        padding: 14px;
    }

    .hero .trust-strip span:nth-child(2n)::after {
        display: none;
    }

    .trust-strip,
    .quality-badges,
    .service-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quality-banner {
        min-height: 0;
        padding: 2rem;
    }

    .quality-banner::before {
        background: linear-gradient(180deg, rgba(248, 251, 248, 0.98) 0%, rgba(248, 251, 248, 0.88) 48%, rgba(248, 251, 248, 0.1) 100%);
    }

    .quality-media {
        position: relative;
        inset: auto;
        min-height: 250px;
    }

    .quality-media img {
        width: 100%;
        object-position: center right;
    }

    .quality-badges {
        max-width: none;
        margin-top: 0.5rem;
    }

    .section-heading {
        align-items: start;
    }

    .newsletter {
        gap: 0;
        padding: 0;
    }

    .newsletter::before {
        background: linear-gradient(180deg, rgba(236, 248, 238, 0.05) 0%, rgba(245, 250, 246, 0.72) 42%, rgba(231, 243, 234, 0.94) 100%);
    }

    .newsletter-media,
    .newsletter-media img {
        min-height: 280px;
    }

    .newsletter-copy {
        left: 0;
        grid-column: 1;
        max-width: none;
        padding: 2rem;
        margin-top: 220px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .site-header,
    .site-footer {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .site-footer {
        padding-inline: 0;
    }

    .section-pad,
    .service-badges {
        width: calc(100% - 24px);
        max-width: var(--container);
    }

    .section-pad {
        padding-block: var(--space-xl);
    }

    .hero h1 {
        max-width: 340px;
        font-size: clamp(1.82rem, 10vw, 2.35rem);
        line-height: 1.05;
    }

    .hero {
        min-height: 620px;
        padding: 28px 18px 28px;
        background-position: 68% top;
        background-size: auto 58%;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0.68) 28%, rgba(255, 255, 255, 0.98) 52%, rgba(244, 250, 247, 0.98) 100%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.4));
    }

    .hero-copy {
        padding-top: 0px;
    }

    #value-title {
        width: auto;
        max-width: 100%;
    }

    .hero-eyebrow {
        min-height: 26px;
        margin-bottom: 14px;
        padding: 4px 10px;
        font-size: 0.62rem;
    }

    .hero-text {
        max-width: 310px;
        margin-bottom: 22px;
        font-size: 0.94rem;
    }

    .hero .trust-strip {
        grid-template-columns: 1fr;
        margin-top: 24px;
        padding: 12px;
        gap: 10px;
    }

    .hero .trust-strip span {
        min-height: 40px;
    }

    .hero .trust-strip span::after {
        display: none;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .hero .btn-primary,
    .hero-learn {
        width: 100%;
        justify-content: center;
    }

    .hero-learn span {
        width: 38px;
        height: 38px;
    }

    .product-grid,
    .feature-grid,
    .trust-strip,
    .quality-badges,
    .service-badges,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-image,
    .product-image a {
        width: 100%;
        max-width: 100%;
        min-height: 220px;
    }

    .product-image {
        height: 220px;
        overflow: hidden;
    }

    .product-image a {
        height: 220px;
        max-height: 100%;
        min-width: 0;
        min-height: 0;
        padding: 22px;
    }

    .product-image img {
        display: block;
        min-width: 0;
        min-height: 0;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .process-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        overflow: visible;
    }

    .process-step {
        grid-template-columns: 58px minmax(0, 1fr);
        column-gap: 14px;
        min-height: 0;
        padding-right: 0;
    }

    .process-icon {
        width: 56px;
        height: 56px;
    }

    .process-icon svg {
        width: 24px;
        height: 24px;
    }

    .process-step:not(:last-child)::before {
        top: 58px;
        bottom: -1.15rem;
        left: 28px;
        right: auto;
        border-top: 0;
        border-left: 1px dotted rgba(31, 47, 68, 0.42);
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .process-copy {
        position: static;
        width: auto;
        padding-top: 2px;
        transform: none;
    }

    .process-step h3,
    .process-step p {
        max-width: none;
    }

    .process-step p {
        position: static;
        grid-column: 2;
        justify-self: start;
        margin-top: 0.45rem;
    }

    .process-step h3 {
        margin-bottom: 0;
    }

    .quality-banner {
        padding: 1.35rem;
        border-radius: 14px;
    }

    .quality-banner h2 {
        font-size: 1.72rem;
    }

    .quality-media {
        min-height: 190px;
    }

    .quality-badges {
        gap: 0.65rem;
    }

    .newsletter {
        display: grid;
        width: calc(100% - 32px);
        max-width: 390px;
        min-height: 0;
        margin-inline: auto;
        padding: 0;
        border-radius: 28px;
        background: #eef8ef;
        overflow: hidden;
    }

    .newsletter::before {
        content: none;
    }

    .newsletter-media {
        position: relative;
        inset: auto;
        display: block;
        width: 100%;
        min-height: 270px;
        background: #e9f5ec;
        pointer-events: none;
    }

    .newsletter-media img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center;
    }

    .newsletter-copy {
        left: 0;
        grid-column: 1;
        max-width: none;
        margin-top: 0;
        padding: 2.35rem 1.55rem 2.85rem;
        border-radius: 12px 12px 0 0;
        background: rgba(251, 255, 252, 0.88);
        text-align: center;
    }

    .newsletter-copy .eyebrow {
        margin-bottom: 0.9rem;
        color: #2f7d46;
        font-size: 0.67rem;
        font-weight: 850;
        letter-spacing: 0.08em;
    }

    .newsletter-copy h2 {
        max-width: 310px;
        margin-inline: auto;
        margin-bottom: 1rem;
        color: #152238;
        font-size: clamp(2rem, 10vw, 2.48rem);
        line-height: 1.1;
    }

    .newsletter-copy p {
        max-width: 280px;
        margin-inline: auto;
        color: #6c7a89;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .newsletter-form {
        width: 100%;
        max-width: 310px;
        margin: 1.45rem auto 0;
        gap: 1rem;
    }

    .newsletter-form input {
        min-height: 52px;
        border-color: rgba(16, 24, 40, 0.42);
        border-radius: 4px;
        background: #ffffff;
        font-size: 0.94rem;
    }

    .newsletter-form button {
        width: 100%;
        min-width: 0;
        min-height: 52px;
        border-radius: 5px;
        background: #142136;
        font-size: 0.94rem;
    }

    .service-badges span {
        justify-content: flex-start;
        min-height: 70px;
    }

    .service-badges span:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(210, 220, 214, 0.9);
    }

    .value-section .feature-grid {
        grid-template-columns: 1fr;
        justify-self: stretch;
        width: 100%;
        height: auto;
        padding: 1.2rem;
    }

    .value-section .feature-card,
    .value-section .feature-card:not(:last-child),
    .value-section .feature-card:nth-child(2n) {
        border-right: 0;
    }

    .value-section .feature-card:not(:last-child),
    .value-section .feature-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(208, 216, 210, 0.95);
    }

    .button-row,
    .newsletter-form,
    .footer-form {
        flex-direction: column;
    }

    .btn,
    .footer-form button {
        width: 100%;
    }
}


/* Search form */

body.search-modal-open {
  overflow: auto;
}

/* Chrome, Safari, Edge */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

/* iOS Safari */
input[type="search"] {
  -webkit-appearance: none;
}

.custom-search-loading {
  width: 20px;
  height: 20px;
  display: none;
  border: 2px solid rgba(15, 50, 88, 0.25);
  border-top-color: #0f3258;
  border-radius: 50%;
  animation: customSearchSpin 0.9s linear infinite;
  box-sizing: border-box;
}

@keyframes customSearchSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.search-highlight {
  color: var(--e-global-color-primary, #1f56ba);
  background: transparent;
  font-weight: 700;
}

.quick-search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  background: rgba(15, 23, 42, 0.28);
  cursor: pointer;
}

body.search-modal-open .quick-search-backdrop {
  display: block;
}

.quick-search-layer {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: none;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 150px;
  padding: clamp(2.8rem, 6vh, 4rem) 16px 0;
  background: #FFFFFF;
}

.quick-search-layer.is-open {
  display: flex;
}

.quick-search-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 1002;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.quick-search-dialog {
  position: relative;
  width: min(100%, 580px);
}

.custom-search-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.custom-search-form {
  position: relative;
  z-index: 2;
  margin: 0;
}

.custom-search-input-wrap {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: none;
  min-height: 56px;
  margin: 0;
  padding: 4px 4px 4px 20px;
  border-radius: 999px !important;
  background: #EEEEEE;
  box-sizing: border-box;
}

.custom-search-input-wrap.active {
  background: #EEEEEE;
  /* border-color: #050505; */
  border: 2px solid #050505;
}

.custom-search-input-wrap.has-search-action {
  grid-template-columns: 1fr 34px 44px;
}

.custom-search-input {
  width: 100% !important;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0 !important;
  outline: 0;
  background: transparent;
  color: #101827;
  font-size: 1rem;
  font-weight: 500;
}

.custom-search-input-clear,
.custom-search-input-icon {
  display: grid !important;
  place-items: center;
  flex-shrink: 0;
}

.custom-search-input-clear {
  display: none !important;
  width: 34px;
  height: 34px;
}

.custom-search-input-clear.is-loading {
  display: grid !important;
}

.custom-search-input-wrap.has-search-action .custom-search-input-clear {
  display: grid !important;
}

.custom-search-input-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-primary);
}

.custom-search-input-clear svg {
  width: 22px;
  height: 22px;
}

.custom-search-input-icon svg {
  width: 22px;
  height: 22px;
}

.custom-search-results {
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding-top: 48px;
  transform: none;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.search-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

li.search-item a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f5;
  color: #111827;
  transition: background-color 0.2s ease;
}

li.search-item a:hover {
  background-color: #f5f5f5;
}

.search-thumb {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #eef4f8;
}

.search-thumb img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.search-content {
  display: contents;
}

.search-content .title {
  color: #1f56ba;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.search-content .price {
  justify-self: end;
  color: #ff1f2d;
  font-size: 0.92rem;
  font-weight: 750;
}

.search-content .price del,
.search-content .price ins {
  display: block;
}

.search-content .price .woocommerce-Price-amount {
  color: #ff1f2d;
}

.search-see-all-link {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 20px;
  background: var(--e-global-color-primary, #1f56ba);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 850;
}

.search-see-all-link:hover,
.search-see-all-link:focus {
  background: #18479b;
  color: #ffffff;
}

.no-results {
  padding: 18px 20px;
  color: #5f6d7a;
  text-align: center;
}

@media (max-width: 560px) {
  li.search-item a {
    grid-template-columns: 40px 1fr;
  }

  .search-content .price {
    grid-column: 2;
    justify-self: start;
  }
}
