:root {
    --bg-light: #fefdf9;
    --bg-gradient-start: #ffedce;
    --bg-gradient-end: #ffffff;
    --text-main: #1a1a1a;
    --accent-gold: #ce9b5c;
    --accent-gold-light: #e6b678;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    background-attachment: fixed;
    line-height: 1.6;
}

.header {
    padding: 1rem 7%;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: block;
    width: 82px;
    height: 62px;
    object-fit: contain;
}

.store-link {
    padding: 0.8rem 1.1rem;
    border-radius: 4px;
    background: var(--text-main);
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.store-link:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 10%;
    gap: 4rem;
    min-height: 80vh;
}

.section.reverse {
    flex-direction: row-reverse;
}

.content {
    flex: 1;
    max-width: 600px;
}

h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.agenda-title {
    color: var(--accent-gold);
}

.agenda-title span {
    font-weight: 400;
    color: var(--text-main);
}

.main-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.quote {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    color: #444;
}

.quote cite {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
}

.script-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    border: none;
    text-align: center;
    padding: 0;
}

.ministerios-list {
    list-style: none;
}

.ministerios-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-style: italic;
    display: flex;
    align-items: center;
    text-align: left;
}

.agenda-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.agenda-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.agenda-item .day {
    font-size: 2rem;
    font-weight: 800;
    width: 80px;
}

.agenda-item .details {
    background: var(--accent-gold);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    flex: 1;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(206, 155, 92, 0.4);
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: translateY(-10px);
}

.apresentacao-quote {
    font-size: 2.6rem;
    line-height: 1.4;
}

#apresentacao {
    min-height: calc(100svh - 94px) !important;
    position: relative;
}

#mission-statement {
    position: absolute;
    right: 7%;
    bottom: 1.75rem;
    margin: 0 !important;
    text-align: right;
    white-space: nowrap;
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 4rem;
}

