@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600&display=swap'); :root {
    --ink: #24131f;
    --plum: #5b203f;
    --plum-dark: #2b1023;
    --coral: #ec6d63;
    --leaf: #277055;
    --ivory: #fffaf2;
    --sand: #f1e8dc;
    --line: rgba(36,19,31,.15);
    --muted: #766b72;
    --white: #fff;
    --shadow: 0 24px 60px rgba(43,16,35,.12);
    --radius: 24px;
    --container: min(1420px,calc(100% - 48px));
    --serif: "Fraunces",Georgia,serif;
    --sans: "DM Sans",system-ui,sans-serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.55
}

body.menu-open,body.modal-open {
    overflow: hidden
}

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

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

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

.container {
    width: var(--container);
    margin-inline:auto}

.sr-only {
    position: absolute!important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    transform: translateY(-150%);
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px
}

.skip-link:focus {
    transform: none
}

.announcement {
    min-height: 34px;
    background: var(--plum-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 6px 24px;
    font-size: .78rem;
    letter-spacing: .025em
}

.announcement a {
    color: #f9afa8;
    text-decoration: underline
}

.site-header {
    position: relative;
    z-index: 70;
    background: rgba(255,250,242,.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line)
}

.header-main {
    height: 86px;
    display: grid;
    grid-template-columns: auto minmax(260px,1fr) auto auto;
    align-items: center;
    gap: 24px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content
}

.brand img {
    width: 162px;
    height: auto
}

.brand span {
    border-left: 1px solid var(--line);
    padding-left: 12px;
    font: 500 1rem var(--serif)
}

.header-search {
    height: 48px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    max-width: 520px;
    margin-inline:auto;width: 100%;
    overflow: hidden
}

.header-search:focus-within {
    border-color: var(--plum);
    box-shadow: 0 0 0 3px rgba(91,32,63,.1)
}

.header-search input {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 18px;
    width: 100%
}

.header-search button {
    border: 0;
    background: transparent;
    font-size: 1.55rem;
    padding: 0 17px;
    cursor: pointer
}

.location-pill {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    max-width: 220px
}

.location-pill>span:first-child {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e9f3ed;
    color: var(--leaf);
    font-size: 1.2rem
}

.location-pill small,.location-pill b {
    display: block
}

.location-pill small {
    color: var(--muted);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.location-pill b {
    font-size: .82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px
}

.header-order {
    background: var(--plum);
    color: #fff;
    padding: 13px 18px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap
}

.header-order span {
    color: #f9afa8
}

.desktop-nav {
    border-top: 1px solid var(--line)
}

.desktop-nav>ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    height: 47px
}

.desktop-nav li {
    position: relative
}

.desktop-nav a {
    font-size: .84rem;
    font-weight: 650
}

.desktop-nav a:hover {
    color: var(--plum)
}

.submenu-toggle {
    display: none
}

.desktop-nav .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: -18px;
    min-width: 220px;
    list-style: none;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow)
}

.desktop-nav li:hover>.submenu {
    display: grid
}

.mobile-menu-button,.mobile-drawer,.drawer-backdrop {
    display: none
}

.eyebrow {
    display: block;
    font-size: .72rem;
    letter-spacing: .17em;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 14px
}

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer
}

.button.primary {
    background: var(--plum);
    color: #fff
}

.button.coral {
    background: var(--coral);
    color: var(--plum-dark)
}

.button.dark {
    background: var(--plum-dark);
    color: #fff
}

.button.whatsapp {
    background: #1e7b55;
    color: #fff;
    width: 100%
}

.text-link {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--coral);
    text-underline-offset: 6px
}

.hero {
    position: relative;
    min-height: 670px;
    color: #fff;
    display: flex;
    align-items: stretch;
    overflow: hidden
}

.hero-bg,.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.hero-bg {
    object-fit: cover
}

.hero-shade {
    background: linear-gradient(90deg,rgba(25,8,20,.88) 0%,rgba(25,8,20,.52) 42%,rgba(25,8,20,.06) 72%)
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-block:92px 42px}

.hero-copy {
    max-width: 650px
}

.hero-copy h1,.page-hero h1 {
    font: 600 clamp(3.8rem,7vw,7rem)/.91 var(--serif);
    letter-spacing: -.055em;
    margin: 0 0 25px
}

.hero-copy p {
    font-size: 1.16rem;
    max-width: 570px;
    color: rgba(255,255,255,.78)
}

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

