:root {
    --sv-burgundy: #7a1f2b;
    --sv-burgundy-dark: #54131c;
    --sv-ink: #222222;
    --sv-muted: #6a6662;
    --sv-line: #ded8d2;
    --sv-warm: #f7f3ef;
    --sv-paper: #fafaf8;
    --sv-white: #ffffff;
    --sv-serif: "Cormorant Garamond", Georgia, serif;
    --sv-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sv-shadow: 0 18px 45px rgba(47, 27, 22, 0.09);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--sv-paper);
    color: var(--sv-ink);
    font-family: var(--sv-sans);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body * {
    border-color: var(--sv-line);
}

::selection {
    background: rgba(122, 31, 43, 0.16);
}

a,
button,
input,
select,
textarea,
summary {
    outline-color: var(--sv-burgundy);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--sv-burgundy) !important;
    outline-offset: 3px !important;
}

input,
select,
textarea {
    border-color: var(--sv-line) !important;
    border-radius: 2px !important;
    font-family: var(--sv-sans);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--sv-burgundy) !important;
}

#main {
    min-height: 55vh;
    background: var(--sv-paper);
}

.container {
    max-width: 1440px !important;
}

.skip-to-main-content-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-160%);
    background: var(--sv-ink);
    color: white;
    padding: 10px 16px;
}

.skip-to-main-content-link:focus {
    transform: translateY(0);
}

.sv-announcement {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    background: var(--sv-burgundy-dark);
    color: white;
    text-align: center;
}

.sv-announcement p {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sv-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(84, 19, 28, 0.12);
    background: rgba(250, 250, 248, 0.97);
}

.sv-gallery-modal {
    z-index: 100;
}

.sv-gallery-close {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    z-index: 110;
    display: inline-flex;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid var(--sv-burgundy);
    border-radius: 999px;
    align-items: center;
    gap: 8px;
    background: var(--sv-burgundy);
    color: white;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    box-shadow: var(--sv-shadow);
}

.sv-gallery-close:hover {
    background: var(--sv-burgundy-dark);
}

.sv-gallery-close:focus-visible {
    outline: 3px solid white;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px var(--sv-burgundy);
}

.sv-gallery-close .icon-cancel {
    font-size: 18px;
}

body > form[toolname] {
    display: none !important;
}

.sv-header__inner {
    display: grid;
    min-height: 82px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 52px;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
}

.sv-brand {
    display: inline-flex;
    align-items: center;
}

.sv-brand img {
    display: block;
    width: 190px;
    height: auto;
}

.sv-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
}

.sv-main-nav > a,
.sv-desktop-category-menu > summary,
.sv-header-actions a,
.sv-search-popover summary {
    color: var(--sv-ink);
    transition: color 160ms ease;
}

