@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    overflow-x: hidden;
}

body {
    background: #f7f1e8;
    color: #3a2313;
    scroll-behavior: smooth;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 247, 236, 0.9);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 100;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 120px;
    width: auto;
    transition: 0.3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 247, 236, 0.8);
    padding: 50px 70px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 30px;
    background: #a25b39;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
}

.cta:hover {
    background: #8d4c30;
    transform: scale(1.03);
}

.cookie-spin {
    width: 22px;
    height: 22px;
    transform-origin: center;
    animation: cookie-spin 6s linear infinite;
    vertical-align: middle;
}

@keyframes cookie-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

.section .content {
    flex: 1;
    padding: 80px;
}

.section .image-side {
    flex: 1;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.section-1 {
    background: #fff9f4;
}

.section-2 {
    background: #2c1d14;
    color: #fff;
}

.section-3 {
    background: #f1e0d0;
    text-align: center;
}

.section .btn {
    background: #a25b39;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.section .btn:hover {
    background: #8d4c30;
}

/* Rodapé */
footer {
    background: #3b2514;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: auto;
}

.section-3 {
    background: #f7f1e8;
    padding: 80px 20px;
}

.section-3 h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #3a2313;
}

.section-3 p {
    font-size: 1.1rem;
    color: #5a4234;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-info {
    padding: 20px;

    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
}

.menu-info h3 {
    font-size: 1.4rem;
    color: #3a2313;
    margin-bottom: 8px;
}

.menu-desc {
    font-size: 0.95rem;
    color: #5a4234;
    margin-bottom: 16px;
    line-height: 1.5;

    min-height: 60px;
}

/*
.menu-footer {

    display: grid;

    grid-template-columns: 1fr auto;

    grid-template-areas:
        "price qty"
        "button button";

    gap: 10px;
    margin-top: auto;
    align-items: center;

}

.menu-footer .price {
    grid-area: price;
}

.menu-footer .quantity {
    grid-area: qty;
    justify-self: end;
}

.menu-footer .add-btn {
    grid-area: button;
    width: 100%;
}*/

.menu-footer {

    margin-top: auto;

    display: grid;

    grid-template-columns: 1fr auto;

    grid-template-areas:
        "price qty"
        "button button";

    gap: 12px;

    align-items: center;

}

/* preço */
.menu-footer .price {
    grid-area: price;
    white-space: nowrap;
}

/* quantidade */
.menu-footer .quantity {
    grid-area: qty;
    justify-self: end;
}

/* botão */
.menu-footer .add-btn {
    grid-area: button;
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
}

.price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #a25b39;
}

.add-btn {
    background: #a25b39;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.add-btn:hover {
    background: #8d4c30;
    transform: scale(1.05);
}