.hero-proof {
    align-self: flex-end;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.13);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 18px 22px;
    border-radius: 20px
}

.hero-proof>span {
    font: 600 1.5rem var(--serif);
    color: #ffc2bd
}

.hero-proof p {
    margin: 0;
    font-size: .75rem;
    color: rgba(255,255,255,.7);
    padding-right: 15px
}

.hero-proof b {
    display: block;
    color: #fff;
    font-size: .8rem
}

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

.section-heading h2,.editorial-copy h2,.footer-lead h2 {
    font: 600 clamp(2.35rem,4.3vw,4.8rem)/1 var(--serif);
    letter-spacing: -.04em;
    margin: 0
}

.section-heading>p {
    max-width: 460px;
    color: var(--muted);
    font-size: .9rem
}

.section-heading>a {
    font-weight: 700;
    white-space: nowrap
}

.category-section {
    padding-block:90px 80px}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px
}

.category-card {
    position: relative;
    min-height: 240px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--sand)
}

.category-card:after {
    content: "";
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(transparent,rgba(24,10,20,.88))
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.category-card:hover img {
    transform: scale(1.045)
}

.category-card>span {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 16px;
    color: #fff
}

.category-card b,.category-card small {
    display: block
}

.category-card b {
    font: 500 1.18rem var(--serif)
}

.category-card small {
    font-size: .7rem;
    color: rgba(255,255,255,.74);
    margin-top: 3px
}

.products-section {
    background: #f4ede4;
    padding-block:88px}

.product-grid {
    display: grid;
    gap: 18px
}

.product-grid.columns-3 {
    grid-template-columns: repeat(3,1fr)
}

.product-grid.columns-4 {
    grid-template-columns: repeat(4,1fr)
}

.product-grid.columns-5 {
    grid-template-columns: repeat(5,1fr)
}

.product-card {
    min-width: 0
}

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    background: #ede2d5
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease
}

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

.delivery-badge,.discount-badge {
    position: absolute;
    top: 14px;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .65rem;
    font-weight: 800;
    box-shadow: 0 5px 18px rgba(0,0,0,.08)
}

.delivery-badge {
    left: 14px;
    background: #e8f7ef;
    color: #186348
}

.discount-badge {
    right: 14px;
    background: var(--coral);
    color: var(--plum-dark)
}

.delivery-badge.large {
    font-size: .75rem;
    padding: 9px 13px
}

.product-info {
    padding: 16px 5px
}

.product-category {
    font-size: .67rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--leaf)
}

.product-info h3 {
    font: 500 1.18rem/1.2 var(--serif);
    margin: 7px 0 10px
}

.rating {
    font-size: .78rem;
    color: var(--muted)
}

.rating>span,.stars {
    color: #e79a29
}

.rating small {
    color: #9b9097
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px
}

.price-row del,.detail-price del {
    color: #978d92;
    font-size: .77rem
}

.price-row strong {
    margin-left: auto;
    font-size: 1.02rem
}

.editorial {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--plum);
    color: #fff;
    margin-block:100px;border-radius: 32px;
    overflow: hidden;
    min-height: 580px
}

.editorial-image {
    position: relative
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.editorial-image span {
    position: absolute;
    left: 22px;
    bottom: 22px;
    background: rgba(255,255,255,.86);
    color: var(--ink);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: .75rem
}

.editorial-copy {
    align-self: center;
    padding: 70px
}

.editorial-copy p {
    color: rgba(255,255,255,.7);
    max-width: 520px;
    margin: 25px 0 32px
}

.promise {
    background: var(--plum-dark);
    color: #fff;
    padding-block:65px}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px
}

.promise article {
    border-left: 1px solid rgba(255,255,255,.17);
    padding-left: 22px
}

.promise article>span {
    color: var(--coral);
    font-size: 1.3rem
}

.promise h3 {
    font: 500 1.2rem var(--serif);
    margin: 15px 0 8px
}

.promise p {
    font-size: .82rem;
    color: rgb(81 37 92 / 62%);
    margin: 0
}

.blog-section,.blog-archive {
    padding-block:100px}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

.blog-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 18px
}

.blog-grid time {
    display: block;
    font-size: .7rem;
    color: var(--muted);
    margin-top: 16px
}

.blog-grid h3,.blog-grid h2 {
    font: 500 1.35rem/1.18 var(--serif);
    margin: 8px 0
}

.blog-grid p {
    font-size: .85rem;
    color: var(--muted)
}

