.grid-ng,
.grid-g {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5rem;
    padding: 2rem 0;
}

.grid-ng {
    grid-gap: 0
}

.grid-ng__text,
.grid-g__text {
    display: grid;
    grid-gap: 0
}

@font-face {
    font-family: Metropolis;
    src: url(../fonts/metropolis-regular.woff2) format("woff2"), url(../fonts/metropolis-regular.woff) format("woff");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Metropolis;
    src: url(../fonts/metropolis-semibold.woff2) format("woff2"), url(../fonts/metropolis-semibold.woff) format("woff");
    font-style: normal;
    font-weight: 600
}

@font-face {
    font-family: Playfair Display;
    src: url(../fonts/playfair-display-regular.woff2) format("woff2"), url(../fonts/playfair-display-regular.woff) format("woff");
    font-style: normal;
    font-weight: 400
}

@font-face {
    font-family: Playfair Display;
    src: url(../fonts/playfair-display-italic.woff2) format("woff2"), url(../fonts/playfair-display-italic.woff) format("woff");
    font-style: italic;
    font-weight: 400
}

@font-face {
    font-family: Playfair Display;
    src: url(../fonts/playfair-display-600.woff2) format("woff2"), url(../fonts/playfair-display-600.woff) format("woff");
    font-style: italic;
    font-weight: 600
}

:root {
  --white: #fff;
  --dark-gray: #414b56;
  --dark-gray-alt-1: #6b7b8c;
  --dark-gray-alt-2: #a1a4a6;
  --dark-gray-alt-3: #676f78;
  --dark-gray-alt-4: #2b343e;
  --light-gray: #d2d6d9;
  --light-gray-alt-1: #e1e5e6;
  --light-gray-alt-2: #f8f8f8;
  --light-gray-alt-3: #fcfcfc;
  --light-gray-alt-4: #525e69;
  --light-gray-alt-5: #eff3f5;
  --subtle-gray: #ebeff2;
  --content-padding: 1.5rem;
  --content-inset: 5rem;
  --gutter: 2rem;
  --letter-spacing: .05em;
  --font-size: 112.5%;
  --playfair-display: "Playfair Display", serif;
  --metropolis: "Metropolis", sans-serif;
}

/*! normalize.css v8.0.1 | MIT License | gitgrid-g.com/necolas/normalize.css */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: 600
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

[hidden],
template {
    display: none
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
    font: normal 400 var(--font-size)/1.6 var(--metropolis), sans-serif
}

html::-moz-selection {
    color: #fff;
    background: #00bee1
}

html::selection {
    color: #fff;
    background: #00bee1
}

@media (max-width:1200px) {
    html {
        --content-inset: 4rem;
        --font-size: 112.5%
    }
}

@media (max-width:800px) {
    html {
        --content-inset: 2.5rem
    }
}

@media (max-width:600px) {
    html {
        --content-inset: 1.5rem;
        --font-size: 100%
    }
}

body {
    background: var(--white);
    color: var(--dark-gray);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body *,
body:after,
body:before {
    box-sizing: border-box
}

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

.input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 .9rem;
    padding: .6rem;
    background: #f8f8f8;
    border: 1px solid #e1e5e6;
    border-radius: 0;
    outline: none;
    resize: vertical;
    transition: border-color .3s ease;
    color: #676f78;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15
}

.input[disabled] {
    border-color: #c8c8c8;
    background-color: #f2f2f2;
    box-shadow: none;
    cursor: not-allowed;
    color: #0d0d0d
}

.input:focus {
    background: #fff;
    border-color: #a1a4a6
}

.input::-webkit-input-placeholder {
    color: #999;
    opacity: 1
}

.input::-moz-placeholder {
    color: #999;
    opacity: 1
}

.input:-ms-input-placeholder {
    opacity: 1
}

.input::-ms-input-placeholder {
    opacity: 1
}

.input::placeholder {
    color: #999;
    opacity: 1
}

.input:-ms-input-placeholder {
    color: #999
}

.input::-ms-input-placeholder {
    color: #999
}

.control {
    position: relative;
    margin: 0 0 .9rem;
    box-sizing: border-box
}