.order-btn {
    margin-top: 50px;
    background: #a25b39;
    color: #fff;
    border-radius: 30px;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.order-btn:hover {
    background: #8d4c30;
    transform: scale(1.05);
}

.menu-photo {
    width: 100%;
    height: 260px;

    object-fit: cover;
    object-position: center;

    background: transparent;
    padding: 0;

    transition: transform .35s ease;
    animation: none !important;
}

.menu-photo.animate {
    animation: none !important;
}

.menu-card:hover .menu-photo {
    transform: scale(1.05);
}

@keyframes slow-pan {
    0% {
        object-position: center top;
        transform: scale(1);
    }

    50% {
        object-position: center center;
        transform: scale(1.04);
    }

    100% {
        object-position: center bottom;
        transform: scale(1);
    }
}

.menu-photo.animate {
    animation: slow-pan 15s ease-in-out infinite alternate;
}




@media (max-width: 768px) {

    .pix-details #copy-pix-key {
        font-size: 1.1rem !important;
        padding: 12px 20px !important;
        width: 100% !important;
        height: 50% !important;
        border-radius: 10px !important;
    }

    body {
        background: #fff9f4;
        font-size: 0.95rem;
    }

    .header {
        height: 60px;
        padding: 0 20px;
    }

    .logo img {
        height: 65px;
    }

    .hero {
        height: 85vh;
        padding: 0 15px;
    }

    .hero-content {
        padding: 30px 20px;
        border-radius: 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
    }

    .section .content {
        padding: 40px 20px;
    }

    .section .image-side {
        height: 300px;
        background-position: center;
    }

    .section-3 {
        padding: 60px 10px;
    }

    .section-3 h2 {
        font-size: 1.8rem;
    }

    .section-3 p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        max-width: 95%;
        justify-items: stretch;
    }

    .menu-card {
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        justify-content: flex-start;
    }

    .menu-photo {
        height: 190px;
        animation: none;
    }

    @keyframes slow-pan-mobile {
        0% {
            object-position: center top;
            transform: scale(1);
        }

        50% {
            object-position: center 60%;
            transform: scale(1.02);
        }

        100% {
            object-position: center bottom;
            transform: scale(1);
        }
    }

    .menu-info h3 {
        font-size: 1.2rem;
    }

    .menu-desc {
        font-size: 0.9rem;
    }

    .menu-footer {
        grid-template-columns: 1fr auto;

        grid-template-areas:
            "price qty"
            "button button";

        gap: 10px;
    }

    .menu-footer .add-btn {
        width: 100%;
    }

    .menu-footer .price {
        width: 100%;
        margin-bottom: 4px;
    }

    .menu-footer .quantity {
        flex-shrink: 0;
    }





    .order-btn {
        font-size: 0.9rem;
        padding: 12px 25px;
        margin-top: 30px;
    }

    footer {
        font-size: 0.85rem;
        padding: 20px;
    }

    @keyframes slideInItem {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }


    @media (max-width: 768px) {
        .mobile-menu a {
            font-size: 1.4rem;
        }

        .close-menu {
            font-size: 1.8rem;
            top: 20px;
            right: 20px;
        }
    }

    .checkout {
        width: 100%;
        margin: 80px auto 40px;
        padding: 10px 15px;
        background: #fff9f4;
        box-shadow: none;
        border-radius: 0;
    }

    .checkout h1 {
        font-size: 1.6rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .order-id {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 20px;
        color: #6a4b35;
    }

    .cart-items {
        gap: 15px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 12px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    }

    .cart-item img {
        width: 100%;
        height: auto;
        max-height: 180px;
        border-radius: 8px;
        margin-bottom: 10px;
        object-fit: cover;
    }

    .item-info {
        width: 100%;
        margin: 0;
    }

    .item-info h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .item-info .price {
        font-size: 0.95rem;
    }

    .item-actions {
        width: 100%;
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .quantity {
        gap: 6px;
    }

    .quantity button {
        padding: 3px 10px;
        font-size: 1rem;
    }

    .item-actions .subtotal {
        font-size: 1rem;
    }

    .item-actions .remove {
        font-size: 1.2rem;
    }

    .cart-summary {
        text-align: center;
        margin-top: 30px;
    }

    .cart-summary h2 {
        font-size: 1.3rem;
    }

    .payment-section,
    .customer-name {
        width: 100%;
        text-align: left;
        margin-top: 20px;
    }

    .payment-section label,
    .customer-name label {
        display: block;
        margin-bottom: 6px;
        font-size: 0.9rem;
        color: #3a2313;
    }

    .payment-method,
    .customer-name input {
        width: 100%;
        padding: 10px;
        border: 1px solid #e0c7b3;
        border-radius: 8px;
        background: #fff;
        font-size: 0.9rem;
    }

    .btn.order-btn {
        width: 100%;
        margin-top: 25px;
        padding: 14px;
        font-size: 1rem;
        border-radius: 8px;
    }

    footer {
        padding: 15px;
        font-size: 0.8rem;
        text-align: center;
    }




}



.mobile-menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 249, 244, 0.97);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    transform: translateY(-20px);
    z-index: 1050;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.menu-open {
    overflow: hidden;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #3a2313;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.close-menu:hover {
    transform: scale(1.2);
    color: #a25b39;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    margin: 25px 0;
    animation: slideInItem 0.5s ease forwards;
    opacity: 0;
}

.mobile-menu.active li {
    opacity: 1;
}

.mobile-menu a {
    font-size: 1.6rem;
    font-weight: 600;
    color: #3a2313;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #a25b39;
}



.menu-toggle {
    position: relative;
    width: 30px;
    height: 24px;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    z-index: 1100;
    -webkit-tap-highlight-color: transparent;
}

.menu-toggle .bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #3a2313;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.25s ease, top 0.3s ease;
    transform-origin: center center;

    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity, top;
    isolation: isolate;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.menu-toggle .bar:nth-child(1) {
    top: 4px;
}

.menu-toggle .bar:nth-child(2) {
    top: 10px;
}

.menu-toggle .bar:nth-child(3) {
    top: 16px;
}

