:root {
    --cream: #fdf9f0;
    --red: #b41410;
    --primary: #db322f;
    --dark: #35100d;
    --line: #e8dfd1;
    --muted: #75675f;
    --cond: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --body: 'Montserrat', sans-serif;
    /* --body: 'Lato', Arial, sans-serif; */
    --hero: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #efe8dc;
    color: #211511;
    font-family: var(--body);
    font-size: 12px
}

.page {
    width: min(100%, 1440px);
    margin: auto;
    background: var(--cream);
    overflow: hidden;
    box-shadow: 0 0 40px #00000010
}

.announcement {
    height: 28px;
    padding: 0 34px;
    background: #b81310;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 700 10px var(--body);
    letter-spacing: .02em
}

.announcement i {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #ffffff80;
    margin: 0 12px
}

.announcement .shipping {
    display: flex;
    align-items: center;
    gap: 8px
}

.header {
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    /* border-bottom: 1px solid #efe7dc; */
    background: transparent;
    position: absolute;
    top: 28px;
    z-index: 30
}

.logo img {
    width: 66px;
    height: 66px;
    object-fit: contain
}

.header nav {
    display: flex;
    justify-content: center;
    gap: 48px
}

.header nav a {
    color: #1d1310;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    position: relative;
    padding: 31px 0
}

.header nav a.active {
    color: #c31b18
}

.header nav a.active:after {
    content: '';
    position: absolute;
    bottom: 21px;
    left: 0;
    width: 28px;
    height: 2px;
    background: #d8342e
}

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

.icon {
    border: 0;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    position: relative
}

.icon sup {
    position: absolute;
    right: -5px;
    top: -3px;
    background: #d42a26;
    color: #fff;
    border-radius: 50%;
    font: 700 8px var(--body);
    width: 15px;
    height: 15px;
    display: grid;
    place-items: center
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 4px;
    background: #ba1612;
    color: #fff;
    text-decoration: none;
    font: 600 10px var(--body);
    letter-spacing: .05em;
    box-shadow: 0 8px 18px #a51b1022;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-1px)
}

.menu {
    display: none
}

.section-shell {
    padding: 0 42px;
    padding-top: 30px;
}

.hero {
    height: 100vh;
    display: grid;
    grid-template-columns: 30% 70%;
    position: relative;
    background-color: #fdf5e8;
}

.hero-copy {
    padding: 53px 0 0 50px;
    z-index: 2
}

.hero h1 {
    margin: 0 0 18px;
    font: 800 80px/0.95 var(--hero);
    /* font: 800 64px/0.85 var(--cond); */
    letter-spacing: -.025em;
    color: #3b120f
}

.hero h1 span {
    color: #b31714
}

.hero-copy p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.62;
    margin: 0 0 18px
}

.badges {
    display: flex;
    gap: 26px;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 500;
}