.footer-logo {
    max-width: 100px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .header {
        padding: 0.75rem 5%;
    }

    .logo {
        width: 64px;
        height: 48px;
    }

    .store-link {
        padding: 0.7rem 0.85rem;
        font-size: 0.66rem;
    }

    #apresentacao {
        min-height: calc(100svh - 72px) !important;
        padding-bottom: 6rem !important;
    }

    #mission-statement {
        right: 5%;
        bottom: 1.25rem;
        font-size: 0.9rem !important;
    }

    .section, .section.reverse {
        flex-direction: column;
        padding: 4rem 5%;
        text-align: center;
        gap: 2rem;
    }

    .quote {
        text-align: left;
    }
    
    .apresentacao-quote {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .agenda-item {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .agenda-item .day {
        width: auto;
    }
    
    .agenda-item .details {
        width: 100%;
    }
}

/* Loja */
.store-page {
    background: #f8f2e8;
}

.store-header {
    min-height: 92px;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(26, 26, 26, 0.09);
    background: rgba(254, 253, 249, 0.82);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
}

.store-brand img {
    display: block;
    width: 82px;
    height: 62px;
    object-fit: contain;
}

.back-link {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.back-link span {
    color: var(--accent-gold);
    margin-right: 0.45rem;
}

.store-hero {
    min-height: 540px;
    padding: 6rem 7%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(112deg, #fff9ef 0%, #ead3b1 100%);
}

.store-hero::after {
    content: "RESGATE";
    position: absolute;
    right: -1.5rem;
    top: 47%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.33);
    font-size: clamp(6rem, 16vw, 15rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.07em;
    pointer-events: none;
}

.store-hero-copy,
.hero-quote {
    position: relative;
    z-index: 1;
}

.store-hero-copy {
    max-width: 720px;
}

.eyebrow {
    color: var(--accent-gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.store-hero h1 {
    max-width: 650px;
    font-size: clamp(4rem, 9vw, 8.5rem);
    line-height: 0.82;
    letter-spacing: -0.075em;
}

.store-hero h1 span,
.impact-banner h2 span {
    color: var(--accent-gold);
}

.store-hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 2rem;
    font-size: 1.1rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--text-main);
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-quote {
    min-width: 270px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.35;
    text-align: right;
}

.products-section {
    padding: 7rem 7%;
    background: var(--bg-light);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-heading h2,
.order-card h2 {
    margin: 0;
    line-height: 1;
}

.section-heading > p {
    color: #6d655b;
    font-size: 0.86rem;
}

.store-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 2rem;
    align-items: start;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.product-card {
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(87, 62, 31, 0.08);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.15 / 1;
    background: #eadcca;
}

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

.product-card:hover .product-image-wrap img {
    transform: scale(1.025);
}

.product-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    padding: 0.45rem 0.8rem;
    border-radius: 30px;
    background: var(--text-main);
    color: white;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-info {
    padding: 1.6rem;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.product-color {
    color: var(--accent-gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-info h3 {
    font-size: 1.25rem;
    line-height: 1.3;
}

.product-price {
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 800;
}

.product-price span {
    font-size: 0.65rem;
}

.product-description {
    min-height: 68px;
    margin: 1rem 0;
    color: #6d655b;
    font-size: 0.83rem;
}

.size-picker {
    border: 0;
    margin-bottom: 1rem;
}

.size-picker legend {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.size-picker div {
    display: flex;
    gap: 0.5rem;
}

.size-picker input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-picker label {
    width: 40px;
    height: 40px;
    border: 1px solid #d7cfc4;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 700;
    transition: 0.2s ease;
}

.size-picker input:checked + label {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: #fff;
}

.size-picker input:focus-visible + label {
    outline: 3px solid rgba(206, 155, 92, 0.35);
}

.add-button,
.checkout-button {
    width: 100%;
    border: 0;
    border-radius: 4px;
    padding: 1rem 1.2rem;
    display: flex;
    justify-content: space-between;
    background: var(--text-main);
    color: white;
    cursor: pointer;
    font: 700 0.76rem 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
}

.add-button:hover,
.checkout-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.order-card {
    position: sticky;
    top: 1.5rem;
    padding: 1.6rem;
    border-radius: 20px;
    background: #f3e7d5;
}

.order-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.order-card-heading .eyebrow {
    margin-bottom: 0.4rem;
}

.cart-count {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

.empty-order {
    padding: 3rem 1rem;
    text-align: center;
}

.empty-order > span {
    display: block;
    color: var(--accent-gold);
    font-size: 2.2rem;
}

.empty-order p {
    margin-top: 0.5rem;
    font-weight: 700;
}

.empty-order small {
    display: block;
    margin-top: 0.3rem;
    color: #766c61;
    line-height: 1.5;
}

.order-items {
    list-style: none;
}

.order-items li {
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    font-size: 0.75rem;
}

.order-items li > div {
    display: flex;
    flex-direction: column;
}

.order-items li > div:last-child {
    align-items: flex-end;
}

.order-items li span {
    color: #766c61;
}

.order-items button {
    border: 0;
    background: none;
    color: #766c61;
    cursor: pointer;
    font-size: 1.1rem;
}

.order-total {
    padding-top: 1.25rem;
}

.order-total > div {
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
}

.order-total > p {
    margin: 0.7rem 0 1.2rem;
    color: #766c61;
    font-size: 0.7rem;
}

.checkout-button {
    background: var(--accent-gold);
}

.checkout-button:hover {
    background: #b98343;
}

.impact-banner {
    padding: 8rem 7%;
    text-align: center;
    background: #171717;
    color: white;
}

.impact-banner h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.impact-banner > p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: #c9c3ba;
}

.store-footer {
    margin: 0;
    padding: 2.5rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #fff;
    color: #71695f;
    font-size: 0.72rem;
}

.store-footer img {
    width: 70px;
    height: 50px;
    object-fit: contain;
}

.store-footer a {
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
}

.toast {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 50;
    padding: 1rem 1.3rem;
    border-radius: 4px;
    background: var(--text-main);
    color: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
    font-size: 0.8rem;
    font-weight: 700;
    transform: translateY(140%);
    opacity: 0;
    transition: 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Modal de identificação */
body.modal-open {
    overflow: hidden;
}

.purchase-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.purchase-modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(16, 14, 12, 0.72);
    backdrop-filter: blur(5px);
}

.modal-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
    padding: 2.5rem;
    border-radius: 20px;
    background: var(--bg-light);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.28);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: 1px solid #d8d0c5;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    font-size: 1.4rem;
}

.modal-panel h2 {
    margin-bottom: 0.5rem;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    line-height: 1;
}

.modal-intro,
.checkout-lead {
    max-width: 560px;
    margin-bottom: 1.7rem;
    color: #71695f;
    font-size: 0.86rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field > span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.75rem 0.9rem;
    border: 1px solid #d8d0c5;
    border-radius: 4px;
    outline: none;
    background: white;
    color: var(--text-main);
    font: 500 0.82rem 'Montserrat', sans-serif;
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(206, 155, 92, 0.16);
}

.privacy-check {
    margin: 1.2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: #71695f;
    font-size: 0.72rem;
}

.privacy-check input {
    margin-top: 0.15rem;
    accent-color: var(--accent-gold);
}

.continue-button,
.pay-button {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 0;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    background: var(--text-main);
    color: white;
    cursor: pointer;
    font: 800 0.75rem 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Checkout */
.checkout-page {
    min-height: 100vh;
    background: var(--bg-light);
}

.checkout-header {
    min-height: 86px;
    padding: 1rem 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(26, 26, 26, 0.09);
}

.checkout-header img {
    display: block;
    width: 76px;
    height: 56px;
    object-fit: contain;
}

.secure-label {
    color: #71695f;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.secure-label span {
    color: var(--accent-gold);
}

.checkout-main {
    min-height: calc(100vh - 86px);
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
}

.payment-panel {
    padding: 4rem max(7%, calc((100vw - 1300px) / 2));
}

.checkout-back {
    display: inline-block;
    margin-bottom: 3rem;
    color: #71695f;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
}

.payment-panel h1 {
    margin-bottom: 0.6rem;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.payment-tabs {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #d8d0c5;
}

.payment-tabs button {
    padding: 1rem;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #71695f;
    cursor: pointer;
    font: 700 0.76rem 'Montserrat', sans-serif;
}

.payment-tabs button[aria-selected="true"] {
    border-bottom-color: var(--accent-gold);
    color: var(--text-main);
}

.payment-content[hidden] {
    display: none;
}

.pay-button {
    margin-top: 1.5rem;
    background: var(--accent-gold);
}

.pay-button:hover,
.continue-button:hover {
    background: #b98343;
}

.simulation-note {
    display: block;
    margin-top: 0.65rem;
    color: #8a8177;
    text-align: center;
    font-size: 0.64rem;
}

.pix-box {
    padding: 2.5rem;
    border-radius: 12px;
    background: #f3e7d5;
    text-align: center;
}

.pix-mark {
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
    font-size: 2.2rem;
}

.pix-box h2 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.pix-box p {
    color: #71695f;
    font-size: 0.78rem;
}

.checkout-summary {
    padding: 5rem 7%;
    background: #f3e7d5;
}

.checkout-summary h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.customer-greeting {
    margin-bottom: 2rem;
    color: #71695f;
    font-size: 0.75rem;
}

.checkout-items {
    list-style: none;
    border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.checkout-items li {
    padding: 1.1rem 0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.12);
    font-size: 0.75rem;
}

.checkout-items li div {
    display: flex;
    flex-direction: column;
}

.checkout-items li span {
    color: #71695f;
}

.checkout-total {
    padding: 1.4rem 0;
    display: flex;
    justify-content: space-between;
    font-size: 1.15rem;
}

.cause-note {
    margin-top: 2rem;
    padding: 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border: 1px solid rgba(206, 155, 92, 0.45);
    color: #71695f;
    font-size: 0.72rem;
}

.cause-note > span {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.thank-you {
    min-height: 100vh;
    padding: 5rem 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(135deg, #fff9ef, #ead3b1);
}

.thank-you[hidden] {
    display: none !important;
}

.thank-you img {
    width: 100px;
    margin-bottom: 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.thank-you h1 span {
    color: var(--accent-gold);
}

.thank-you > p:not(.eyebrow) {
    max-width: 650px;
}

.order-number {
    margin: 2rem 0;
    padding: 0.75rem 1.2rem;
    border: 1px solid rgba(26, 26, 26, 0.2);
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.thank-you a {
    color: var(--text-main);
    font-size: 0.76rem;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .store-layout {
        grid-template-columns: 1fr;
    }

    .order-card {
        position: static;
    }

    .checkout-main {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        grid-row: 1;
        padding: 3rem 7%;
    }
}

@media (max-width: 720px) {
    .modal-panel {
        padding: 2rem 1.25rem 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field-full {
        grid-column: auto;
    }

    .checkout-header,
    .payment-panel,
    .checkout-summary {
        padding-inline: 5%;
    }

    .payment-panel {
        padding-block: 3rem;
    }

    .checkout-back {
        margin-bottom: 2rem;
    }

    .store-header {
        min-height: 76px;
        padding-inline: 5%;
    }

    .store-brand img {
        width: 64px;
        height: 48px;
    }

    .store-hero {
        min-height: 560px;
        padding: 5rem 5% 3rem;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
    }

    .store-hero h1 {
        font-size: clamp(3.7rem, 19vw, 6rem);
    }

    .hero-quote {
        min-width: 0;
        font-size: 1.4rem;
        text-align: left;
    }

    .products-section {
        padding: 5rem 5%;
    }

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

    .section-heading h2 {
        font-size: 2.3rem;
    }

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

    .product-description {
        min-height: 0;
    }

    .store-footer {
        flex-direction: column;
        text-align: center;
    }

    .toast {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        text-align: center;
    }
}