.menu-toggle.open .bar:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}


.cart-icon {
    position: relative;
    margin-right: 20px;
}

.cart-icon a {
    color: #3a2313;
    text-decoration: none;
    font-size: 1.6rem;
    position: relative;
}

#cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #a25b39;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 6px;
}

.quantity button {
    background: #f1e0d0;
    border: none;
    padding: 3px 8px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    color: #3a2313;
}

.quantity .qty {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: #3a2313;
}


.checkout {
    width: 100%;
    min-height: 100vh;
    background: #fff9f4;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 120px 20px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.checkout-container h1 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
    color: #3a2313;
}

.order-id {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.9rem;
    color: #6a4b35;
    margin-bottom: 25px;
}


.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    background: #fff9f4;
    padding: 12px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
}

.item-info {
    flex: 1;
    margin-left: 15px;
}

.item-info h3 {
    font-size: 1.1rem;
    color: #3a2313;
    margin-bottom: 6px;
}

.item-info .price {
    color: #a25b39;
    font-weight: 600;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.quantity button {
    background: #f1e0d0;
    border: none;
    padding: 4px 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #3a2313;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.quantity button:hover {
    background: #e6d1bc;
}

.quantity .qty {
    font-weight: 600;
    color: #3a2313;
    min-width: 20px;
    text-align: center;
}

.item-actions {
    text-align: right;
}

.item-actions .subtotal {
    display: block;
    font-weight: 700;
    color: #3a2313;
    margin-top: 5px;
}

.item-actions .remove {
    background: none;
    border: none;
    color: #a25b39;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.item-actions .remove:hover {
    color: #8d4c30;
}

.cart-summary {
    background: #fff9f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.cart-summary h2 {
    text-align: center;
    font-size: 1.4rem;
    color: #3a2313;
    margin-bottom: 20px;
}

.cart-summary .total {
    text-align: center;
    font-size: 1.2rem;
    color: #a25b39;
    font-weight: bold;
    margin-bottom: 25px;
}

.payment-section,
.customer-name {
    margin-bottom: 20px;
}

.payment-section label,
.customer-name label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: #3a2313;
}

.payment-method,
.customer-name input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0c7b3;
    border-radius: 8px;
    background: #fff;
    font-size: 0.9rem;
}

.btn.order-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    background: #a25b39;
    color: #fff;
    border: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.btn.order-btn:hover {
    background: #8d4c30;
    transform: scale(1.02);
}


.empty {
    text-align: center;
    color: #5a4234;
    font-style: italic;
    padding: 40px 0;
}


@media (max-width: 768px) {

    .checkout {
        padding: 100px 15px 40px;
    }

    .checkout-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 25px;
        box-shadow: none;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .cart-item img {
        width: 100%;
        max-width: 180px;
        height: auto;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .item-actions {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }

    .item-info {
        margin-left: 0;
        width: 100%;
    }


    .cart-summary {
        padding: 20px;
        border: 1px solid #f0e2d4;
        box-shadow: none;
        text-align: center;
    }

    .btn.order-btn {
        width: 100%;
        border-radius: 6px;
        margin-top: 15px;
    }
}


.checkout .cart-item {
    display: grid;
    grid-template-columns: 64px minmax(180px, 1fr) 150px 160px 130px 48px;
    align-items: center;
    gap: 14px;
    padding: 12px 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.checkout .cart-item>img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    justify-self: start;
}

.checkout .cart-item .item-info {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px 16px;
}

.checkout .cart-item .item-info h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #3a2313;
    grid-column: 1 / 2;
}

.checkout .cart-item .item-info .price {
    grid-column: 2 / 3;
    justify-self: end;
    font-weight: 700;
    color: #a25b39;
    white-space: nowrap;
}

.checkout .cart-item .quantity {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff9f4;
    border: 1px solid #e8d7c7;
    border-radius: 8px;
    padding: 6px 8px;
}

.checkout .cart-item .quantity button {
    background: #f1e0d0;
    border: none;
    padding: 6px 10px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    color: #3a2313;
    min-width: 32px;
    line-height: 1;
    transition: transform .15s ease, background .2s ease, opacity .2s ease;
}

.checkout .cart-item .quantity button:active {
    transform: scale(0.96);
}

.checkout .cart-item .quantity .qty {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    color: #3a2313;
}

.checkout .cart-item .item-actions {
    justify-self: end;
    text-align: right;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 6px;
}