.hero-art {
    position: absolute;
    right: 0;
    top: 0;
    width: 72%;
    height: 100%;
    overflow: hidden;
    padding-top: 44px;
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.product {
    /* height: 225px; */
    display: grid;
    grid-template-columns: 19.62% 16% 34% 31%;
    /* grid-template-columns: 17% 20% 34% 29%; */
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: #faeddd;
}

/* .product>div,
.product>a {
    border-right: 1px solid var(--line)
} */

.product-jar {
    display: grid;
    place-items: center;
    /* padding: 22px */
}

.product-jar img {
    width: 100%;
    /* width: 90px;
    max-height: 170px;
    object-fit: contain */
}

.buy {
    padding: 28px 16px;
    border-right: 1px solid var(--line);
}

.buy h2 {
    font: 700 20px / 1.2 var(--body);
    color: #bb1814;
    margin: 0 0 6px;
}

.rating {
    color: #e0a32d;
    font-size: 14px
}

.rating small {
    color: #323232
}

.price {
    display: block;
    font: 700 22px var(--body);
    color: #b31411;
    margin-top: 6px
}

.weight {
    display: block;
    font-weight: 600;
    /* margin-top: -4px */
}

.qty {
    display: flex;
    width: 91px;
    height: 28px;
    border: 1px solid #d9cfc2;
    margin: 9px 0
}

.qty button,
.qty span {
    width: 33.33%;
    border: 0;
    background: #fff;
    display: grid;
    place-items: center
}

.qty button {
    background: #faf1e5;
}

.buy .btn {
    width: 146px;
    height: 34px;
    min-height: 34px
}

.compact {
    font-size: 8px;
    gap: 12px;
    margin-top: 9px
}

.feature {
    padding: 30px 25px
}

.feature h3 {
    text-align: center;
    font: 600 23px var(--cond);
    margin: 0 0 20px
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.feature-grid article {
    text-align: center;
    padding: 0 10px;
    border-right: 1px solid var(--line)
}

.feature-grid article:last-child {
    border-right: 0
}

.feature-grid img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

/* .feature-grid b {
    font-size: 25px;
    color: #d32a25;
    font-weight: 400
} */

.feature-grid h4 {
    font-size: 10px;
    margin: 6px 0
}

.feature-grid p {
    font: 400 8px/1.45 var(--body);
    margin: 0;
    color: #000
}

.promo {
    display: block;
    overflow: hidden
}

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

.pairings {
    padding: 20px 35px 10px;
    border-bottom: 1px solid var(--line);
    background: #fcf2e4;
}

.pairings h2,
.ingredients h2 {
    font: 700 27px var(--cond);
    color: #bd1a16;
    text-align: center;
    margin: 0 0 10px
}

.carousel {
    position: relative
}

.food-track {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 7px
}

.food-track figure {
    margin: 0;
    text-align: center
}

.food-track figure:hover img {
    transform: scale(1.03);
}

.food-track img {
    /* width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px */
    width: 100%;
    /* aspect-ratio: 1.18; */
    object-fit: cover;
    border-radius: 4px;
    display: block;
    transition: .35s transform;
}

.food-track figcaption {
    /* font-size: 9px; */
    margin-top: 5px;
    font-weight: 600;
}

.arrow {
    position: absolute;
    top: 44px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e0d8cd;
    background: #fff;
    z-index: 2;
    font-size: 24px;
    display: grid;
    place-items: center
}

.prev {
    left: -25px
}

.next {
    right: -25px
}

.dots {
    text-align: center;
    margin-top: 5px
}

.dots i {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 1px solid #d8c9bc;
    margin: 0 2px
}

.dots i:first-child {
    background: #df4b3d;
    border-color: #df4b3d
}

.ingredients {
    /* height: 136px; */
    padding: 13px 70px 10px;
    border-bottom: 1px solid var(--line);
    background: #fcf2e4;
}

.ingredients h2 {
    margin-bottom: 2px
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: start
}

.ingredients-grid article {
    text-align: center
}

.ingredients-grid img {
    width: 72px;
    /* height: 57px; */
    object-fit: cover;
    object-position: center top
}

.ingredients-grid b {
    display: block;
    font: 700 10px var(--body);
    margin-top: 1px
}

.more {
    display: block;
    margin: 10px auto 0;
    border: 0;
    background: transparent;
    font: 700 8px var(--body);
    cursor: pointer;
}

.info {
    /* height: 230px; */
    display: grid;
    grid-template-columns: 40% 27% 33%;
    background: #faefe0;
}

.info>article {
    padding: 20px 26px;
    border-right: 1px solid var(--line);
    position: relative;
    overflow: hidden
}

.info h2 {
    font: 700 24px/1 var(--cond);
    color: #b81915;
    margin: 0 0 10px
}

.story-layout {
    display: grid;
    grid-template-columns: 53% 47%;
    gap: 12px
}

.story p {
    font-size: 10px;
    line-height: 1.43;
    margin: 0 0 5px;
    color: #000;
}

.story .btn {
    height: 30px;
    min-height: 30px;
    padding: 0 14px;
    font-size: 8px;
    margin-top: 3px
}

.story img {
    width: 100%;
    /* height: 168px; */
    object-fit: contain;
    /* transform: rotate(2deg) */
}

.nutrition h2 small {
    font: 700 10px var(--body);
    color: #221511
}

.nutrition dl {
    margin: 15px 0
}

.nutrition dl div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ede4d8;
    padding: 7px 0
}

.nutrition dt,
.nutrition dd {
    /* font-size: 9px; */
    margin: 0
}

.nutrition dd b {
    font: 600 18px var(--cond)
}

.outline {
    border: 1px solid #e45249;
    background: transparent;
    color: #c52721;
    padding: 8px 10px;
    border-radius: 3px;
    font: 700 8px var(--body);
    cursor: pointer;
}

.faq {
    padding-right: 0 !important
}

.faq-list {
    width: 66%;
    z-index: 2;
    position: relative
}

.faq-list button {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eadfD1;
    padding: 10px 0;
    text-align: left;
    font: 500 12px var(--body);
    display: flex;
    justify-content: space-between
}

.faq-list p {
    display: none;
    font-size: 11px;
    line-height: 1.4;
    color: #000;
}

.faq-list .open p {
    display: block
}

.faq img {
    position: absolute;
    right: -20px;
    bottom: -3px;
    /* width: 155px; */
    height: 250px;
    object-fit: cover
}

.cta {
    /* height: 141px; */
    position: relative;
    overflow: hidden
}

.cta-bg {
    width: 100%;
    /* position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover */
}

.cta-copy {
    position: absolute;
    left: 34%;
    top: 27px;
    width: 38%;
    text-align: center;
    color: #fff
}

.cta h2 {
    font: 700 38px var(--cond);
    margin: 0
}

.cta p {
    font-size: 13px;
    margin: 4px 0 10px
}

.cta .btn {
    background: #d62f29;
    height: 34px;
    min-height: 34px
}

.footer-inner {
    display: grid;
    grid-template-columns: 27% 10% 12% 14% 37%;
    padding: 15px 55px 10px;
    gap: 10px
}

.footer-brand {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 12px
}

.footer-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    grid-row: 1/3
}