.control__input {
    position: absolute;
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    left: 0;
    top: calc(50% - 10px);
    width: 20px;
    height: 20px;
    pointer-events: none
}

.control__label {
    display: flex;
    align-items: center;
    position: relative;
    color: #000
}

.control__label:after,
.control__label:before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid transparent
}

.control__label:before {
    flex-shrink: 0;
    transition: border-color .3s ease;
    margin-right: .6rem;
    border-color: #bbb;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05);
    background: #fff
}

.control__label:after {
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(0);
    transition: transform .3s ease
}

.control__input[type=radio]+.control__label:before {
    border-radius: 100%
}

.control__input[type=radio]+.control__label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cpath d='M256 464c114.9 0 208-93.1 208-208S370.9 48 256 48 48 141.1 48 256s93.1 208 208 208z'/%3E%3C/svg%3E")
}

.control__input[type=checkbox]+.control__label:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cpath d='M461.6 109.6l-54.9-43.3c-1.7-1.4-3.8-2.4-6.2-2.4-2.4 0-4.6 1-6.3 2.5L194.5 323s-78.5-75.5-80.7-77.7c-2.2-2.2-5.1-5.9-9.5-5.9s-6.4 3.1-8.7 5.4c-1.7 1.8-29.7 31.2-43.5 45.8-.8.9-1.3 1.4-2 2.1-1.2 1.7-2 3.6-2 5.7 0 2.2.8 4 2 5.7l2.8 2.6s139.3 133.8 141.6 136.1c2.3 2.3 5.1 5.2 9.2 5.2 4 0 7.3-4.3 9.2-6.2l249.1-320c1.2-1.7 2-3.6 2-5.8 0-2.5-1-4.6-2.4-6.4z'/%3E%3C/svg%3E")
}

.control__input[type=checkbox][disabled]+.control__label,
.control__input[type=radio][disabled]+.control__label {
    cursor: not-allowed;
    color: #0d0d0d
}

.control__input[type=checkbox][disabled]+.control__label:before,
.control__input[type=radio][disabled]+.control__label:before {
    border-color: #c8c8c8;
    background-color: #f2f2f2;
    box-shadow: none
}

.control__input:focus+.control__label:before {
    border-color: #17f
}

.control__input:checked+.control__label:after {
    transform: scale(1)
}

.select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
    margin: 0 0 .9rem;
    padding: .6rem calc(.9rem + 12px) .6rem .6rem;
    width: 100%;
    background: #fff;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cpath d='M256 298.3l174.2-167.2c4.3-4.2 11.4-4.1 15.8.2l30.6 29.9c4.4 4.3 4.5 11.3.2 15.5L264.1 380.9c-2.2 2.2-5.2 3.2-8.1 3-3 .1-5.9-.9-8.1-3L35.2 176.7c-4.3-4.2-4.2-11.2.2-15.5L66 131.3c4.4-4.3 11.5-4.4 15.8-.2L256 298.3z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: calc(100% - .6rem) 50%;
    border: 1px solid #bbb;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05);
    border-radius: 0;
    outline: 0;
    transition: border-color .3s ease;
    color: #000;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15
}

.select[disabled] {
    border-color: #c8c8c8;
    background-color: #f2f2f2;
    box-shadow: none;
    cursor: not-allowed;
    color: #0d0d0d
}

.select:focus {
    border-color: #17f
}

.select::-ms-expand {
    display: none
}

.h1,
.h2,
.h3,
.h4,
.h5 {
    margin: 0 0 calc(var(--gutter)/2);
    color: var(--dark-gray);
    text-rendering: optimizeLegibility;
    font-weight: 400;
}

.h1 {
    font-family: var(--playfair-display), serif;
    font-size: 2.6em;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 calc(var(--gutter)/2);
}

@media (max-width:800px) {
    .h1 {
        font-size: 2.4em
    }
}

.h2 {
    font-family: var(--playfair-display), serif;
    font-size: 2.2em;
    line-height: 1.3;
}

@media (max-width:800px) {
    .h2 {
        font-size: 2em
    }
}