.checkout .cart-item .item-actions .subtotal {
    font-weight: 800;
    color: #3a2313;
    white-space: nowrap;
}

.checkout .cart-item .item-actions .remove {
    justify-self: end;
    font-size: 1.25rem;
    color: #a25b39;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s ease, transform .15s ease;
}

.checkout .cart-item .item-actions .remove:hover {
    color: #8d4c30;
    transform: scale(1.05);
}

.checkout .cart-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}



@media (max-width: 992px) {
    .checkout .cart-item {
        grid-template-columns: 56px minmax(160px, 1fr) 120px 130px 110px 44px;
        gap: 12px;
    }

    .checkout .cart-item>img {
        width: 56px;
        height: 56px;
    }

    .checkout .cart-item .item-info h3 {
        font-size: .95rem;
    }
}

@media (max-width: 640px) {
    .checkout .cart-item {
        grid-template-columns: 56px minmax(120px, 1fr) 1fr 44px;
        grid-template-areas:
            "img info qty remove"
            "img subtotal subtotal remove";
        align-items: center;
    }

    .checkout .cart-item>img {
        grid-area: img;
    }

    .checkout .cart-item .item-info {
        grid-area: info;
    }

    .checkout .cart-item .quantity {
        grid-area: qty;
        justify-self: end;
    }

    .checkout .cart-item .item-actions {
        grid-area: subtotal;
        justify-self: end;
        text-align: right;
        grid-template-columns: auto;
    }

    .checkout .cart-item .item-actions .subtotal {
        font-size: 1rem;
    }

    .checkout .cart-item .item-actions .remove {
        grid-area: remove;
        justify-self: end;
        font-size: 1.2rem;
    }
}

@media (max-width: 380px) {
    .checkout .cart-item {
        grid-template-columns: 48px minmax(100px, 1fr) 1fr 40px;
        gap: 10px;
    }

    .checkout .cart-item>img {
        width: 48px;
        height: 48px;
    }

    .checkout .cart-item .quantity button {
        min-width: 28px;
        padding: 5px 8px;
    }

    .checkout .cart-item .quantity .qty {
        min-width: 24px;
    }
}



.section-1.section {
    min-height: auto !important;
    justify-content: center;
    align-items: stretch;
    padding: 60px 0;
    background: linear-gradient(rgba(255, 249, 244, 0.85), rgba(255, 249, 244, 0.85)), url('img/bg-pattern.png');
    background-size: 400px;
    background-position: center;
}

.section-1.section .content {
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

.section-1 .image-side {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    background: transparent !important;
    height: auto !important;
}

.section-1 .content-box {
    background: rgba(255, 249, 244, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 550px;
    text-align: left;
    margin: 0 20px;
}

.section-1 .content-box-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.section-1 .mascote-image {
    width: 280px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    margin: 0 20px;
}



.section-2.section .content {
    padding: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-1 .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding: 10px 18px;
    text-decoration: none;
    color: #a25b39;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid #f0e2d4;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.section-1 .instagram-link:hover {
    background-color: #fff;
    color: #3a2313;
    border-color: #a25b39;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.section-1 .instagram-link i {
    font-size: 1.1rem;
}

footer {
    background: #3b2514;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: auto;
    position: relative;
}

.footer-socials {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    gap: 25px;
}

.footer-socials a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    color: #f1e0d0;
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .footer-socials {
        position: static;
        transform: none;
        justify-content: center;
        margin-bottom: 15px;
    }

    footer {
        padding: 20px;
    }
}


.mobile-menu-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.mobile-menu-socials a {
    color: var(--text);
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-socials a:hover {
    color: var(--accent);
    transform: scale(1.1);

}


@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 92%;
    }
}

@media (max-width: 768px) {

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 92%;
    }

    .menu-footer {

        grid-template-columns: 1fr auto;
        grid-template-areas:
            "price qty"
            "button button";
        text-align: left;

    }

    .menu-footer .add-btn {
        width: 100%;
    }

    .menu-footer .quantity {
        justify-self: end;
    }

}

/*
@media (min-width: 769px) {

    .menu-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .menu-footer .add-btn {
        width: auto;
    }

}

@media (max-width: 768px) {

    .menu-footer {
        align-items: center;
        text-align: center;
    }

    .menu-footer .add-btn {
        width: 85%;
    }

    .quantity {
        justify-content: center;
    }

}*/