.footer-brand p {
    font-size: 11px;
    line-height: 1.5;
    margin: 6px 0;
    color: #000;
    max-width: 116px
}

.footer-inner h4 {
    color: #b71915;
    font-size: 11px;
    margin: 0 0 7px
}

.footer-inner a,
.footer-inner span {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 11px;
    line-height: 1.8
}

.social-wrap {
    display: flex;
    gap: 6px;
}

.footer-brand .social-wrap img {
    width: 20px;
    height: auto;
}

.club {
    max-width: 250px;
}

.club h3 {
    font: 700 20px var(--cond);
    color: #b81915;
    margin: 0
}

.club p {
    font-size: 10px;
    color: #6a5b54;
    max-width: 200px;
}

.club form {
    display: flex
}

.club input {
    height: 30px;
    flex: 1;
    border: 1px solid #ddd3c7;
    padding: 0 10px;
    border-radius: 4px;
    font-size: 10px;
    margin-right: -8px;
}

.club button {
    border: 0;
    background: #c91e19;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 0 14px;
    border-radius: 4px;
}

.copyright {
    text-align: center;
    font-size: 10px;
    padding: 14px
}

.cart-icon {
    width: 22px;
}

.cart {
    position: fixed;
    right: -360px;
    top: 0;
    width: 340px;
    height: 100%;
    background: #fffaf3;
    z-index: 100;
    padding: 27px 24px 20px;
    transition: .35s;
    box-shadow: -12px 0 30px #35100d18;
    display: flex;
    flex-direction: column
}

.cart.open {
    right: 0
}

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

.cart-head .eyebrow {
    color: #c72a24;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .1em;
    margin: 0 0 3px
}

.cart-head h3 {
    color: var(--dark);
    font: 700 29px/1 var(--cond);
    margin: 0;
    text-transform: uppercase
}

.cart-head-count {
    color: #88776c;
    font: 600 13px var(--body)
}

.cart-close {
    border: 0;
    background: transparent;
    color: var(--dark);
    font: 400 31px/1 var(--body);
    cursor: pointer
}

.cart-body {
    flex: 1;
    overflow: auto;
    padding-top: 22px
}

.cart-empty {
    text-align: center;
    padding: 44px 15px 20px
}

.cart-empty img {
    width: 125px;
    height: 155px;
    object-fit: contain;
    opacity: .8
}

.cart-empty h4 {
    color: var(--dark);
    font: 700 21px/1.05 var(--cond);
    margin: 13px 0 8px;
    text-transform: uppercase
}

.cart-empty p {
    color: var(--muted);
    font-size: 11px;
    margin: 0 0 20px
}

.cart-empty .btn {
    min-height: 40px;
    font-size: 9px
}

.hidden {
    display: none !important
}

.cart-item {
    display: grid;
    grid-template-columns: 70px 1fr 18px;
    gap: 12px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line)
}

.cart-item-image {
    height: 92px;
    background: #f5e5d2;
    display: grid;
    place-items: center
}

.cart-item-image img {
    width: 66px;
    height: 88px;
    object-fit: contain
}

.cart-item-info h4 {
    color: var(--dark);
    font-size: 12px;
    line-height: 1.25;
    margin: 3px 0 4px;
    text-transform: uppercase
}