.h3 {
    font-family: var(--metropolis), sans-serif;
    font-weight: 600;
    font-size: .7em;
    letter-spacing: 2.5px;
    line-height: calc(100% + 10px);
    text-transform: uppercase;
    margin: 0
}

.h4 {
    font-family: var(--playfair-display), serif;
    font-size: 1.2em;
    line-height: 1.3;
    text-align: center;
}

.h5 {
    font-family: var(--playfair-display), serif;
    font-size: 1.6em;
    line-height: 1.3;
    margin: 0
}

@media (max-width:800px) {
    .h5 {
        font-size: 1.4em
    }
}

.p1,
.p2,
.p3,
.p4,
.p5 {
    margin: 0
}

.p1 {
    font-size: 1.15em;
}

.p2 {
    font-size: 1em
}

.p3 {
    font-size: 1em;
    margin: 0 0 calc(var(--gutter));

}

.p4 {
    font-family: var(--playfair-display), serif;
    font-size: 1.1em;
    font-style: italic;
    margin: 0 0 calc(var(--gutter)*0.5);

}

.p5 {
  font-size: .75em
}

.fs {
  font-family: var(--playfair-display), serif;
}

.fi {
  font-style: italic;
}

.fw-600 {
  font-weight: 600;
}

.mt10 {
   margin-top: 10px
}

.btss {
    border-top-style: solid;
}

.bc-light-gray {
    border-color: var(--light-gray);
}

.btw1 {
    border-top-width: 1px;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.p1r {
  padding: 1rem
}

ul {
    position: relative;
    padding-left: 2rem;
}

li {
    margin-bottom: .16667rem
}

li:last-child {
    margin-bottom: 0
}

.hidden {
    display: none
}

.c-white {
  color: var(--white)
}

.c-dark-gray {
  color: var(--dark-gray)
}

.c-dark-gray-alt-1 {
  color: var(--dark-gray-alt-1)
}

.c-dark-gray-alt-2 {
  color: var(--dark-gray-alt-2)
}

.c-dark-gray-alt-3 {
  color: var(--dark-gray-alt-3)
}

.c-dark-gray-alt-4 {
  color: var(--dark-gray-alt-4)
}

.c-light-gray {
  color: var(--light-gray)
}

.c-light-gray-alt-1 {
  color: var(--light-gray-alt-1)
}

.c-light-gray-alt-2 {
  color: var(--light-gray-alt-2)
}

.c-light-gray-alt-3 {
  color: var(--light-gray-alt-3);
}

.c-light-gray-alt-4 {
  color: var(--light-gray-alt-4);
}

.c-light-gray-alt-5 {
  color: var(--light-gray-alt-5);
}

.c-subtle-gray: {
  color: var(--subtle-gray);
}

.bg-light-brown {
  background: #F9F5F4
}

@media (min-width: 1200px) {
   .w--1200 {
        width: 66.66667%
    }
}

.subtitle {
    text-transform: uppercase;
    color: var(--dark-gray-alt-2);
    font-weight: 600;
    font-size: .65em;
    letter-spacing: 2.5px;

}

.link {
    color: #00a2e1;
    text-decoration: none;
}

.underline {
    position: relative;
    color: currentColor;
    text-decoration: none;
}

.underline:after {
    --scale: 0;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 2px;
    background: var(--dark-gray);
    transform: scaleX(var(--scale));
    transform-origin: var(--x) 50%;
    transition: transform .3s cubic-bezier(.51, .92, .24, 1)
}

.underline:hover:after {
    --scale: 1
}

.current {
    font-weight: 600
}

.steps {
    display: grid;
    grid-gap: 1rem
}

.steps__step {
    display: grid;
    align-items: center;
    grid-auto-flow: column;
    justify-content: flex-start;
    grid-gap: 1rem
}

.steps__number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: auto;
}

.steps__number span {
    position: relative;
    color: var(--light-gray);
    font-size: 4em;
    z-index: 1
}

.steps__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: auto;
    padding: .5rem 1rem .5rem
}

.content {
    margin: 0 auto;
    padding: 0 var(--content-padding);
    width: 100%;
    max-width: 1400px
}