.blog-grid .text-link {
    font-size: .78rem
}

.page-hero {
    background: var(--plum-dark);
    color: #fff;
    padding-block:105px}

.page-hero.compact {
    padding-block:75px}

.page-hero h1 {
    max-width: 920px;
    font-size: clamp(3.2rem,6vw,6.6rem)
}

.page-hero p {
    max-width: 700px;
    color: rgba(255,255,255,.7);
    font-size: 1.02rem
}

.location-inline {
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,.2);
    background: transparent;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer
}

.listing {
    display: grid;
    grid-template-columns: 245px 1fr;
    gap: 46px;
    padding-block:65px 100px}

.filter-card {
    position: sticky;
    top: 18px;
    align-self: start;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    padding: 20px
}

.filter-card>b {
    display: block;
    font: 500 1.25rem var(--serif);
    margin-bottom: 12px
}

.filter-card a {
    display: flex;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: .82rem;
    color: var(--muted)
}

.filter-card a:hover,.filter-card a.active {
    background: #f4ecef;
    color: var(--plum);
    font-weight: 700
}

.listing-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px
}

.listing-top select {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 10px 14px
}

.empty-state {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 60px;
    text-align: center
}

.empty-state h2 {
    font: 500 2rem var(--serif)
}

.product-detail {
    padding-block:24px 90px}

.breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: .72rem;
    color: var(--muted);
    padding: 15px 0 25px;
    overflow: auto;
    white-space: nowrap
}

.breadcrumbs b {
    color: var(--ink)
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr) minmax(330px,.82fr);
    gap: 32px;
    align-items: start
}

.main-product-image {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    background: #eee2d4
}

.main-product-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover
}

.product-story {
    margin-top: 42px
}

.product-story h2,.prose h2 {
    font: 500 2rem var(--serif);
    margin: 32px 0 10px
}

.product-story p,.prose p,.prose li {
    color: #62575e
}

.product-summary {
    padding-top: 20px
}

.product-summary h1 {
    font: 600 clamp(2.5rem,4vw,4.7rem)/.98 var(--serif);
    letter-spacing: -.045em;
    margin: 12px 0 17px
}

.product-summary>p {
    color: var(--muted)
}

.product-code {
    margin: 22px 0;
    font-size: .75rem;
    color: var(--muted);
    padding: 12px 0;
    border-block:1px solid var(--line)}

.product-code b {
    float: right;
    color: var(--ink)
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 15px
}

.detail-price strong {
    font-size: 2rem
}

.mini-promises {
    display: grid;
    gap: 9px;
    margin-top: 26px;
    font-size: .77rem;
    color: var(--leaf)
}

.quick-order {
    position: sticky;
    top: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.quick-order h2 {
    font: 500 2rem var(--serif);
    margin: 0
}

.quick-order>p {
    font-size: .82rem;
    color: var(--muted)
}

.quick-order form {
    display: grid;
    gap: 12px
}

.quick-order label,.review-form label {
    font-size: .72rem;
    font-weight: 700
}

.quick-order input,.quick-order select,.quick-order textarea,.review-form input,.review-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fffdf9;
    padding: 11px 12px;
    margin-top: 5px
}

.quick-order textarea {
    min-height: 72px;
    resize: vertical
}

.quick-order small,.review-form small {
    font-size: .66rem;
    color: var(--muted)
}

.two-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.reviews-section {
    background: #f1e8dc;
    padding-block:85px}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 70px
}

.reviews-grid h2 {
    font: 600 4rem var(--serif);
    margin: 0
}

.review {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    margin-top: 15px
}

.review p {
    margin: 8px 0
}

.review b,.review time {
    font-size: .72rem
}

.review time {
    float: right;
    color: var(--muted)
}

.stars span {
    color: #ddd
}

.review-form {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    align-self: start;
    display: grid;
    gap: 14px
}

.review-form h3 {
    font: 500 1.7rem var(--serif);
    margin: 0
}

.review-form fieldset {
    border: 0;
    padding: 0
}

.star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end
}

.star-input input {
    position: absolute;
    opacity: 0;
    width: 1px
}

.star-input label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer
}

.star-input input:checked~label,.star-input label:hover,.star-input label:hover~label {
    color: #e79a29
}

.recommendations {
    padding-block:80px}

.recommendations+.recommendations {
    padding-top: 0
}

.support-hero {
    text-align: center
}

.support-hero p {
    margin-inline:auto}