.cart-item-info p {
    color: var(--muted);
    font-size: 9px;
    margin: 0 0 13px
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cart-item-bottom strong {
    color: var(--red);
    font-size: 14px
}

.cart-qty {
    display: flex;
    width: 76px;
    height: 25px;
    border: 1px solid #d9cfc2
}

.cart-qty button,
.cart-qty span {
    width: 33.33%;
    border: 0;
    background: #fff;
    display: grid;
    place-items: center;
    font: 600 11px var(--body)
}

.cart-qty button {
    background: #faf1e5;
    cursor: pointer
}

.cart-remove {
    border: 0;
    background: transparent;
    color: #8b786d;
    font-size: 20px;
    line-height: 1;
    cursor: pointer
}

.shipping-progress {
    padding: 18px 0 17px;
    color: #766257;
    font-size: 9px;
    font-weight: 700
}

.shipping-progress div {
    height: 5px;
    margin-top: 8px;
    background: #eadfd3;
    border-radius: 5px;
    overflow: hidden
}

.shipping-progress i {
    display: block;
    width: 0;
    height: 100%;
    background: #cf2b26;
    transition: width .3s
}

.coupon-form {
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.coupon-form label {
    display: block;
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
    margin-bottom: 8px
}

.coupon-form div {
    display: flex;
    height: 35px
}

.coupon-form input {
    min-width: 0;
    flex: 1;
    border: 1px solid #d9cfc2;
    background: #fff;
    padding: 0 10px;
    font: 10px var(--body);
    text-transform: uppercase
}

.coupon-form button {
    border: 0;
    background: var(--dark);
    color: #fff;
    padding: 0 13px;
    font: 700 9px var(--body);
    cursor: pointer
}

.coupon-message {
    display: block;
    color: #28804b;
    font-size: 9px;
    margin-top: 7px;
    min-height: 11px
}

.cart-summary {
    padding: 17px 0 15px
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    color: var(--muted);
    font-size: 10px
}

.cart-summary strong {
    color: var(--dark);
    font-weight: 700
}

.cart-summary .discount-row {
    color: #28804b
}

.cart-summary .discount-row strong {
    color: #28804b
}

.cart-summary .cart-total {
    color: var(--dark);
    border-top: 1px solid var(--line);
    margin-top: 7px;
    padding-top: 13px;
    font-size: 13px;
    font-weight: 800
}

.cart-summary .cart-total-value {
    color: var(--red);
    font-size: 18px
}

.checkout {
    width: 100%;
    min-height: 48px
}

.secure-note {
    color: #88776c;
    text-align: center;
    font-size: 9px;
    margin: 11px 0 0
}

.overlay {
    position: fixed;
    inset: 0;
    background: #0006;
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    transition: .3s
}

.overlay.open {
    opacity: 1;
    visibility: visible
}

dialog {
    border: 0;
    border-radius: 8px;
    max-width: 760px;
    width: 90%;
    padding: 30px;
    background: #fffaf3
}

dialog::backdrop {
    background: #0007
}

.modal-close {
    position: absolute;
    right: 14px;
    top: 10px;
    border: 0;
    background: transparent;
    font-size: 28px
}

.table-wrap {
    overflow: auto
}

table {
    width: 100%;
    border-collapse: collapse
}

th,
td {
    border-bottom: 1px solid #e7ddd1;
    padding: 9px;
    text-align: left
}

.reveal {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

/* Checkout */
.checkout-page .header {
    position: relative;
    top: auto;
    border-bottom: 1px solid var(--line);
    background: var(--cream)
}

.checkout-page .header nav a {
    padding: 31px 0
}

.checkout-main {
    padding: 42px 55px 70px;
    background: #fcf2e4
}

.checkout-intro {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center
}

.eyebrow {
    color: #c72a24;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    margin: 0 0 7px
}

.checkout-intro h1 {
    color: var(--dark);
    font: 800 50px/.95 var(--hero);
    letter-spacing: -.02em;
    margin: 0 0 10px
}

.checkout-intro>p:last-child {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.checkout-layout {
    max-width: 1120px;
    margin: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(310px, .85fr);
    gap: 25px;
    align-items: start
}

.checkout-form,
.order-summary {
    background: #fffaf3;
    border: 1px solid var(--line)
}

.checkout-section {
    padding: 28px 30px;
    border-bottom: 1px solid var(--line)
}

.section-heading {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 22px
}

.step {
    color: #cf2b26;
    font: 700 19px var(--cond)
}

.section-heading h2,
.order-summary h2 {
    color: var(--dark);
    font: 700 24px/1 var(--cond);
    margin: 0 0 5px
}

.section-heading p {
    color: var(--muted);
    font-size: 10px;
    margin: 0
}

.auth-tabs,
.account-choice {
    display: flex;
    gap: 8px
}

.auth-tab,
.choice {
    flex: 1;
    border: 1px solid #dfd4c6;
    background: transparent;
    color: var(--muted);
    min-height: 43px;
    font: 700 10px var(--body);
    cursor: pointer
}

.auth-tab.active,
.choice.active {
    border-color: #c72a24;
    color: #b71915;
    background: #fff3e8
}

.account-panel {
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid var(--line)
}

.account-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 17px 0 9px
}

.account-fields label:last-of-type {
    grid-column: 1/-1
}

.account-fields[data-mode="login"] label:last-of-type {
    grid-column: auto
}

.forgot {
    color: #b71915;
    font-size: 10px
}

.account-action {
    margin-top: 11px
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 12px
}

.field-grid .wide {
    grid-column: 1/-1
}

.checkout-form label {
    color: var(--dark);
    font-size: 10px;
    font-weight: 700
}

.checkout-form input:not([type="checkbox"]):not([type="radio"]) {
    display: block;
    width: 100%;
    height: 41px;
    margin-top: 7px;
    padding: 0 12px;
    border: 1px solid #ddd1c2;
    border-radius: 3px;
    background: #fff;
    color: var(--dark);
    font: 11px var(--body)
}

.checkout-form input:focus {
    outline: 2px solid #eab2a3;
    outline-offset: 1px
}

.check-line {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 19px;
    color: var(--muted) !important;
    font-weight: 500 !important
}

.check-line input {
    accent-color: #c72a24
}

.delivery-options,
.payment-options {
    display: grid;
    gap: 9px
}

.delivery-option,
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dfd4c6;
    cursor: pointer
}

.delivery-option.active,
.payment-option.active {
    border-color: #c72a24;
    background: #fff3e8
}

.delivery-option input,
.payment-option input {
    accent-color: #c72a24
}

.delivery-option span,
.payment-option span:not(.payment-icon) {
    display: grid;
    gap: 4px;
    flex: 1
}

.delivery-option small,
.payment-option small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 500
}

.delivery-option strong,
.payment-option>strong {
    color: #b71915;
    font-size: 10px
}

.payment-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 28px;
    color: #b71915;
    border: 1px solid #e3c8b8;
    font: 800 10px var(--body)
}