.sv-main-nav > a,
.sv-desktop-category-menu > summary {
    position: relative;
    padding: 30px 0 27px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.sv-main-nav > a::after,
.sv-desktop-category-menu > summary::after {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 1px;
    background: var(--sv-burgundy);
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
}

.sv-main-nav > a:hover,
.sv-desktop-category-menu > summary:hover,
.sv-header-actions a:hover,
.sv-search-popover summary:hover {
    color: var(--sv-burgundy);
}

.sv-main-nav > a:hover::after,
.sv-main-nav > a:focus-visible::after,
.sv-desktop-category-menu:hover > summary::after,
.sv-desktop-category-menu:focus-within > summary::after,
.sv-desktop-category-menu[open] > summary::after {
    transform: scaleX(1);
}

.sv-desktop-category-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sv-desktop-category-menu > summary {
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.sv-desktop-category-menu > summary::-webkit-details-marker {
    display: none;
}

.sv-desktop-category-menu > summary svg {
    color: var(--sv-muted);
    transition: color 160ms ease, transform 160ms ease;
}

.sv-desktop-category-menu:hover > summary svg,
.sv-desktop-category-menu:focus-within > summary svg,
.sv-desktop-category-menu[open] > summary svg {
    color: var(--sv-burgundy);
    transform: rotate(180deg);
}

.sv-desktop-category-menu__panel {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 100;
    width: 440px;
    padding: 12px;
    border: 1px solid var(--sv-line);
    border-radius: 10px;
    background: var(--sv-paper);
    box-shadow: var(--sv-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    visibility: hidden;
}

.sv-desktop-category-menu:hover .sv-desktop-category-menu__panel,
.sv-desktop-category-menu:focus-within .sv-desktop-category-menu__panel,
.sv-desktop-category-menu[open] .sv-desktop-category-menu__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.sv-desktop-category-menu__all,
.sv-desktop-category-menu__grid a {
    display: flex;
    color: var(--sv-ink);
    text-decoration: none;
}

.sv-desktop-category-menu__all {
    padding: 10px;
    border: 1px solid var(--sv-line);
    border-radius: 7px;
    align-items: center;
    gap: 10px;
}

.sv-desktop-category-menu__all:hover,
.sv-desktop-category-menu__all:focus-visible,
.sv-desktop-category-menu__grid a:hover,
.sv-desktop-category-menu__grid a:focus-visible {
    background: var(--sv-warm);
    color: var(--sv-burgundy);
}

.sv-desktop-category-menu__all span:last-child {
    display: grid;
    gap: 2px;
}

.sv-desktop-category-menu__all strong {
    font-size: 12px;
    font-weight: 600;
}

.sv-desktop-category-menu__all small {
    color: var(--sv-muted);
    font-size: 10px;
}

.sv-desktop-category-menu__grid {
    display: grid;
    margin-top: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 8px;
}

.sv-desktop-category-menu__grid a {
    min-height: 40px;
    padding: 7px 8px;
    border-radius: 6px;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 500;
}

.sv-desktop-category-menu__icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border: 1px solid var(--sv-line);
    border-radius: 7px;
    color: var(--sv-burgundy);
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.sv-desktop-category-menu__icon svg {
    width: 15px;
    height: 15px;
}

.sv-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.sv-locale-switcher {
    display: inline-flex;
    padding: 3px;
    border: 1px solid var(--sv-line);
    border-radius: 999px;
    align-items: center;
    gap: 2px;
}

.sv-locale-switcher a {
    display: inline-grid;
    min-width: 34px;
    min-height: 34px;
    border-radius: 999px;
    color: var(--sv-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    place-items: center;
}

.sv-locale-switcher a[aria-current="true"] {
    background: var(--sv-burgundy);
    color: white;
}

.sv-locale-switcher a:hover {
    color: var(--sv-burgundy);
}

.sv-locale-switcher a[aria-current="true"]:hover {
    color: white;
}

.sv-locale-switcher a:focus-visible {
    outline: 2px solid var(--sv-burgundy);
    outline-offset: 2px;
}

.sv-locale-switcher--mobile {
    display: none;
}

.sv-header-actions > a,
.sv-search-popover > summary,
.sv-mini-cart > v-mini-cart > span,
.sv-mini-cart [role="button"] {
    display: inline-flex;
    min-width: 36px;
    min-height: 40px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    list-style: none;
}

.sv-search-popover {
    position: relative;
}

.sv-search-popover summary::-webkit-details-marker,
.sv-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.sv-search-popover form {
    position: absolute;
    top: calc(100% + 22px);
    right: -82px;
    width: min(460px, calc(100vw - 32px));
    padding: 24px;
    border: 1px solid var(--sv-line);
    background: var(--sv-white);
    box-shadow: var(--sv-shadow);
}

.sv-search-popover form label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--sv-serif);
    font-size: 25px;
    font-weight: 600;
}

.sv-search-popover form div {
    display: flex;
}

.sv-search-popover input {
    min-width: 0;
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--sv-line);
}

.sv-search-popover button {
    padding: 12px 20px;
    background: var(--sv-burgundy);
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.sv-mobile-menu,
.sv-mobile-search {
    display: none;
}

.sv-catalog-categories {
    width: 100%;
    max-width: 1440px;
    min-width: 0;
    margin: 28px auto 20px;
    padding: 0 60px;
    box-sizing: border-box;
}

.sv-catalog-categories__heading {
    margin-bottom: 14px;
}

.sv-catalog-categories__heading h2 {
    margin: 0;
    color: var(--sv-ink);
    font-family: var(--sv-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.sv-catalog-categories__heading p {
    margin-top: 2px;
    color: var(--sv-muted);
    font-size: 12px;
}

.sv-catalog-categories__scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-color: var(--sv-line) transparent;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.sv-catalog-categories__scroll::-webkit-scrollbar {
    height: 4px;
}

.sv-catalog-categories__scroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--sv-line);
}

.sv-catalog-categories__list {
    display: flex;
    width: max-content;
    min-width: 100%;
    gap: 12px;
}

.sv-catalog-category {
    display: flex;
    width: 104px;
    padding: 11px 8px 10px;
    border: 1px solid var(--sv-line);
    border-radius: 10px;
    background: var(--sv-paper);
    color: var(--sv-ink);
    align-items: center;
    flex: 0 0 104px;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sv-catalog-category:hover,
.sv-catalog-category:focus-visible {
    border-color: var(--sv-burgundy);
    box-shadow: 0 4px 14px rgba(122, 31, 43, 0.08);
    color: var(--sv-burgundy);
    transform: translateY(-2px);
}

.sv-catalog-category--active {
    border-color: var(--sv-burgundy);
    background: var(--sv-warm);
    box-shadow: 0 3px 10px rgba(122, 31, 43, 0.1);
    color: var(--sv-burgundy);
}

.sv-catalog-category__pictogram {
    display: flex;
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
    border: 1px solid var(--sv-line);
    border-radius: 50%;
    background: var(--sv-warm);
    color: var(--sv-burgundy);
    align-items: center;
    justify-content: center;
}

.sv-catalog-category__pictogram svg {
    width: 24px;
    height: 24px;
}

.sv-catalog-category__name {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sv-hero {
    display: grid;
    min-height: min(720px, calc(100vh - 116px));
    max-width: 1600px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    background: var(--sv-warm);
}

.sv-hero__content {
    display: flex;
    max-width: 700px;
    padding: clamp(72px, 8vw, 130px) 50px clamp(72px, 8vw, 130px) clamp(32px, 7vw, 112px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.sv-eyebrow {
    color: var(--sv-burgundy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.sv-hero h1 {
    margin-top: 22px;
    font-family: var(--sv-serif);
    font-size: clamp(62px, 6.7vw, 106px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.84;
}

.sv-hero__intro {
    max-width: 560px;
    margin-top: 34px;
    color: var(--sv-muted);
    font-size: 16px;
    line-height: 1.75;
}

.sv-hero__actions {
    display: flex;
    margin-top: 38px;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.sv-button,
.primary-button,
.secondary-button {
    border-radius: 2px !important;
    font-family: var(--sv-sans) !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.sv-button {
    display: inline-flex;
    min-height: 48px;
    padding: 13px 26px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.sv-button--primary,
.primary-button {
    border-color: var(--sv-burgundy) !important;
    background: var(--sv-burgundy) !important;
    color: white !important;
}

.sv-button--primary:hover,
.primary-button:hover {
    background: var(--sv-burgundy-dark) !important;
}

.secondary-button {
    border-color: var(--sv-burgundy) !important;
    background: transparent !important;
    color: var(--sv-burgundy) !important;
}

.secondary-button:hover {
    background: var(--sv-burgundy) !important;
    color: white !important;
}

.sv-text-link {
    display: inline-flex;
    padding: 8px 0;
    border-bottom: 1px solid rgba(122, 31, 43, 0.45);
    color: var(--sv-burgundy);
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
}

.sv-hero__art {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(84, 19, 28, 0.94), rgba(122, 31, 43, 0.78)),
        repeating-linear-gradient(42deg, transparent 0 23px, rgba(255,255,255,.04) 24px 25px);
}

.sv-hero__art::before,
.sv-hero__art::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    content: "";
}

.sv-hero__art::before {
    width: 560px;
    height: 560px;
    top: -210px;
    right: -210px;
}

.sv-hero__art::after {
    width: 360px;
    height: 360px;
    bottom: -200px;
    left: -140px;
}

.sv-hero__paper {
    position: absolute;
    width: clamp(230px, 25vw, 360px);
    aspect-ratio: 0.72;
    box-shadow: 0 35px 70px rgba(31, 8, 12, 0.28);
}

.sv-hero__paper--back {
    top: 13%;
    left: 13%;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    transform: rotate(-10deg);
}

.sv-hero__paper--front {
    top: 15%;
    right: 12%;
    z-index: 2;
    display: flex;
    padding: 9%;
    background: #eee7df;
    color: var(--sv-burgundy-dark);
    flex-direction: column;
    transform: rotate(4deg);
}

.sv-hero__paper--front::before {
    position: absolute;
    inset: 4.5%;
    border: 1px solid rgba(84, 19, 28, 0.24);
    content: "";
}

.sv-hero__paper--front span {
    z-index: 1;
    font-family: var(--sv-serif);
    font-size: clamp(16px, 1.8vw, 26px);
    letter-spacing: 0.13em;
}

.sv-hero__paper--front strong {
    z-index: 1;
    margin: auto 0;
    font-family: var(--sv-serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.75;
}

.sv-hero__paper--front i {
    z-index: 1;
    align-self: flex-end;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.sv-hero__art svg {
    position: absolute;
    right: 28%;
    bottom: -18%;
    z-index: 3;
    width: min(48%, 390px);
    fill: none;
    opacity: 0.45;
    stroke: white;
    stroke-width: 1.2;
}

.sv-benefits {
    display: grid;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 52px;
    border-bottom: 1px solid var(--sv-line);
    grid-template-columns: repeat(3, 1fr);
}

.sv-benefits article {
    display: grid;
    padding: 8px 38px;
    grid-template-columns: auto 1fr;
    gap: 18px;
}

.sv-benefits article + article {
    border-left: 1px solid var(--sv-line);
}

.sv-benefits article > span {
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 20px;
}

.sv-benefits h2 {
    font-family: var(--sv-serif);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.1;
}

.sv-benefits p {
    margin-top: 7px;
    color: var(--sv-muted);
    font-size: 12px;
    line-height: 1.55;
}

.sv-home-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(76px, 8vw, 120px) 52px 0;
}

.sv-home-section--categories {
    padding-top: 80px;
}

.sv-home-categories__heading {
    align-items: flex-end;
}

.sv-home-categories__heading > p {
    max-width: 340px;
    padding-bottom: 4px;
    color: var(--sv-muted);
    font-size: 13px;
    line-height: 1.6;
}

.sv-home-categories__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.sv-home-category-card {
    position: relative;
    display: flex;
    min-height: 182px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--sv-line);
    background: var(--sv-paper);
    box-sizing: border-box;
    color: var(--sv-ink);
    flex-direction: column;
    isolation: isolate;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.sv-home-category-card::before {
    position: absolute;
    top: -46px;
    right: -38px;
    z-index: -1;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(122, 31, 43, .08);
    border-radius: 50%;
    content: "";
}

.sv-home-category-card:hover,
.sv-home-category-card:focus-visible {
    border-color: var(--sv-burgundy);
    box-shadow: 0 12px 28px rgba(47, 27, 22, .08);
    color: var(--sv-burgundy);
    transform: translateY(-3px);
}

.sv-home-category-card__art {
    display: flex;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(122, 31, 43, .18);
    border-radius: 50%;
    background: var(--sv-warm);
    color: var(--sv-burgundy);
    align-items: center;
    justify-content: center;
}

.sv-home-category-card__icon {
    display: block;
    width: 31px;
    height: 31px;
}

.sv-home-category-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.sv-home-category-card__content {
    display: flex;
    margin-top: auto;
    padding-top: 24px;
    padding-right: 28px;
    flex-direction: column;
}

.sv-home-category-card__content strong {
    font-family: var(--sv-serif);
    font-size: clamp(22px, 1.8vw, 27px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1;
}

.sv-home-category-card__content small {
    margin-top: 6px;
    color: rgba(255,255,255,.72);
    font-size: 10px;
    line-height: 1.35;
}

.sv-home-category-card__arrow {
    position: absolute;
    right: 22px;
    bottom: 21px;
    opacity: 0;
    font-size: 18px;
    transform: translateX(-5px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.sv-home-category-card:hover .sv-home-category-card__arrow,
.sv-home-category-card:focus-visible .sv-home-category-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.sv-home-category-card--all {
    border-color: var(--sv-burgundy);
    background: var(--sv-burgundy);
    color: var(--sv-white);
}

.sv-home-category-card--all::before {
    border-color: rgba(255,255,255,.16);
}

.sv-home-category-card--all .sv-home-category-card__art {
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    color: var(--sv-white);
}

.sv-home-category-card--all:hover,
.sv-home-category-card--all:focus-visible {
    background: var(--sv-burgundy-dark);
    color: var(--sv-white);
}

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

.sv-section-heading h2,
.sv-process h2 {
    margin-top: 6px;
    font-family: var(--sv-serif);
    font-size: clamp(44px, 4.8vw, 68px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1;
}

.sv-section-heading > a {
    display: inline-flex;
    padding: 8px 0;
    border-bottom: 1px solid var(--sv-line);
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.sv-home-section > [class*="container"] {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.sv-home-section > div > h2:empty,
.sv-home-section > h2:empty {
    display: none;
}

.sv-editorial-grid {
    display: grid;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(76px, 8vw, 120px) 52px 0;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: repeat(2, minmax(250px, 1fr));
    gap: 18px;
}

.sv-editorial-card {
    position: relative;
    display: flex;
    min-height: 270px;
    overflow: hidden;
    padding: clamp(30px, 5vw, 68px);
    color: var(--sv-ink);
    flex-direction: column;
    justify-content: flex-end;
    isolation: isolate;
}

.sv-editorial-card::before,
.sv-editorial-card::after {
    position: absolute;
    z-index: -1;
    content: "";
}

.sv-editorial-card::before {
    inset: 0;
    transition: transform 400ms ease;
}

.sv-editorial-card:hover::before {
    transform: scale(1.035);
}

.sv-editorial-card--large {
    min-height: 538px;
    color: white;
    grid-row: 1 / 3;
}

.sv-editorial-card--large::before {
    background:
        radial-gradient(circle at 75% 28%, transparent 0 115px, rgba(255,255,255,.16) 116px 117px, transparent 118px),
        linear-gradient(135deg, #3c0c14, #7a1f2b 72%, #9b515a);
}

.sv-editorial-card--large::after {
    top: 13%;
    right: 8%;
    width: 36%;
    aspect-ratio: .72;
    border: 1px solid rgba(255,255,255,.35);
    background: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 2px, transparent 2px 15px);
    transform: rotate(7deg);
}

.sv-editorial-card--bundle::before {
    background:
        linear-gradient(90deg, rgba(247,243,239,.93), rgba(247,243,239,.64)),
        repeating-linear-gradient(90deg, #e7ded4 0 1px, transparent 1px 32px);
}

.sv-editorial-card--beginner::before {
    background:
        radial-gradient(circle at 80% 18%, rgba(122,31,43,.12) 0 75px, transparent 76px),
        #e9e2da;
}

.sv-editorial-card > span {
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.sv-editorial-card h2 {
    max-width: 520px;
    font-family: var(--sv-serif);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .95;
}

.sv-editorial-card:not(.sv-editorial-card--large) h2 {
    font-size: clamp(34px, 3vw, 48px);
}

.sv-editorial-card p {
    max-width: 440px;
    margin-top: 18px;
    color: rgba(255,255,255,.75);
}

.sv-editorial-card strong {
    display: inline-flex;
    margin-top: 24px;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 600;
}

.sv-editorial-card strong i {
    font-style: normal;
}

.sv-process {
    display: grid;
    max-width: 1440px;
    margin: clamp(90px, 10vw, 150px) auto 0;
    padding: clamp(60px, 7vw, 100px) 52px;
    background: var(--sv-warm);
    grid-template-columns: .8fr 1.4fr;
    gap: clamp(50px, 8vw, 120px);
}

.sv-process ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sv-process li {
    border-top: 1px solid var(--sv-burgundy);
    padding-top: 18px;
}

.sv-process li > span {
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 28px;
}

.sv-process h3 {
    margin-top: 30px;
    font-family: var(--sv-serif);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.05;
}

.sv-process li p {
    margin-top: 12px;
    color: var(--sv-muted);
    font-size: 12px;
}

/* Bagisto catalog and product components */
.font-dmserif,
h1.font-dmserif,
h2.font-dmserif {
    font-family: var(--sv-serif) !important;
}

.text-navyBlue {
    color: var(--sv-burgundy) !important;
}

.bg-navyBlue {
    background-color: var(--sv-burgundy) !important;
}

.bg-lightOrange {
    background-color: var(--sv-warm) !important;
}

v-product-card > div {
    border-radius: 0 !important;
    box-shadow: none !important;
}

v-product-card > div > div:first-child {
    max-width: none !important;
    max-height: none !important;
    border-radius: 0 !important;
    aspect-ratio: 4 / 5;
    background: #eeeae6;
}

v-product-card > div > div:first-child a,
v-product-card > div > div:first-child .group-hover\:scale-105 {
    display: block;
    width: 100%;
    height: 100%;
}

v-product-card > div > div:first-child img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

v-product-card > div > div:nth-child(2) {
    max-width: none !important;
    margin-top: 0 !important;
    padding: 14px 0 !important;
    background: transparent !important;
    transform: none !important;
}

v-product-card > div > div:nth-child(2) p:first-of-type {
    font-family: var(--sv-serif);
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
}

v-product-card .action-items {
    opacity: 1;
}

v-product-card .secondary-button {
    min-height: 42px;
}

.sv-product-size-guide {
    display: flex;
    max-width: 590px;
    margin-top: 22px;
    padding: 15px 0;
    border-top: 1px solid var(--sv-line);
    border-bottom: 1px solid var(--sv-line);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sv-product-size-guide > div > span {
    color: var(--sv-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sv-product-size-guide p {
    margin-top: 3px;
    color: var(--sv-ink);
    font-family: var(--sv-serif);
    font-size: 18px;
    line-height: 1.25;
}

.sv-product-size-guide > a {
    display: inline-flex;
    color: var(--sv-burgundy);
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.sv-product-size-guide > a span {
    transition: transform .2s ease;
}

.sv-product-size-guide > a:hover span {
    transform: translateX(3px);
}

.sv-digital-notice {
    display: grid;
    max-width: 590px;
    margin-top: 22px;
    padding: 16px 18px;
    border: 1px solid rgba(122, 31, 43, .24);
    background: rgba(122, 31, 43, .045);
    grid-template-columns: auto 1fr;
    gap: 14px;
}

.sv-digital-notice > span {
    margin-top: 3px;
    color: var(--sv-burgundy);
    font-size: 22px;
}

.sv-digital-notice strong {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sv-digital-notice p {
    margin-top: 2px;
    color: var(--sv-muted);
    font-size: 12px;
}

.sv-site-services {
    display: grid;
    max-width: 1336px;
    margin: 110px auto 0;
    padding: 34px 0;
    border-top: 1px solid var(--sv-line);
    border-bottom: 1px solid var(--sv-line);
    grid-template-columns: repeat(3, 1fr);
}

.sv-site-services > div {
    display: grid;
    padding: 0 40px;
    grid-template-columns: auto 1fr;
    gap: 16px;
}

.sv-site-services > div + div {
    border-left: 1px solid var(--sv-line);
}

.sv-site-services > div > span {
    margin-top: 4px;
    color: var(--sv-burgundy);
    font-size: 25px;
}

.sv-site-services strong {
    font-family: var(--sv-serif);
    font-size: 21px;
    font-weight: 600;
}

.sv-site-services p {
    margin-top: 3px;
    color: var(--sv-muted);
    font-size: 11px;
}

.sv-help-hero {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(75px, 9vw, 130px) 52px 70px;
    border-bottom: 1px solid var(--sv-line);
}

.sv-help-hero h1 {
    margin-top: 12px;
    font-family: var(--sv-serif);
    font-size: clamp(64px, 8vw, 112px);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: .85;
}

.sv-help-hero > p:last-child {
    max-width: 590px;
    margin-top: 30px;
    color: var(--sv-muted);
    font-size: 16px;
}

.sv-help-layout {
    display: grid;
    max-width: 1220px;
    margin: 0 auto;
    padding: 75px 52px 30px;
    grid-template-columns: 220px 1fr;
    gap: 100px;
}

.sv-help-layout > nav {
    position: sticky;
    top: 120px;
    display: flex;
    height: max-content;
    padding-top: 10px;
    flex-direction: column;
}

.sv-help-layout > nav strong {
    margin-bottom: 14px;
    color: var(--sv-burgundy);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sv-help-layout > nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--sv-line);
    color: var(--sv-muted);
    font-size: 12px;
}

.sv-help-content section {
    position: relative;
    padding: 5px 0 64px 70px;
    scroll-margin-top: 130px;
}

.sv-help-content section + section {
    padding-top: 64px;
    border-top: 1px solid var(--sv-line);
}

.sv-help-content section > span {
    position: absolute;
    top: 13px;
    left: 0;
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 24px;
}

.sv-help-content section + section > span {
    top: 72px;
}

.sv-help-content h2 {
    font-family: var(--sv-serif);
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;
    letter-spacing: -.03em;
    line-height: 1;
}

.sv-help-content section > p {
    max-width: 700px;
    margin-top: 22px;
    color: var(--sv-muted);
    line-height: 1.85;
}

.sv-help-actions {
    display: flex;
    margin-top: 30px;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.sv-help-content section > .sv-text-link {
    display: inline-flex;
    margin-top: 24px;
}

/* Size guide */
.sv-size-guide {
    overflow: hidden;
}

.sv-size-guide-hero {
    display: grid;
    min-height: 680px;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--sv-warm);
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
}

.sv-size-guide-hero__content {
    display: flex;
    max-width: 790px;
    padding: clamp(76px, 9vw, 138px) clamp(38px, 6vw, 90px) clamp(70px, 8vw, 120px) clamp(32px, 7vw, 112px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.sv-size-guide-hero h1 {
    margin-top: 18px;
    font-family: var(--sv-serif);
    font-size: clamp(70px, 7.5vw, 116px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .82;
}

.sv-size-guide-hero__content > p:last-child {
    max-width: 620px;
    margin-top: 38px;
    color: var(--sv-muted);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.72;
}

.sv-size-guide-hero__art {
    position: relative;
    display: grid;
    min-height: 680px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 15%, rgba(255, 255, 255, .12) 0 105px, transparent 106px),
        linear-gradient(145deg, var(--sv-burgundy-dark), var(--sv-burgundy));
    color: white;
    place-items: center;
}

.sv-size-guide-hero__art::before,
.sv-size-guide-hero__art::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    content: "";
}

.sv-size-guide-hero__art::before {
    top: -160px;
    right: -180px;
    width: 460px;
    height: 460px;
}

.sv-size-guide-hero__art::after {
    bottom: -210px;
    left: -170px;
    width: 430px;
    height: 430px;
}

.sv-size-guide-hero__art svg {
    z-index: 1;
    width: min(82%, 560px);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sv-size-guide-art__stand,
.sv-size-guide-art__body,
.sv-size-guide-art__seam {
    stroke: rgba(255, 255, 255, .76);
    stroke-width: 1.35;
}

.sv-size-guide-art__measure {
    stroke: rgba(255, 255, 255, .92);
    stroke-dasharray: 5 7;
    stroke-width: 1.6;
}

.sv-size-guide-art__guide,
.sv-size-guide-art__tape {
    stroke: rgba(255, 255, 255, .45);
    stroke-width: 1;
}

.sv-size-guide-hero__art-label {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: 38px;
    color: rgba(255, 255, 255, .74);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.sv-size-guide-hero__label {
    position: absolute;
    z-index: 2;
    left: 8%;
    color: rgba(255, 255, 255, .84);
    font-family: var(--sv-serif);
    font-size: 15px;
    letter-spacing: .04em;
}

.sv-size-guide-hero__label--bust {
    top: 32%;
}

.sv-size-guide-hero__label--waist {
    top: 46%;
}

.sv-size-guide-hero__label--hip {
    top: 61%;
}

.sv-size-guide-hero__number {
    position: absolute;
    z-index: 2;
    right: 7%;
    color: rgba(255, 255, 255, .44);
    font-family: var(--sv-serif);
    font-size: 18px;
}

.sv-size-guide-hero__number--one {
    top: 31.5%;
}

.sv-size-guide-hero__number--two {
    top: 45.5%;
}

.sv-size-guide-hero__number--three {
    top: 60.5%;
}

.sv-size-guide__body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 110px 52px 130px;
}

.sv-size-guide-section + .sv-size-guide-section {
    margin-top: 120px;
    padding-top: 110px;
    border-top: 1px solid var(--sv-line);
}

.sv-size-guide-section__heading {
    display: grid;
    max-width: 980px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 28px;
}

.sv-size-guide-section__heading > span {
    padding-top: 29px;
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 24px;
}

.sv-size-guide-section__heading h2 {
    max-width: 900px;
    margin-top: 12px;
    font-family: var(--sv-serif);
    font-size: clamp(44px, 5.3vw, 72px);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: .98;
}

.sv-size-guide-section__intro {
    max-width: 780px;
    margin: 34px 0 0 86px;
    color: var(--sv-muted);
    font-size: 16px;
    line-height: 1.8;
}

.sv-size-chart {
    margin-top: 52px;
    overflow-x: auto;
    border: 1px solid var(--sv-line);
    background: white;
    box-shadow: var(--sv-shadow);
}

.sv-size-chart:focus-visible {
    outline: 2px solid var(--sv-burgundy);
    outline-offset: 4px;
}

.sv-size-chart table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.sv-size-chart th,
.sv-size-chart td {
    padding: 23px 28px;
    border-bottom: 1px solid var(--sv-line);
    text-align: left;
}

.sv-size-chart thead th {
    background: var(--sv-burgundy);
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sv-size-chart tbody th {
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 22px;
    font-weight: 600;
}

.sv-size-chart tbody td {
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.sv-size-chart tbody td span {
    color: var(--sv-muted);
}

.sv-size-chart tbody tr:last-child th,
.sv-size-chart tbody tr:last-child td {
    border-bottom: 0;
}

.sv-size-chart tbody tr:nth-child(even) {
    background: var(--sv-warm);
}

.sv-measurement-cards {
    display: grid;
    margin: 58px 0 0 86px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--sv-line);
    border: 1px solid var(--sv-line);
}

.sv-measurement-cards article {
    min-height: 280px;
    padding: 38px;
    background: var(--sv-paper);
}

.sv-measurement-cards article > span {
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 20px;
}

.sv-measurement-cards h3 {
    margin-top: 48px;
    font-family: var(--sv-serif);
    font-size: 38px;
    font-weight: 500;
}

.sv-measurement-cards p {
    margin-top: 16px;
    color: var(--sv-muted);
    line-height: 1.75;
}

.sv-size-choice {
    display: grid;
    margin: 58px 0 0 86px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.sv-size-choice article {
    padding-top: 24px;
    border-top: 2px solid var(--sv-burgundy);
}

.sv-size-choice h3 {
    font-family: var(--sv-serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
}

.sv-size-choice p {
    margin-top: 16px;
    color: var(--sv-muted);
    line-height: 1.75;
}

.sv-size-guide-help {
    display: flex;
    margin-top: 120px;
    padding: 62px 72px;
    background: var(--sv-warm);
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.sv-size-guide-help > div {
    max-width: 760px;
}

.sv-size-guide-help h2 {
    margin-top: 12px;
    font-family: var(--sv-serif);
    font-size: clamp(42px, 4.7vw, 64px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1;
}

.sv-size-guide-help > div > p:last-child {
    max-width: 690px;
    margin-top: 22px;
    color: var(--sv-muted);
    line-height: 1.75;
}

.sv-size-guide-help .sv-button {
    flex: 0 0 auto;
}

/* About story */
.sv-about {
    overflow: hidden;
}

.sv-about-hero {
    display: grid;
    min-height: 680px;
    max-width: 1600px;
    margin: 0 auto;
    background: var(--sv-warm);
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
}

.sv-about-hero__content {
    display: flex;
    max-width: 790px;
    padding: clamp(76px, 9vw, 138px) clamp(38px, 6vw, 90px) clamp(70px, 8vw, 120px) clamp(32px, 7vw, 112px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.sv-about-hero h1 {
    margin-top: 18px;
    font-family: var(--sv-serif);
    font-size: clamp(74px, 8.2vw, 126px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .82;
}

.sv-about-hero__intro {
    max-width: 650px;
    margin-top: 40px;
}

.sv-about-hero__intro p {
    color: var(--sv-muted);
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.72;
}

.sv-about-hero__intro p:first-child {
    color: var(--sv-ink);
    font-family: var(--sv-serif);
    font-size: clamp(25px, 2.4vw, 34px);
    font-weight: 500;
    letter-spacing: -.018em;
    line-height: 1.2;
}

.sv-about-hero__intro p + p {
    margin-top: 22px;
}

.sv-about-hero__details {
    display: grid;
    width: 100%;
    max-width: 650px;
    margin-top: 46px;
    padding-top: 20px;
    border-top: 1px solid var(--sv-line);
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sv-about-hero__details div {
    display: flex;
    flex-direction: column;
}

.sv-about-hero__details dt {
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
}

.sv-about-hero__details dd {
    margin-top: 7px;
    color: var(--sv-muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.sv-about-hero__art {
    position: relative;
    display: grid;
    min-height: 680px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 15%, rgba(255, 255, 255, .12) 0 105px, transparent 106px),
        linear-gradient(145deg, var(--sv-burgundy-dark), var(--sv-burgundy));
    color: white;
    place-items: center;
}

.sv-about-hero__art::before,
.sv-about-hero__art::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
    content: "";
}

.sv-about-hero__art::before {
    top: -160px;
    right: -180px;
    width: 460px;
    height: 460px;
}

.sv-about-hero__art::after {
    bottom: -210px;
    left: -170px;
    width: 430px;
    height: 430px;
}

.sv-about-hero__art svg {
    z-index: 1;
    width: min(76%, 510px);
    fill: none;
    stroke: rgba(255, 255, 255, .78);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

.sv-about-art__paper {
    fill: rgba(255, 255, 255, .06);
    stroke: rgba(255, 255, 255, .42);
}

.sv-about-art__fold,
.sv-about-art__detail,
.sv-about-art__measure {
    stroke: rgba(255, 255, 255, .34);
}

.sv-about-art__grain {
    stroke-dasharray: 5 7;
}

.sv-about-art__pattern {
    stroke-width: 1.8;
}

.sv-about-hero__art-label {
    position: absolute;
    top: 34px;
    left: 38px;
    z-index: 2;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .18em;
    opacity: .72;
    text-transform: uppercase;
}

.sv-about-hero__generation {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 50%;
    background: rgba(84, 19, 28, .5);
    font-family: var(--sv-serif);
    font-size: 16px;
    place-items: center;
}

.sv-about-hero__generation--one {
    right: 12%;
    bottom: 11%;
}

.sv-about-hero__generation--two {
    right: 20%;
    bottom: 19%;
}

.sv-about-hero__generation--three {
    right: 9%;
    bottom: 25%;
    border-color: white;
    background: white;
    color: var(--sv-burgundy-dark);
}

.sv-about-story {
    max-width: 1220px;
    margin: 0 auto;
    padding: clamp(88px, 10vw, 150px) 52px 0;
}

.sv-about-chapter {
    display: grid;
    padding: clamp(72px, 8vw, 112px) 0;
    border-top: 1px solid var(--sv-line);
    grid-template-columns: minmax(210px, .65fr) minmax(0, 1.6fr);
    gap: clamp(56px, 9vw, 130px);
}

.sv-about-chapter__heading > span {
    color: var(--sv-burgundy);
    font-family: var(--sv-serif);
    font-size: 24px;
}

.sv-about-chapter__heading > p {
    margin-top: 26px;
    color: var(--sv-burgundy);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.sv-about-chapter__heading h2 {
    max-width: 300px;
    margin-top: 9px;
    font-family: var(--sv-serif);
    font-size: clamp(38px, 4vw, 53px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: .98;
}

.sv-about-chapter__copy {
    max-width: 720px;
}

.sv-about-chapter__copy p {
    color: var(--sv-muted);
    font-size: 15px;
    line-height: 1.92;
}

.sv-about-chapter__copy p + p {
    margin-top: 26px;
}

.sv-about-chapter__copy .sv-about-chapter__lead {
    color: var(--sv-ink);
    font-family: var(--sv-serif);
    font-size: clamp(24px, 2.7vw, 35px);
    font-weight: 500;
    letter-spacing: -.015em;
    line-height: 1.28;
}

.sv-about-chapter__copy .sv-about-chapter__statement {
    margin-top: 42px;
    margin-bottom: 42px;
    padding: 28px 0 28px 32px;
    border-left: 2px solid var(--sv-burgundy);
    color: var(--sv-ink);
    font-family: var(--sv-serif);
    font-size: clamp(27px, 3vw, 39px);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1.18;
}

.sv-about-quote {
    position: relative;
    display: flex;
    max-width: 1440px;
    margin: clamp(30px, 5vw, 76px) auto 0;
    padding: clamp(80px, 10vw, 145px) 52px;
    overflow: hidden;
    background: var(--sv-burgundy-dark);
    color: white;
    align-items: flex-start;
    justify-content: center;
    isolation: isolate;
}

.sv-about-quote::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 15%, transparent 0 110px, rgba(255, 255, 255, .09) 111px 112px, transparent 113px),
        repeating-linear-gradient(45deg, transparent 0 30px, rgba(255, 255, 255, .022) 31px 32px);
    content: "";
}

.sv-about-quote p {
    margin: 0 clamp(14px, 3vw, 35px);
    font-family: var(--sv-serif);
    font-size: clamp(52px, 8vw, 108px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .9;
    text-align: center;
}

.sv-about-quote > span {
    color: rgba(255, 255, 255, .45);
    font-family: var(--sv-serif);
    font-size: clamp(40px, 6vw, 76px);
    line-height: .75;
}

.sv-about-closing {
    display: grid;
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(100px, 12vw, 170px) 52px 20px;
    justify-items: center;
    text-align: center;
}

.sv-about-closing h2 {
    max-width: 720px;
    margin-top: 15px;
    font-family: var(--sv-serif);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .95;
}

.sv-about-closing > div {
    max-width: 650px;
    margin-top: 35px;
}

.sv-about-closing > div p {
    color: var(--sv-muted);
    font-size: 15px;
    line-height: 1.85;
}

.sv-about-closing > div p + p {
    margin-top: 18px;
}

.sv-about-closing > .sv-text-link {
    margin-top: 34px;
}

.sv-auth-brand {
    display: block;
    width: max-content;
    margin: 0 auto 34px;
}

.sv-auth-brand img {
    width: 220px;
    height: auto;
}

.sv-auth-brand + .flex {
    display: none;
}

.sv-auth-brand ~ .sv-auth-brand {
    display: none;
}

.sv-auth-brand ~ div form > .flex.gap-3 {
    margin-top: 18px;
}

main > .container > .flex.items-center a img,
main > .container > a img {
    content: url("./images/logo-400x80.webp");
    width: 220px;
    height: auto;
}

main > .container > p.mb-4.mt-8.text-center.text-xs {
    display: none;
}

.sv-auth-footer {
    margin: 30px auto 10px;
    color: var(--sv-muted);
    font-size: 11px;
    text-align: center;
}

/* Account, cart, forms, and data surfaces */
.box-shadow,
[class*="shadow-"] {
    box-shadow: none;
}

.rounded-xl,
.rounded-2xl,
.rounded-lg {
    border-radius: 2px;
}

.sv-pattern-library {
    display: grid;
    gap: 20px;
}

.sv-pattern-card {
    display: grid;
    padding: 20px;
    border: 1px solid var(--sv-line);
    background: var(--sv-white);
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
}

.sv-pattern-card__preview {
    width: 160px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--sv-warm);
}

.sv-pattern-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-pattern-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    color: var(--sv-muted);
    place-items: center;
}

.sv-pattern-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 16px;
}

#main .primary-button,
#main .primary-button:hover,
.sv-mini-cart a.bg-navyBlue,
.sv-mini-cart a.bg-navyBlue:hover {
    color: var(--sv-white) !important;
}

#main .primary-button *,
.sv-mini-cart a.bg-navyBlue * {
    color: inherit !important;
}

.sv-footer {
    margin-top: clamp(80px, 10vw, 150px);
    background: var(--sv-burgundy-dark);
    color: white;
}

.sv-footer__inner {
    display: grid;
    max-width: 1440px;
    margin: 0 auto;
    padding: 76px 52px 66px;
    grid-template-columns: 1.45fr .65fr .65fr 1.2fr;
    gap: clamp(35px, 6vw, 90px);
}

.sv-footer__brand img {
    width: 210px;
    height: auto;
}

.sv-footer__brand p,
.sv-footer__newsletter > p {
    max-width: 340px;
    margin-top: 22px;
    color: rgba(255,255,255,.66);
    font-size: 12px;
}

.sv-footer nav,
.sv-footer__newsletter {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.sv-footer h2 {
    margin-bottom: 12px;
    font-family: var(--sv-serif);
    font-size: 23px;
    font-weight: 600;
}

.sv-footer nav a {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    transition: color 160ms ease;
}

.sv-footer nav a:hover {
    color: white;
}

.sv-footer__newsletter form,
.sv-footer__newsletter form > div {
    width: 100%;
}

.sv-footer__newsletter form > div {
    display: flex;
    margin-top: 20px;
}

.sv-footer__newsletter input {
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.36) !important;
    background: transparent;
    color: white;
}

.sv-footer__newsletter input::placeholder {
    color: rgba(255,255,255,.55);
}

.sv-footer__newsletter button {
    padding: 12px 18px;
    background: white;
    color: var(--sv-burgundy-dark);
    font-size: 12px;
    font-weight: 600;
}

.sv-footer__bottom {
    display: flex;
    max-width: 1336px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.17);
    color: rgba(255,255,255,.55);
    justify-content: space-between;
    gap: 24px;
    font-size: 10px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.sv-footer__compliance {
    display: flex;
    max-width: 1336px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.17);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sv-footer__compliance nav {
    display: flex;
    flex-direction: row;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.sv-footer__payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.sv-footer__payment-methods span {
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.32);
    color: rgba(255,255,255,.78);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .05em;
}

.sv-policy {
    max-width: 860px;
    margin: 0 auto;
    color: var(--sv-ink);
}

.sv-policy h1 {
    margin-top: 12px;
    font-family: var(--sv-serif);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 500;
    line-height: 1;
}

.sv-policy h2 {
    margin-top: 42px;
    font-family: var(--sv-serif);
    font-size: 28px;
    font-weight: 600;
}

.sv-policy p,
.sv-policy li {
    margin-top: 14px;
    color: var(--sv-muted);
    font-size: 15px;
    line-height: 1.75;
}

.sv-policy ul {
    padding-left: 20px;
    list-style: disc;
}

.sv-policy__notice {
    padding: 14px 16px;
    border-left: 3px solid var(--sv-burgundy);
    background: var(--sv-warm);
    color: var(--sv-ink) !important;
}

@media (max-width: 1180px) {
    .sv-header__inner {
        padding: 0 28px;
        grid-template-columns: 165px minmax(0, 1fr) auto;
        gap: 22px;
    }

    .sv-brand img {
        width: 165px;
    }

    .sv-main-nav {
        gap: 17px;
    }

    .sv-main-nav > a:nth-last-child(-n+2) {
        display: none;
    }

    .sv-catalog-categories {
        padding-right: 32px;
        padding-left: 32px;
    }

    .sv-benefits,
    .sv-home-section,
    .sv-editorial-grid,
    .sv-process,
    .sv-help-hero,
    .sv-help-layout,
    .sv-size-guide__body,
    .sv-about-story,
    .sv-about-closing,
    .sv-footer__inner {
        padding-right: 28px;
        padding-left: 28px;
    }

    .sv-home-categories__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sv-footer__bottom {
        margin-right: 28px;
        margin-left: 28px;
    }

    .sv-footer__compliance {
        margin-right: 28px;
        margin-left: 28px;
    }

    .sv-site-services {
        margin-right: 28px;
        margin-left: 28px;
    }
}

@media (max-width: 900px) {
    #main .fixed.bottom-0.z-10 {
        z-index: 40;
    }

    .sv-main-nav,
    .sv-search-popover,
    .sv-header-actions > a,
    .sv-header-actions > .sv-locale-switcher {
        display: none;
    }

    .sv-header__inner {
        min-height: 66px;
        padding: 0 20px;
        grid-template-columns: 42px 1fr auto;
        gap: 12px;
    }

    .sv-brand {
        justify-self: center;
    }

    .sv-brand img {
        width: 170px;
    }

    .sv-mobile-menu {
        position: relative;
        display: block;
    }

    .sv-mobile-menu summary {
        display: flex;
        width: 40px;
        height: 44px;
        cursor: pointer;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
        list-style: none;
    }

    .sv-mobile-menu summary span {
        display: block;
        width: 22px;
        height: 1px;
        background: var(--sv-ink);
    }

    body:has(.sv-mobile-menu[open]) {
        overflow: hidden;
    }

    body:has(.sv-mobile-menu[open]) .sv-header {
        z-index: 60;
    }

    .sv-mobile-menu nav {
        position: fixed;
        top: 156px;
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        overflow-y: auto;
        padding: 20px 20px 40px;
        border-top: 1px solid var(--sv-line);
        background: var(--sv-paper);
        box-shadow: var(--sv-shadow);
        flex-direction: column;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .sv-locale-switcher--mobile {
        display: inline-flex;
        margin: 0 0 18px;
        align-self: flex-start;
    }

    .sv-locale-switcher--mobile a {
        min-width: 46px;
        min-height: 40px;
        font-size: 11px;
    }

    .sv-mobile-menu nav > a,
    .sv-mobile-nav-link {
        padding: 14px 4px;
        border-bottom: 1px solid var(--sv-line);
        font-family: var(--sv-serif);
        font-size: 24px;
        font-weight: 600;
    }

    .sv-mobile-category-group {
        margin-bottom: 4px;
    }

    .sv-mobile-category-group__title {
        margin: 0;
        padding: 10px 4px 8px;
        color: var(--sv-ink);
        font-family: var(--sv-serif);
        font-size: 24px;
        font-weight: 600;
        line-height: 1.1;
    }

    .sv-mobile-category-link {
        display: flex;
        min-width: 0;
        padding: 8px;
        border-radius: 6px;
        color: var(--sv-ink);
        align-items: center;
        gap: 8px;
        font-family: var(--sv-sans);
        font-size: 13px;
        font-weight: 500;
        line-height: 1.25;
        text-decoration: none;
    }

    .sv-mobile-category-link:hover,
    .sv-mobile-category-link:focus-visible {
        background: rgba(122, 31, 43, 0.08);
        color: var(--sv-burgundy);
    }

    .sv-mobile-category-link--all {
        margin-bottom: 8px;
        border: 1px solid var(--sv-line);
        background: var(--sv-paper);
        color: var(--sv-burgundy);
        font-weight: 600;
    }

    .sv-mobile-category-grid {
        display: grid;
        padding: 8px;
        border: 1px solid var(--sv-line);
        border-radius: 10px;
        background: var(--sv-warm);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px 4px;
    }

    .sv-mobile-category-link__icon {
        display: inline-flex;
        width: 26px;
        height: 26px;
        border: 1px solid var(--sv-line);
        border-radius: 6px;
        background: var(--sv-paper);
        color: var(--sv-burgundy);
        align-items: center;
        justify-content: center;
        flex: 0 0 26px;
    }

    .sv-mobile-category-link__icon svg {
        width: 14px;
        height: 14px;
    }

    .sv-header-actions {
        gap: 8px;
    }

    .sv-mobile-search {
        position: relative;
        display: flex;
        padding: 0 20px 14px;
        align-items: center;
    }

    .sv-mobile-search > span {
        position: absolute;
        left: 34px;
        color: var(--sv-muted);
        font-size: 18px;
    }

    .sv-mobile-search input {
        width: 100%;
        padding: 10px 14px 10px 42px;
        border: 1px solid var(--sv-line);
        background: white;
        font-size: 13px;
    }

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

    .sv-hero__content {
        max-width: none;
        padding: 76px 28px;
    }

    .sv-hero__art {
        min-height: 570px;
    }

    .sv-benefits {
        padding-top: 22px;
        padding-bottom: 22px;
        grid-template-columns: 1fr;
    }

    .sv-benefits article {
        padding: 18px 0;
    }

    .sv-benefits article + article {
        border-top: 1px solid var(--sv-line);
        border-left: 0;
    }

    .sv-editorial-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(500px, auto) minmax(280px, auto);
    }

    .sv-editorial-card--large {
        grid-row: auto;
        grid-column: 1 / 3;
    }

    .sv-process {
        grid-template-columns: 1fr;
    }

    .sv-home-categories__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sv-footer__inner {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .sv-help-layout {
        gap: 50px;
    }

    .sv-size-guide-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .sv-size-guide-hero__content {
        max-width: none;
        padding: 82px 28px;
    }

    .sv-size-guide-hero__art {
        min-height: 570px;
    }

    .sv-measurement-cards,
    .sv-size-choice {
        margin-left: 0;
    }

    .sv-about-hero {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .sv-about-hero__content {
        max-width: none;
        padding: 82px 28px;
    }

    .sv-about-hero__art {
        min-height: 570px;
    }

    .sv-about-chapter {
        grid-template-columns: minmax(180px, .55fr) minmax(0, 1.6fr);
        gap: 50px;
    }

    .sv-footer__newsletter {
        grid-column: 1 / 4;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .sv-pattern-card {
        padding: 16px;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sv-pattern-card__preview {
        width: min(160px, 100%);
    }

    .sv-announcement {
        min-height: 30px;
        padding: 5px 12px;
    }

    .sv-announcement p {
        font-size: 9px;
        letter-spacing: .07em;
    }

    .sv-header__inner {
        padding: 0 14px;
    }

    .sv-brand img {
        width: 150px;
    }

    .sv-product-size-guide {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .sv-mobile-search {
        padding-right: 14px;
        padding-left: 14px;
    }

    .sv-mobile-search > span {
        left: 27px;
    }

    .sv-mobile-menu nav {
        top: 154px;
    }

    .sv-catalog-categories {
        margin-top: 16px;
        margin-bottom: 10px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .sv-catalog-categories__list {
        gap: 8px;
    }

    .sv-catalog-category {
        width: 80px;
        padding: 8px 4px 7px;
        border-radius: 7px;
        flex-basis: 80px;
    }

    .sv-catalog-category__pictogram {
        width: 44px;
        height: 44px;
        margin-bottom: 6px;
    }

    .sv-catalog-category__pictogram svg {
        width: 19px;
        height: 19px;
    }

    .sv-catalog-category__name {
        font-size: 10.5px;
    }

    .sv-hero__content {
        padding: 58px 18px 64px;
    }

    .sv-hero h1 {
        margin-top: 18px;
        font-size: clamp(54px, 18vw, 74px);
        line-height: .88;
    }

    .sv-hero__intro {
        margin-top: 26px;
        font-size: 14px;
    }

    .sv-hero__actions {
        width: 100%;
        margin-top: 30px;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .sv-button {
        width: 100%;
    }

    .sv-hero__art {
        min-height: 430px;
    }

    .sv-hero__paper {
        width: 230px;
    }

    .sv-hero__paper--back {
        left: 7%;
    }

    .sv-hero__paper--front {
        right: 8%;
    }

    .sv-benefits,
    .sv-home-section,
    .sv-editorial-grid,
    .sv-process,
    .sv-help-hero,
    .sv-help-layout,
    .sv-size-guide__body,
    .sv-about-story,
    .sv-about-closing,
    .sv-footer__inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sv-home-section,
    .sv-editorial-grid {
        padding-top: 78px;
    }

    .sv-section-heading {
        margin-bottom: 24px;
        align-items: flex-start;
        flex-direction: column;
    }

    .sv-home-categories__heading > p {
        max-width: 290px;
        padding-bottom: 0;
    }

    .sv-home-categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .sv-home-category-card {
        min-height: 148px;
        padding: 16px;
    }

    .sv-home-category-card__art {
        width: 50px;
        height: 50px;
    }

    .sv-home-category-card__icon {
        width: 24px;
        height: 24px;
    }

    .sv-home-category-card__content {
        padding-top: 18px;
        padding-right: 20px;
    }

    .sv-home-category-card__content strong {
        font-size: 20px;
    }

    .sv-home-category-card__content small {
        display: none;
    }

    .sv-home-category-card__arrow {
        right: 15px;
        bottom: 15px;
        font-size: 16px;
    }

    .sv-section-heading h2,
    .sv-process h2 {
        font-size: 46px;
    }

    .sv-editorial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .sv-editorial-card,
    .sv-editorial-card--large {
        min-height: 370px;
        padding: 30px 24px;
        grid-column: auto;
    }

    .sv-editorial-card:not(.sv-editorial-card--large) {
        min-height: 250px;
    }

    .sv-editorial-card h2,
    .sv-editorial-card:not(.sv-editorial-card--large) h2 {
        font-size: 39px;
    }

    .sv-process {
        margin-top: 80px;
        padding-top: 64px;
        padding-bottom: 64px;
        gap: 45px;
    }

    .sv-process ol {
        grid-template-columns: 1fr;
    }

    .sv-process h3 {
        margin-top: 10px;
    }

    .sv-footer__inner {
        padding-top: 58px;
        padding-bottom: 48px;
        grid-template-columns: 1fr 1fr;
    }

    .sv-footer__brand,
    .sv-footer__newsletter {
        grid-column: 1 / 3;
    }

    .sv-footer__newsletter {
        margin-top: 8px;
    }

    .sv-footer__bottom {
        margin-right: 18px;
        margin-left: 18px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sv-footer__compliance {
        margin-right: 18px;
        margin-left: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .sv-site-services {
        margin: 80px 18px 0;
        padding: 18px 0;
        grid-template-columns: 1fr;
    }

    .sv-site-services > div {
        padding: 18px 0;
    }

    .sv-site-services > div + div {
        border-top: 1px solid var(--sv-line);
        border-left: 0;
    }

    .sv-help-layout {
        padding-top: 45px;
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sv-help-layout > nav {
        position: static;
    }

    .sv-help-content section,
    .sv-help-content section + section {
        padding-right: 0;
        padding-left: 0;
    }

    .sv-help-content section > span,
    .sv-help-content section + section > span {
        position: static;
        display: block;
        margin-bottom: 10px;
    }

    .sv-size-guide-hero__content {
        padding: 62px 18px 68px;
    }

    .sv-size-guide-hero h1 {
        font-size: clamp(58px, 19vw, 82px);
    }

    .sv-size-guide-hero__content > p:last-child {
        margin-top: 30px;
        font-size: 15px;
    }

    .sv-size-guide-hero__art {
        min-height: 440px;
    }

    .sv-size-guide-hero__art svg {
        width: min(90%, 430px);
    }

    .sv-size-guide-hero__art-label {
        top: 24px;
        left: 22px;
    }

    .sv-size-guide__body {
        padding-top: 78px;
        padding-bottom: 90px;
    }

    .sv-size-guide-section + .sv-size-guide-section {
        margin-top: 82px;
        padding-top: 76px;
    }

    .sv-size-guide-section__heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sv-size-guide-section__heading > span {
        padding-top: 0;
    }

    .sv-size-guide-section__heading h2 {
        font-size: clamp(40px, 13vw, 56px);
    }

    .sv-size-guide-section__intro {
        margin-top: 26px;
        margin-left: 0;
        font-size: 15px;
    }

    .sv-size-chart {
        margin-top: 36px;
    }

    .sv-size-chart th,
    .sv-size-chart td {
        padding: 18px 20px;
    }

    .sv-measurement-cards,
    .sv-size-choice {
        margin-top: 38px;
        grid-template-columns: 1fr;
    }

    .sv-measurement-cards article {
        min-height: 0;
        padding: 30px;
    }

    .sv-measurement-cards h3 {
        margin-top: 28px;
    }

    .sv-size-guide-help {
        margin-top: 82px;
        padding: 44px 28px;
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }

    .sv-about-hero__content {
        padding: 62px 18px 68px;
    }

    .sv-about-hero h1 {
        font-size: clamp(62px, 22vw, 88px);
    }

    .sv-about-hero__intro {
        margin-top: 32px;
    }

    .sv-about-hero__intro p:first-child {
        font-size: 25px;
    }

    .sv-about-hero__intro p {
        font-size: 15px;
    }

    .sv-about-hero__details {
        margin-top: 36px;
        gap: 10px;
    }

    .sv-about-hero__details dt {
        font-size: 21px;
    }

    .sv-about-hero__details dd {
        font-size: 8px;
        letter-spacing: .08em;
    }

    .sv-about-hero__art {
        min-height: 410px;
    }

    .sv-about-hero__art-label {
        top: 22px;
        left: 22px;
    }

    .sv-about-hero__generation {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .sv-about-story {
        padding-top: 86px;
    }

    .sv-about-chapter {
        padding: 66px 0;
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .sv-about-chapter__heading h2 {
        max-width: 340px;
    }

    .sv-about-chapter__copy p {
        font-size: 14px;
        line-height: 1.82;
    }

    .sv-about-chapter__copy .sv-about-chapter__lead {
        font-size: 25px;
        line-height: 1.3;
    }

    .sv-about-chapter__copy .sv-about-chapter__statement {
        margin-top: 34px;
        margin-bottom: 34px;
        padding: 23px 0 23px 22px;
        font-size: 28px;
    }

    .sv-about-quote {
        padding: 78px 18px;
    }

    .sv-about-quote p {
        font-size: clamp(47px, 15vw, 68px);
    }

    .sv-about-closing {
        padding-top: 100px;
    }

    .sv-about-closing h2 {
        font-size: 49px;
    }

    v-product-card > div > div:nth-child(2) p:first-of-type {
        font-size: 17px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .sv-home-category-card:hover,
    .sv-home-category-card:focus-visible {
        transform: none;
    }
}
