body {
    overflow-x: hidden;
}

.header-inner {
    padding: 5px 0;
}

.brand {
    font-size: 44px;
    font-weight: 800;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-self: center;
}

.brand-icon {
    width: 25px;
    height: 25px;
    display: block;
}

.nav {
    font-size: 22px;
}

.nav a {
    font-weight: 600;
    text-transform: uppercase;
}

.nav-right {
    gap: 12px;
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
}

.language-link {
    min-width: 38px;
    height: 30px;
    padding: 0 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.language-link.is-active {
    background: #fff;
    color: var(--brand);
}

.mobile-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 55;
}

.mobile-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(280px, 80vw);
    background: #fff;
    border-left: 1px solid #ead7c6;
    box-shadow: -16px 0 28px rgba(0, 0, 0, 0.18);
    padding: calc(18px + env(safe-area-inset-top)) 18px calc(18px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 60;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-panel a {
    color: #7b3b2f;
    font-weight: 600;
}

.mobile-close {
    align-self: flex-end;
    width: 32px;
    height: 32px;
    border: 1px solid #ead7c6;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff6e8;
    color: #7b3b2f;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

.mobile-menu-divider {
    height: 1px;
    background: #ead7c6;
    margin: 6px 0;
}

.mobile-cta {
    background: var(--brand);
    color: #fff;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-cta span {
    color: #fff;
}

.mobile-cta .mobile-cta-icon {
    stroke: #fff;
}

.mobile-cta-icon {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 14px;
}

.mobile-messengers {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
}

.language-switch-mobile {
    align-self: flex-start;
    border-color: #ead7c6;
    background: #fff6e8;
}

.language-switch-mobile .language-link {
    color: #7b3b2f;
}

.language-switch-mobile .language-link.is-active {
    background: var(--brand);
    color: #fff;
}

.mobile-icon {
    flex: 1 1 0;
    height: 38px;
    border: 1px solid #ead7c6;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff6e8;
}

.mobile-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #7b3b2f;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-icon.is-whatsapp svg {
    fill: #7b3b2f;
    stroke: none;
}

.mobile-toggle:checked ~ .mobile-overlay {
    opacity: 1;
    pointer-events: auto;
}

.mobile-toggle:checked ~ .mobile-panel {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.hero-badge {
    display: block;
}

.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #eed7c8;
    color: #7b3b2f;
    font-size: 13px;
    font-weight: 600;
    background: #fff6e8;
}

.filter-pill.is-active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

.product-card {
    background: #fff;
    border: 1px solid #eed7c8;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1d6c7;
    display: block;
}

.product-card > :not(.product-card-image) {
    padding-left: 16px;
    padding-right: 16px;
}

.product-card > :last-child {
    padding-bottom: 16px;
}

.product-detail {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid #eed7c8;
    padding: 22px;
}

.product-detail-image {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 1px solid #eed7c8;
    background: #f1d6c7;
    display: block;
    margin: 0 auto;
}

.product-detail-title {
    font-family: var(--font-title);
    color: var(--title);
    font-size: 32px;
    font-weight: 700;
    margin-top: 18px;
}

.product-detail-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #6b4a3b;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
}

.product-similar {
    margin-top: 32px;
}

.product-similar-card {
    background: #fff;
    border: 1px solid #eed7c8;
    border-radius: 18px 18px 0 0;
    padding: 22px;
}

.product-similar-title {
    font-family: var(--font-title);
    color: var(--title);
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.footer-inner {
    padding: 26px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    align-items: start;
    justify-content: space-between;
    font-size: 14px;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid rgba(246, 244, 237, 0.16);
    padding: 14px 0 18px;
}

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

.footer-logo {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.footer-note {
    color: #e5d7c9;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
}

.footer-links a {
    color: #f6f4ed;
    opacity: 0.9;
}

.footer-heading {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #f6f4ed;
    font-size: 12px;
}

.footer-contacts {
    color: #e5d7c9;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: #f6f4ed;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-icon.is-whatsapp {
    fill: currentColor;
    stroke: none;
}

.footer-time {
    margin-top: 6px;
    font-weight: 700;
    color: #f6f4ed;
}

.vynixo-credit {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    color: #f8fafc;
    line-height: 1.2;
    transition: background-color 160ms ease, color 160ms ease;
}

.vynixo-credit:hover,
.vynixo-credit:focus-visible {
    background: rgba(255, 122, 26, 0.1);
    color: #fff;
}

.vynixo-credit:focus-visible {
    outline: 2px solid rgba(255, 208, 173, 0.75);
    outline-offset: 3px;
}

.vynixo-credit-muted {
    color: rgba(241, 245, 249, 0.7);
}

.vynixo-credit-icon {
    display: block;
    width: 16px;
    min-width: 16px;
    max-width: 16px;
    height: 16px;
    min-height: 16px;
    max-height: 16px;
    flex: 0 0 16px;
    color: #f472b6;
    fill: none;
    stroke: currentColor;
    overflow: visible;
    transition: transform 160ms ease;
}

.vynixo-credit:hover .vynixo-credit-icon,
.vynixo-credit:focus-visible .vynixo-credit-icon {
    transform: scale(1.1);
}

.vynixo-credit-brand {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition: color 160ms ease;
}

.vynixo-credit:hover .vynixo-credit-brand,
.vynixo-credit:focus-visible .vynixo-credit-brand {
    color: #ffd0ad;
}

.footer-credit {
    margin-left: auto;
}

@media (max-width: 860px) {
    .hero-badge {
        display: block;
        left: 50%;
        top: 25%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: min(92%, 520px);
        font-size: clamp(16px, 4.8vw, 28px);
        padding: 8px 12px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .hero-image {
        width: 100%;
        margin-left: 0;
        border-radius: 0;
    }

    .hero .container {
        width: 100%;
    }

    .mobile-menu {
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .brand,
    .brand-mark {
        grid-column: 2;
        justify-self: center;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-bottom {
        justify-content: flex-end;
    }

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

    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .instagram-profile {
        justify-content: center;
    }

    .instagram-stats {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .instagram-profile {
        align-items: flex-start;
    }
}