.checkout-section .secure-note {
    color: #88776c;
    text-align: center;
    font-size: 9px;
    margin: 17px 0 0
}

.place-order {
    width: calc(100% - 60px);
    margin: 25px 30px 0;
    min-height: 51px
}

.form-message {
    min-height: 16px;
    color: #28804b;
    text-align: center;
    font-size: 10px;
    margin: 10px 20px 20px
}

.order-summary {
    padding: 25px;
    position: sticky;
    top: 20px
}

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

.summary-head>span {
    color: var(--muted);
    font-size: 10px
}

.summary-product {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 13px;
    align-items: start;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.summary-image {
    height: 92px;
    display: grid;
    place-items: center;
    background: #f5e5d2
}

.summary-image img {
    width: 68px;
    height: 88px;
    object-fit: contain
}

.summary-product h3 {
    color: var(--dark);
    font-size: 12px;
    line-height: 1.25;
    margin: 3px 0 4px
}

.summary-product p {
    color: var(--muted);
    font-size: 9px;
    margin: 0 0 14px
}

.summary-product>strong {
    color: var(--red);
    font-size: 13px
}

.summary-qty {
    display: flex;
    width: 76px;
    height: 25px;
    border: 1px solid #d9cfc2
}

.summary-qty button,
.summary-qty span {
    width: 33.33%;
    border: 0;
    background: #fff;
    display: grid;
    place-items: center;
    font: 600 11px var(--body)
}

.summary-qty button {
    background: #faf1e5;
    cursor: pointer
}

.checkout-coupon {
    padding: 19px 0
}

.summary-lines {
    padding: 14px 0 4px;
    border-top: 1px solid var(--line)
}

.summary-lines>div {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--muted);
    font-size: 10px
}

.summary-lines strong {
    color: var(--dark)
}

.discount-line,
.discount-line strong {
    color: #28804b !important
}