.support-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 70px;
    padding-block:70px 110px}

.support-nav,.legal-nav {
    position: sticky;
    top: 18px;
    align-self: start;
    display: grid;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px
}

.support-nav>b,.legal-nav>b {
    font: 500 1.2rem var(--serif);
    padding: 6px 8px 12px
}

.support-nav a,.legal-nav a {
    display: flex;
    justify-content: space-between;
    padding: 10px 8px;
    border-radius: 9px;
    font-size: .8rem;
    color: var(--muted)
}

.support-nav a:hover,.legal-nav a:hover,.legal-nav a.active {
    background: #f4ecef;
    color: var(--plum)
}

.support-content section {
    scroll-margin-top: 30px;
    margin-bottom: 55px
}

.support-content h2 {
    font: 500 2.5rem var(--serif);
    margin: 0 0 18px
}

.support-content details {
    border-top: 1px solid var(--line)
}

.support-content details:last-child {
    border-bottom: 1px solid var(--line)
}

.support-content summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-weight: 700
}

.support-content summary::-webkit-details-marker {
    display: none
}

.support-content details[open] summary span {
    transform: rotate(45deg)
}

.support-content details>div {
    padding: 0 45px 20px 0;
    color: var(--muted)
}

.article-layout {
    display: grid;
    grid-template-columns: 280px minmax(0,850px);
    gap: 70px;
    padding-block:70px 110px}

.article-layout:not(:has(.legal-nav)) {
    grid-template-columns: minmax(0,850px);
    justify-content: center
}

.prose {
    font-size: 1.02rem
}

.prose .article-image {
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    border-radius: 26px;
    margin-bottom: 35px
}

.prose h2:first-of-type {
    margin-top: 0
}

.template-warning {
    background: #fff3d6;
    color: #6e5015;
    border: 1px solid #ead49c;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 28px;
    font-size: .76rem
}

.large-search {
    display: flex;
    max-width: 720px;
    background: #fff;
    border-radius: 999px;
    padding: 6px;
    margin-top: 28px
}

.large-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0 18px
}

.search-results {
    padding-block:70px 100px}

.not-found {
    min-height: 70vh;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
    padding-block:100px}

.not-found>span {
    font: 600 10rem/.8 var(--serif);
    color: #e3d4db
}

.not-found h1 {
    font: 600 3rem var(--serif);
    margin: 15px 0 0
}

.location-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.location-modal.open {
    display: flex
}

.location-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(25,8,20,.7);
    border: 0
}

.location-modal section {
    position: relative;
    z-index: 2;
    width: min(520px,100%);
    background: var(--ivory);
    border-radius: 28px;
    padding: 38px;
    box-shadow: var(--shadow)
}

.location-modal h2 {
    font: 500 2.5rem/1 var(--serif);
    margin: 0
}

.location-modal p {
    color: var(--muted)
}

.location-modal label {
    display: block;
    font-size: .75rem;
    font-weight: 700
}

.location-modal select {
    width: 100%;
    margin: 7px 0 15px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff
}

.location-modal .button {
    width: 100%
}

.location-modal small {
    display: block;
    color: var(--muted);
    font-size: .67rem;
    margin-top: 13px
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 12px;
    border: 0;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer
}

.cookie-note {
    position: fixed;
    z-index: 120;
    left: 20px;
    bottom: 20px;
    width: min(430px,calc(100% - 40px));
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 16px;
    padding: 14px 16px;
    font-size: .72rem
}

.cookie-note.hidden {
    display: none
}

.cookie-note p {
    margin: 0
}

.cookie-note a {
    text-decoration: underline
}

.cookie-note button {
    border: 0;
    background: var(--plum);
    color: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    font-weight: 700
}

.site-footer {
    background: var(--plum-dark);
    color: #fff
}

.footer-lead {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    padding-block:75px;border-bottom: 1px solid rgba(255,255,255,.13)
}

.footer-lead h2 {
    max-width: 780px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
    gap: 50px;
    padding-block:65px}

.footer-brand img {
    filter: none;
    width: 185px
}

.footer-grid p {
    color: rgba(255,255,255,.58);
    font-size: .82rem;
    max-width: 300px
}

.footer-grid h3 {
    font: 500 1.1rem var(--serif)
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-grid li {
    margin: 8px 0
}

.footer-grid a {
    font-size: .78rem;
    color: rgba(255,255,255,.67)
}

.footer-grid a:hover {
    color: #fff
}

.footer-grid .submenu-toggle,.footer-grid .submenu {
    display: none
}

.socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 18px
}