.content--constrained {
    padding: 0 var(--content-inset);
}

.section {
    padding-top: 16vh
}

.subsection {
    padding-top: 8vh
}

.banner {
    margin-top: 4vh
}

.header {
  display: grid;
  justify-content: space-between;
  grid-auto-flow: column;
  padding: 1rem 0;
}

.header__logo {
    display: grid;
    align-items: center;
    grid-gap: 3rem;
    grid-auto-flow: column
}

.header__icon {
    width: 132px;
    height: 72px;
    fill: var(--dark-gray)
}


.header__nav {
    display: grid;
    align-items: center;
    grid-gap: 1rem;
    grid-auto-flow: column;
}

.header__basket {
  padding-top: 8px;
  width: 21px;
  height: 30px;
  fill: var(--dark-gray)

}

.plain {
    display: grid;
    grid-gap: 0;
    margin-top: 8vh;
}

.hero {
    display: grid;
    justify-items: center;
    grid-gap: 0;
    margin-top: 8vh;
    padding: 6vh 10%;
    text-align: center
}

@media (max-width:600px) {
    .hero {
        margin-top: 10vh
    }
}


@media (max-width:600px) {
    .hero {
        margin-top: 10vh
    }
}

@media (max-width:1000px) {
    .grid-g {
        grid-template-columns: 1fr;
        justify-items: center
    }
}

.grid-g__visual {
    display: block;
    width: 100%;
    max-width: 610px;
    height: auto
}

@media (max-width:1000px) {
    .grid-g__visual {
        max-width: 500px
    }
}


@media (max-width:800px) {
    .grid-ng {
        grid-template-columns: 1fr
    }
}

.grid-ng__visual {
    display: block;
    width: 100%;
    max-width: 610px;
    height: auto
}

@media (max-width:800px) {
    .grid-ng__visual {
        order: -1;
    }
}

@media (max-width:1000px) {
    .grid-ng__visual {
        max-width: 500px
    }
}

.grid-ng__text {
    padding: 2.5rem;
    text-align: center;
}

.cart {
    display: grid;
    grid-gap: 2rem;
}

.cart__row {
    padding: 1em 0;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 0;
    border-bottom: 3px solid #414b56;
}

.cart__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.cart__image {
    display: block;
    width: 100%;
    max-width: 230px;
    height: auto
}

.cart__product,
.cart__total {
    display: grid;
    grid-gap: 0
}

.cart__quantity {
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    grid-gap: 1rem
}

.cart__product {
    text-align: left;
}

.cart__quantity {
    text-align: center;
}

.cart__delete {
    text-align: right;
}

.cart__total {
    text-align: right;
}

.cart__icon{
    margin-top: 12px;
    width: 12px;
    height: 12px;
    fill: var(--dark-gray)
}

.cart__input{
    width: 50px;
    text-align: center;
}

.cart__trash{
    width: 25px;
    height: 25px;
    fill: var(--dark-gray)
}

@media (max-width:800px) {
    .cart__row {
        grid-template-columns: 1fr;
        grid-gap: 1em
    }
    .cart__product,
    .cart__quantity,
    .cart__delete,
    .cart__total {
        text-align: center;
    }

}

.totals {
    padding-top: 1em;
    display: grid;
    grid-gap: 1rem
}

.totals__total {
    display: grid;
    align-items: center;
    grid-auto-flow: column;
    justify-content: flex-end;
    grid-gap: 6rem;
}

@media (max-width:800px) {
  .totals__total {
      justify-content: space-between;
  }
}

.totals__text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 200px;
    height: auto;
}

.footer {
    display: grid;
    grid-auto-flow: column;
    padding: 6vh 0;
    grid-gap: 1rem;
    color: var(--dark-gray-alt-3)
}

@media (max-width:800px) {
    .footer {
        grid-auto-flow: row
    }
}

.footer__links {
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-end;
    grid-gap: 0 1rem
}

@media (max-width:800px) {
    .footer__links {
        grid-auto-flow: row;
        justify-content: flex-start;
        justify-items: flex-start
    }
}