.summary-total {
    border-top: 1px solid var(--line);
    margin-top: 8px;
    padding-top: 14px !important;
    color: var(--dark) !important;
    font-size: 13px !important;
    font-weight: 800
}

.summary-total strong {
    color: var(--red) !important;
    font-size: 18px
}

.summary-promise {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 13px;
    background: #f9eddf
}

.summary-promise span {
    color: #c72a24;
    font-size: 16px
}

.summary-promise p {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.5;
    margin: 0
}

.summary-promise b {
    color: var(--dark)
}

/* .hidden-sm{
        display: none;
    } */
.hidden-lg {
    display: none;
}

@media(max-width:800px) {

    .hidden-sm {
        display: none;
    }

    .hidden-lg {
        display: block;
    }

    body {
        background: var(--cream)
    }

    .page {
        width: 100%
    }

    .announcement {
        height: auto;
        min-height: 28px;
        padding: 7px 10px;
        font-size: 8px
    }

    .announcement div:last-child {
        display: none
    }

    .header {
        height: 68px;
        padding: 0 16px;
        grid-template-columns: 70px 1fr 42px
    }

    .header nav,
    .actions {
        display: none
    }

    .menu {
        display: block;
        border: 0;
        background: transparent;
        font-size: 22px
    }

    .header nav.open {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 29;
        width: 100%;
        height: 100dvh;
        padding: 120px 32px 40px;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
    }

    .menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        color: var(--dark);
        font: 400 36px/1 var(--body);
        cursor: pointer;
    }

    .header nav.open a {
        width: min(100%, 320px);
        padding: 18px 0;
        text-align: center;
        font-size: 22px;
    }

    .header nav.open a.active:after {
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo img {
        width: 55px;
        height: 55px
    }

    .hero {
        height: auto;
        min-height: 100vh;
        display: block;
        padding: 0;
        background-image: linear-gradient(rgba(250, 237, 221, 0.45), rgba(250, 237, 221, 0.45)), url(../assets/hero-mobile-v2.png);
        /* background-image: linear-gradient(rgba(250, 237, 221, 0.45), rgba(250, 237, 221, 0.45)), url(../assets/hero-mobile.jpg); */
        background-size: cover;
        background-position: bottom;

    }

    .hero-copy {
        padding: 100px 24px 0
    }

    .hero h1 {
        font-size: 56px
    }

    .hero-art {
        display: none;
        /* position: relative;
        width: 100%;
        height: 360px;
        margin-top: -10px */
    }

    .hero-art img {
        object-position: 60% center
    }

    .product {
        height: auto;
        grid-template-columns: 35% 65%
    }

    .product-jar {
        min-height: 230px
    }

    .buy {
        min-height: 230px
    }

    .feature {
        grid-column: 1/-1
    }

    .promo {
        grid-column: 1/-1;
        height: 260px
    }

    .pairings {
        height: auto;
        padding: 20px 18px
    }

    .food-track {
        display: flex;
        overflow: auto
    }

    .food-track figure {
        min-width: 130px
    }

    .ingredients {
        height: auto;
        padding: 20px 15px
    }

    .ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 16px
    }

    .story-layout {
        grid-template-columns: none;
    }

    .info {
        height: auto;
        display: block
    }

    .info>article {
        border-bottom: 1px solid var(--line);
        min-height: 260px
    }

    .cta-copy {
        left: 8%;
        width: 60%
    }

    .footer-inner {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        /* grid-template-columns: 1fr 1fr; */
        padding: 24px
    }

    .club {
        grid-column: 1/-1
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-brand p {
        max-width: 100%;
    }

    .cart {
        width: 92%
    }

    .checkout-main {
        padding: 35px 16px 45px
    }

    .checkout-intro {
        margin-bottom: 25px
    }

    .checkout-intro h1 {
        font-size: 42px
    }

    .checkout-layout {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px
    }

    .checkout-form,
    .order-summary {
        width: 100%
    }

    .order-summary {
        position: static
    }

    .checkout-section {
        padding: 24px 18px
    }

    .section-heading h2,
    .order-summary h2 {
        font-size: 21px
    }

    .field-grid,
    .account-fields {
        grid-template-columns: 1fr
    }

    .field-grid .wide,
    .account-fields label:last-of-type,
    .account-fields[data-mode="login"] label:last-of-type {
        grid-column: auto
    }

    .auth-tabs,
    .account-choice {
        flex-direction: column
    }

    .place-order {
        width: calc(100% - 36px);
        margin-left: 18px;
        margin-right: 18px
    }
}