.socials a {
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 7px 10px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.13);
    padding-block:20px;font-size: .7rem;
    color: rgba(255,255,255,.45)
}

@media(max-width: 1200px) {
    .header-main {
        grid-template-columns:auto 1fr auto
    }

    .header-order {
        display: none
    }

    .category-grid {
        grid-template-columns: repeat(4,1fr)
    }

    .product-grid.columns-5 {
        grid-template-columns: repeat(4,1fr)
    }

    .product-layout {
        grid-template-columns: 1.1fr .9fr
    }

    .quick-order {
        grid-column: 2;
        position: static
    }

    .product-summary {
        grid-column: 2;
        grid-row: 1
    }

    .product-gallery {
        grid-row: 1/3
    }

    .desktop-nav>ul {
        gap: 20px
    }
}

@media(max-width: 900px) {
    :root {
        --container:min(100% - 30px,760px)
    }

    .announcement {
        justify-content: space-between
    }

    .header-main {
        height: 72px;
        grid-template-columns: auto 1fr auto;
        gap: 12px
    }

    .brand {
        justify-self: center
    }

    .brand img {
        width: 140px
    }

    .brand span,.header-search,.desktop-nav,.location-pill {
        display: none
    }

    .mobile-menu-button {
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 4px;
        border: 0;
        background: transparent;
        padding: 0
    }

    .mobile-menu-button span {
        display: block;
        width: 21px;
        height: 2px;
        background: var(--ink)
    }

    .mobile-menu-button b {
        font-size: .55rem
    }

    .header-order {
        display: block;
        font-size: 0;
        width: 42px;
        height: 42px;
        padding: 0;
        border-radius: 50%
    }

    .header-order:after {
        content: '↗';
        font-size: 1.1rem;
        display: grid;
        place-items: center;
        height: 100%
    }

    .drawer-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 150;
        background: rgba(25,8,20,.6);
        opacity: 0;
        visibility: hidden;
        transition: .25s
    }

    .drawer-backdrop.open {
        opacity: 1;
        visibility: visible
    }

    .mobile-drawer {
        display: flex;
        position: fixed;
        z-index: 160;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(390px,88vw);
        background: var(--ivory);
        transform: translateX(-101%);
        transition: transform .3s ease;
        padding: 18px;
        flex-direction: column;
        overflow-y: auto
    }

    .mobile-drawer.open {
        transform: none
    }

    .drawer-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--line)
    }

    .drawer-head img {
        width: 155px
    }

    .drawer-head button {
        border: 0;
        background: transparent;
        font-size: 2rem
    }

    .drawer-location {
        border: 0;
        background: #eaf4ee;
        border-radius: 12px;
        padding: 13px;
        text-align: left;
        color: var(--leaf);
        margin: 16px 0
    }

    .drawer-search {
        display: flex;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 12px;
        overflow: hidden
    }

    .drawer-search input {
        min-width: 0;
        flex: 1;
        border: 0;
        padding: 11px
    }

    .drawer-search button {
        border: 0;
        background: var(--plum);
        color: #fff;
        padding: 0 15px
    }

    .mobile-drawer>ul {
        list-style: none;
        padding: 15px 0;
        margin: 0
    }

    .mobile-drawer li {
        position: relative;
        border-bottom: 1px solid var(--line)
    }

    .mobile-drawer li>a {
        display: block;
        padding: 13px 5px;
        font-weight: 700
    }

    .mobile-drawer .submenu-toggle {
        display: block;
        position: absolute;
        right: 0;
        top: 5px;
        border: 0;
        background: transparent;
        font-size: 1.3rem;
        padding: 10px
    }

    .mobile-drawer .submenu {
        display: none;
        list-style: none;
        padding: 0 0 10px 14px
    }

    .mobile-drawer li.submenu-open>.submenu {
        display: block
    }

    .drawer-help {
        margin-top: auto;
        background: var(--plum);
        color: #fff;
        border-radius: 12px;
        padding: 13px;
        text-align: center;
        font-weight: 700
    }

    .hero {
        min-height: 700px
    }

    .hero-shade {
        background: linear-gradient(0deg,rgba(25,8,20,.94),rgba(25,8,20,.28))
    }

    .hero-content {
        padding-block:150px 30px}

    .hero-copy h1 {
        font-size: clamp(3.5rem,13vw,6rem)
    }

    .hero-proof {
        align-self: stretch;
        grid-template-columns: auto 1fr;
        gap: 8px
    }

    .hero-proof p {
        padding-right: 0
    }

    .category-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .product-grid.columns-3,.product-grid.columns-4,.product-grid.columns-5 {
        grid-template-columns: repeat(2,1fr)
    }

    .editorial {
        grid-template-columns: 1fr
    }

    .editorial-image {
        min-height: 430px
    }

    .promise-grid,.blog-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .listing {
        grid-template-columns: 1fr
    }

    .filter-card {
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 10px
    }

    .filter-card>b {
        display: none
    }

    .filter-card a {
        min-width: max-content
    }

    .product-layout {
        grid-template-columns: 1fr 1fr
    }

    .reviews-grid {
        grid-template-columns: 1fr
    }

    .support-layout,.article-layout {
        grid-template-columns: 1fr
    }

    .support-nav,.legal-nav {
        position: static;
        display: flex;
        overflow-x: auto
    }

    .support-nav>b,.legal-nav>b,.support-nav hr {
        display: none
    }

    .support-nav a,.legal-nav a {
        min-width: max-content
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }

    .footer-grid section:last-child {
        grid-column: 2/4
    }

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