.dm {
    width: 30px;
    height: 30px;
    margin: 0 10px -10px;
    fill: var(--dark-gray);
}

#age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

#age-modal.hidden {
    display: none;
}

.modal-box {
    text-align: center;
    padding: 4rem;
    max-width: 500px;
}

.buttons {
    margin: 30px 0;
}

.modal-box__logo {
    margin-bottom: 3rem
}

.modal-box__icon {
    width: 186px;
    height: 122px;
    fill: var(--dark-gray)
}

.btn,
a.btn {
    display: inline-block;
    padding: 1.4em 2em;
    line-height: 1em;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: box-shadow .3s cubic-bezier(.51, .92, .24, 1), -webkit-transform .3s cubic-bezier(.51, .92, .24, 1);
    transition: transform .3s cubic-bezier(.51, .92, .24, 1), box-shadow .3s cubic-bezier(.51, .92, .24, 1);
    transition: transform .3s cubic-bezier(.51, .92, .24, 1), box-shadow .3s cubic-bezier(.51, .92, .24, 1), -webkit-transform .3s cubic-bezier(.51, .92, .24, 1);
    border: 0;
    border-radius: 2px
}

.btn:hover,
a.btn:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px)
}

.btn:active,
a.btn:active {
    transition: none;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px)
}

.btn--full,
a.btn--full {
    width: 100%
}

.btn--main,
a.btn--main {
    background: #00a2e1;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 0 0 rgba(0, 0, 0, .15)
}

.btn--white,
a.btn--white {
    background: #fff;
    font-weight: 600;
    color: var(--dark-gray);
    border: 2px solid #414b56;
    box-shadow: 0 0 0 rgba(0, 0, 0, .15)
}

.btn--main:hover,
a.btn--main:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.btn--main:active,
a.btn--main:active {
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.mb24 {
  margin-bottom: 24px
}

.mb2r {
  margin-bottom: 2rem
}

.mb3r {
  margin-bottom: 3rem
}

.error-msg {
    display: none;
    color: #e74c3c;
    margin-top: 20px;
    padding: 15px;
    background: #ffeaea;
    border-radius: 4px;
}

/* === FULL RESPONSIVENESS FIXES === */

/* 1. Make both grid types stack and full-width on mobile */
@media (max-width: 1000px) {
    .grid-g,
    .grid-ng {
        grid-template-columns: 1fr;        /* Stack columns */
        grid-gap: 2rem;                    /* Reduce gap on smaller screens */
        text-align: center;                /* Center text content */
    }

    .grid-g__visual,
    .grid-ng__visual {
        max-width: 100%;                   /* Allow images to go full width */
        width: 100%;
        height: auto;
    }

    .grid-ng__text {
        padding: 1rem 0;                   /* Reduce heavy padding on mobile */
    }
}

/* 2. Further refinements for very small screens (phones) */
@media (max-width: 600px) {
    :root {
        --content-inset: 1.5rem;            /* Already set, but reinforce */
        --content-padding: 1.5rem;
        --gutter: 1.5rem;
    }

    /* Ensure all main content uses full available width */
    .content,
    .content--constrained {
        padding: 0 var(--content-padding);
    }

    /* Hero section full-width adjustments */
    .hero {
        padding: 6vh 5%;                    /* Reduce side padding */
    }

    /* Make all images in grids truly full-width */
    .grid-g__visual img,
    .grid-ng__visual img,
    .cart__image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Text blocks full width and better spacing */
    .grid-g__text,
    .grid-ng__text {
        width: 100%;
        padding: 0 1rem;
    }

    /* Cart improvements on mobile */
    .cart__row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart__image {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Ensure headings and paragraphs don't feel cramped */
    .h1 {
        font-size: 2.2em;
    }
    .h2 {
        font-size: 1.8em;
    }
    .p1, .p2, .p3, .p4 {
        font-size: 1em;
    }
}

/* 3. General image responsiveness (add if not already covered) */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 4. Optional: Ensure sections don't have excessive top padding on mobile */
@media (max-width: 600px) {
    .section {
        padding-top: 10vh;
    }
    .subsection {
        padding-top: 6vh;
    }
}