@media(max-width: 600px) {
    :root {
        --container:calc(100% - 26px)
    }

    .announcement {
        font-size: .63rem;
        gap: 10px
    }

    .announcement span {
        max-width: 220px
    }

    .hero {
        min-height: 670px
    }

    .hero-content {
        padding-top: 105px
    }

    .hero-copy h1 {
        font-size: 3.55rem
    }

    .hero-copy p {
        font-size: .94rem
    }

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

    .hero-proof {
        margin-top: 38px
    }

    .category-section,.blog-section,.blog-archive {
        padding-block:65px}

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px
    }

    .section-heading h2 {
        font-size: 2.8rem
    }

    .category-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        margin-right: -13px;
        padding-right: 13px
    }

    .category-card {
        min-width: 190px;
        min-height: 230px;
        scroll-snap-align: start
    }

    .products-section {
        padding-block:60px}

    .product-grid.columns-3,.product-grid.columns-4,.product-grid.columns-5 {
        gap: 12px
    }

    .product-info {
        padding: 12px 2px
    }

    .product-info h3 {
        font-size: 1rem
    }

    .price-row {
        display: grid;
        gap: 2px
    }

    .price-row strong {
        margin-left: 0
    }

    .editorial {
        margin-block:70px;border-radius: 22px
    }

    .editorial-image {
        min-height: 360px
    }

    .editorial-copy {
        padding: 32px 25px 42px
    }

    .promise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 14px
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .page-hero,.page-hero.compact {
        padding-block:65px}

    .page-hero h1 {
        font-size: 3.2rem
    }

    .listing {
        padding-top: 35px
    }

    .listing-top {
        align-items: flex-start;
        gap: 12px;
        flex-direction: column
    }

    .product-detail {
        padding-bottom: 60px
    }

    .product-layout {
        grid-template-columns: 1fr
    }

    .product-gallery,.product-summary,.quick-order {
        grid-column: 1;
        grid-row: auto
    }

    .product-summary h1 {
        font-size: 3.2rem
    }

    .product-gallery {
        display: contents
    }

    .main-product-image {
        order: 0
    }

    .product-summary {
        order: 1
    }

    .quick-order {
        order: 2
    }

    .product-story {
        order: 3
    }

    .reviews-section {
        padding-block:60px}

    .reviews-grid {
        gap: 35px
    }

    .review-form,.quick-order {
        padding: 22px
    }

    .two-fields {
        grid-template-columns: 1fr
    }

    .support-layout,.article-layout {
        gap: 30px;
        padding-block:35px 70px}

    .support-nav,.legal-nav {
        margin-inline:-13px;border-radius: 0;
        border-inline:0}

    .support-content h2 {
        font-size: 2rem
    }

    .support-content details>div {
        padding-right: 0
    }

    .large-search {
        border-radius: 16px;
        display: grid
    }

    .large-search .button {
        border-radius: 12px
    }

    .footer-lead {
        padding-block:55px}

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding-block:45px}

    .footer-grid section:first-child,.footer-grid section:last-child {
        grid-column: 1/-1
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }

    .location-modal section {
        padding: 30px 22px
    }

    .cookie-note {
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px)
    }
}
