/* Nova Oficina — estilos compartidos */
:root {
    --of-ink: #12141A;
    --of-ink-soft: #3A3D46;
    --of-paper: #FFFFFF;
    --of-paper-2: #FFFFFF;
    --of-line: #E6E6E6;
    --of-accent: #B45309;
    --of-accent-hover: #92400E;
    --of-wa: #25D366;
    --of-wa-hover: #1EBE5A;
    --of-white: #FFFFFF;
    --of-font-display: "Montserrat", "Segoe UI", sans-serif;
    --of-font-body: "Montserrat", "Segoe UI", sans-serif;
}

body.of-body {
    background: #FFFFFF !important;
    color: var(--of-ink);
    font-family: var(--of-font-body);
}

.body-content.of-wrap {
    background: #FFFFFF !important;
    padding: 0 !important;
    max-width: none !important;
    overflow: visible;
}

.of-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.35rem;
    font-family: var(--of-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.of-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
}

.of-btn--wa {
    background: var(--of-wa);
    color: var(--of-white);
}

.of-btn--wa:hover {
    background: var(--of-wa-hover);
    color: var(--of-white);
}

.of-btn--ghost-dark {
    background: transparent;
    color: var(--of-ink);
    box-shadow: inset 0 0 0 1.5px var(--of-line);
}

.of-btn--ghost-dark:hover {
    background: #F7F7F7;
    color: var(--of-ink);
}

.of-btn--sm {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
    width: 100%;
}

.of-btn--block {
    width: 100%;
}

.of-hero {
    position: relative;
    min-height: min(72vh, 640px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--of-ink);
}

.of-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.of-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    animation: of-hero-zoom 18s ease-out forwards;
}

.of-hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 20, 26, 0.2) 0%, rgba(18, 20, 26, 0.55) 50%, rgba(18, 20, 26, 0.88) 100%);
    z-index: 1;
}

.of-hero__content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 2.5rem));
    margin: 0 auto;
    padding: 0 0 2.75rem;
    animation: of-rise 0.9s ease-out both;
}

.of-hero__brand {
    font-family: var(--of-font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    letter-spacing: 0.18em;
    line-height: 1.15;
    color: var(--of-white);
    margin: 0;
    text-transform: uppercase;
}

.of-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #1C1917;
    border-bottom: 1px solid #292524;
    overflow: visible;
}

.of-nav__bar {
    width: min(1180px, calc(100% - 1.25rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.65rem 0.85rem;
    min-height: 64px;
    overflow: visible;
    position: relative;
    flex-wrap: wrap;
    padding: 0.4rem 0 0;
}

.of-nav__brand-mini {
    flex: 0 0 auto;
    order: 1;
    font-family: var(--of-font-display);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    padding: 0.45rem 0.15rem;
}

.of-nav__brand-mini:hover {
    color: #D6D3D1;
    text-decoration: none;
}

.of-nav__inner {
    display: flex;
    align-items: stretch;
    gap: 0.1rem;
    flex: 1 1 100%;
    order: 5;
    min-height: 46px;
    flex-wrap: wrap;
    overflow: visible;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.of-nav__item {
    position: relative;
    display: block;
    flex: 0 0 auto;
}

.of-nav__item > summary.of-nav__trigger {
    list-style: none;
    display: inline-flex;
    width: auto;
}

.of-nav__item > summary.of-nav__trigger::-webkit-details-marker {
    display: none;
}

.of-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.85rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border: none;
    background: transparent;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--of-font-body);
    transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.of-nav__link:hover,
.of-nav__link.is-active,
.of-nav__item.is-active > .of-nav__link,
.of-nav__item[open] > .of-nav__link,
.of-nav__item.is-open > .of-nav__link {
    color: #FFFFFF;
    border-bottom-color: #F59E0B;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.of-nav__home {
    color: #FBBF24;
}

.of-nav__chev {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.7;
    margin-top: 2px;
    transition: transform 0.2s ease;
}

.of-nav__item[open] .of-nav__chev,
.of-nav__item.is-open .of-nav__chev {
    transform: rotate(180deg);
}

.of-nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #FFFFFF;
    border: none;
    box-shadow: 0 12px 28px rgba(18, 20, 26, 0.18);
    padding: 0.55rem 0 0.65rem;
    display: none;
    z-index: 120;
}

.of-nav__item[open] > .of-nav__dropdown,
.of-nav__item.is-open > .of-nav__dropdown {
    display: block;
}

.of-nav__search {
    flex: 0 1 220px;
    order: 2;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 0.12rem 0.2rem 0.12rem 0.9rem;
    min-width: 150px;
    margin-left: auto;
    height: 40px;
    box-sizing: border-box;
}

.of-nav__search input {
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 0.84rem;
    padding: 0.45rem 0;
    outline: none;
    min-width: 0;
}

.of-nav__search input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.of-nav__search button,
.of-nav__search-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #FFFFFF;
    color: #1C1917;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 0.95rem;
    padding: 0;
}

.of-nav__search button:hover,
.of-nav__search-btn:hover {
    background: #FEF3C7;
}

.of-nav__burger {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    flex: 0 0 auto;
}

.of-nav__burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.of-nav.is-open .of-nav__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.of-nav.is-open .of-nav__burger span:nth-child(2) {
    opacity: 0;
}

.of-nav.is-open .of-nav__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.of-icon-search {
    display: block;
}

.of-nav__dropdown-head {
    padding: 0.45rem 1rem 0.7rem;
    border-bottom: 1px solid var(--of-line);
    margin-bottom: 0.35rem;
}

.of-nav__dropdown-head span {
    display: block;
    font-family: var(--of-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--of-ink);
}

.of-nav__dropdown-head small {
    color: var(--of-ink-soft);
    font-size: 0.75rem;
}

.of-nav__drop-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem;
    color: var(--of-ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background-color 0.15s ease;
}

.of-nav__drop-link:hover,
.of-nav__drop-link.is-active {
    background: #F7F7F7;
    color: var(--of-ink);
    text-decoration: none;
}

.of-nav__drop-link em {
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--of-ink-soft);
    background: #F0F0F0;
    padding: 0.12rem 0.45rem;
}

.of-nav__drop-all {
    font-weight: 700;
    color: var(--of-accent);
}

.of-nav__drop-rama {
    font-weight: 700;
    background: #FAFAF9;
    border-top: 1px solid var(--of-line);
}

.of-nav__drop-rama:first-of-type,
.of-nav__dropdown-head + .of-nav__drop-rama {
    border-top: 0;
}

.of-nav__drop-sub {
    padding-left: 1.65rem !important;
    font-weight: 500;
    color: var(--of-ink-soft);
}

.of-nav__drop-sub span {
    font-weight: 500;
}

.of-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--of-accent);
}

.of-title-sub {
    font-weight: 600;
    color: var(--of-ink-soft);
    font-size: 0.72em;
}

.of-section--muted {
    background: #FFFFFF;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.of-section--muted .of-section__head,
.of-section--muted .of-locales,
.of-section--muted .of-empty {
    width: min(1120px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
}

.of-card__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--of-accent);
}

.of-locales {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-top: none;
}

.of-local {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 1px solid var(--of-line);
    background: #FFFFFF;
    overflow: hidden;
}

.of-local:hover {
    background: #FFFFFF;
    border-color: #D6D3D1;
}

@media (min-width: 900px) {
    .of-local {
        grid-template-columns: 1.45fr 1fr;
        min-height: 380px;
    }

    .of-local--flip .of-local__map {
        order: 2;
    }

    .of-local--flip .of-local__info {
        order: 1;
    }
}

.of-local__map {
    min-height: 260px;
    background: #F5F5F4;
    position: relative;
}

.of-local__map::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--of-local-accent, var(--of-accent));
}

@media (min-width: 900px) {
    .of-local__map {
        min-height: 100%;
    }

    .of-local--flip .of-local__map::after {
        left: auto;
        right: 0;
    }
}

.of-local--jujuy { --of-local-accent: #B45309; }
.of-local--sanpedro { --of-local-accent: #0F766E; }
.of-local--tucuman { --of-local-accent: #1D4ED8; }
.of-local--santiago { --of-local-accent: #7C3AED; }
.of-local--cordoba { --of-local-accent: #BE123C; }

.of-local__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
}

@media (min-width: 900px) {
    .of-local__map iframe {
        min-height: 380px;
        height: 100%;
    }
}

.of-local__info {
    display: flex;
    flex-direction: column;
    padding: 1.15rem;
    min-width: 0;
    background: #F5F5F4;
}

.of-local__box {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
    padding: 1.35rem 1.4rem 1.45rem;
    background: #FFFFFF;
    border: 1px solid var(--of-line);
    border-top: 3px solid var(--of-local-accent, var(--of-accent));
    min-width: 0;
}

.of-local__city {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--of-local-accent, var(--of-accent));
}

.of-local__city i {
    font-size: 0.95rem;
}

.of-local__title {
    margin: 0;
    font-family: var(--of-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--of-ink);
}

.of-local__text {
    margin: 0.15rem 0 0;
    color: var(--of-ink-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.of-local__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.25rem 0 0.15rem;
}

.of-local__tags span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--of-ink);
    background: #FAFAF9;
    border: 1px solid var(--of-line);
}

.of-local__tags i {
    color: var(--of-local-accent, var(--of-accent));
    font-size: 0.9rem;
}

.of-local__details {
    list-style: none;
    margin: 0.65rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.of-local__details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.of-local__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 0.95rem;
}

.of-local__icon--geo {
    background: #FEF3C7;
    color: #B45309;
}

.of-local__icon--clock {
    background: #DBEAFE;
    color: #1D4ED8;
}

.of-local__icon--phone {
    background: #E7E5E4;
    color: #44403C;
}

.of-local__details strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--of-ink-soft);
    margin-bottom: 0.15rem;
}

.of-local__details span,
.of-local__details a {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--of-ink);
}

.of-local__detail-link,
.of-local__details a {
    font-weight: 600;
    text-decoration: none;
    color: #1D4ED8;
}

.of-local__detail-link--tel {
    color: #44403C;
}

.of-local__detail-link:hover,
.of-local__details a:hover {
    color: #1E40AF;
    text-decoration: underline;
}

.of-local__detail-link--tel:hover {
    color: #1C1917;
}

.of-local__links {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.6rem !important;
    margin-top: auto !important;
    padding-top: 1.15rem !important;
    border-top: 1px solid var(--of-line) !important;
}

a.of-local__link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    min-height: 86px !important;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
    text-decoration: none !important;
    text-align: center !important;
    border: 1px solid transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease !important;
}

a.of-local__link:hover,
a.of-local__link:focus {
    text-decoration: none !important;
    transform: translateY(-2px) !important;
}

a.of-local__link i {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
}

a.of-local__link--wa {
    color: #166534 !important;
    background: #F0FDF4 !important;
    border-color: #BBF7D0 !important;
}

a.of-local__link--wa i {
    background: #25D366 !important;
    color: #FFFFFF !important;
}

a.of-local__link--wa:hover {
    background: #DCFCE7 !important;
    border-color: #86EFAC !important;
    color: #14532D !important;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.18) !important;
}

a.of-local__link--call {
    color: #44403C !important;
    background: #FAFAF9 !important;
    border-color: #E7E5E4 !important;
}

a.of-local__link--call i {
    background: #1C1917 !important;
    color: #FFFFFF !important;
}

a.of-local__link--call:hover {
    background: #F5F5F4 !important;
    border-color: #D6D3D1 !important;
    color: #1C1917 !important;
    box-shadow: 0 8px 18px rgba(28, 25, 23, 0.12) !important;
}

a.of-local__link--map {
    color: #1E40AF !important;
    background: #EFF6FF !important;
    border-color: #BFDBFE !important;
}

a.of-local__link--map i {
    background: #2563EB !important;
    color: #FFFFFF !important;
}

a.of-local__link--map:hover {
    background: #DBEAFE !important;
    border-color: #93C5FD !important;
    color: #1E3A8A !important;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16) !important;
}

@media (max-width: 420px) {
    .of-local__links {
        grid-template-columns: 1fr !important;
    }

    a.of-local__link {
        flex-direction: row !important;
        justify-content: flex-start !important;
        min-height: 0 !important;
        padding: 0.75rem 0.95rem !important;
        text-align: left !important;
    }
}

.of-sub-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.75rem;
}

.of-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border: 1px solid var(--of-line);
    background: var(--of-white);
    color: var(--of-ink-soft);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.of-chip:hover,
.of-chip.is-active {
    background: var(--of-ink);
    border-color: var(--of-ink);
    color: var(--of-white);
    text-decoration: none;
}

@media (max-width: 900px) {
    body.of-nav-lock {
        overflow: hidden;
    }

    .of-nav__bar {
        width: calc(100% - 1rem);
        min-height: 58px;
        gap: 0.55rem;
        padding: 0.45rem 0;
        flex-wrap: wrap;
    }

    .of-nav__brand-mini {
        display: block;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        order: 1;
    }

    .of-nav__tools {
        order: 2;
        margin-left: auto;
        height: 40px;
        gap: 0.3rem;
    }

    .of-nav__tools-sep {
        display: none;
    }

    .of-nav__store,
    .of-nav__account,
    .of-cart-btn {
        position: relative;
        width: 40px;
        min-width: 40px;
        padding: 0;
        height: 40px;
    }

    .of-nav__store span,
    .of-nav__account span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .of-nav__account.is-empresa {
        max-width: 40px;
        background: rgba(245, 158, 11, 0.22);
    }

    .of-nav__burger {
        display: inline-flex;
        order: 3;
        margin-left: 0;
    }

    .of-nav__search {
        flex: 1 1 100%;
        min-width: 0;
        max-width: none;
        margin-left: 0;
        order: 4;
    }

    .of-nav__inner {
        display: none;
        order: 5;
        flex: 1 1 100%;
        border-top: none;
        flex-direction: column;
        align-items: stretch;
        align-content: flex-start;
        gap: 0;
        min-height: 0;
        height: auto;
        max-height: min(72vh, 560px);
        overflow-x: hidden;
        overflow-y: auto;
        background: #141210;
        border: 1px solid #292524;
        margin-top: 0.15rem;
        -webkit-overflow-scrolling: touch;
    }

    .of-nav.is-open .of-nav__inner {
        display: flex;
    }

    .of-nav__item {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        flex: 0 0 auto;
    }

    .of-nav__item > summary.of-nav__trigger {
        width: 100%;
        box-sizing: border-box;
    }

    .of-nav__link {
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom-color: rgba(255, 255, 255, 0.08);
        font-size: 0.95rem;
    }

    .of-nav__link:hover,
    .of-nav__link.is-active,
    .of-nav__item.is-active > .of-nav__link,
    .of-nav__item[open] > .of-nav__link,
    .of-nav__item.is-open > .of-nav__link {
        border-bottom-color: rgba(255, 255, 255, 0.08);
        border-left: 3px solid #F59E0B;
    }

    .of-nav__dropdown {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        min-width: 0 !important;
        width: 100% !important;
        max-height: none !important;
        height: auto !important;
        box-shadow: none !important;
        border-top: 0;
        background: #F5F5F4 !important;
        display: none;
    }

    .of-nav__item[open] > .of-nav__dropdown,
    .of-nav__item.is-open > .of-nav__dropdown {
        display: block !important;
    }

    .of-nav__drop-link {
        padding: 0.85rem 1rem;
        min-height: 46px;
        color: #1C1917;
    }

    .of-nav__drop-rama {
        background: #E7E5E4;
        color: #1C1917;
    }

    .of-nav__drop-sub {
        background: #FAFAF9;
    }

    .of-nav__drop-link {
        padding: 0.85rem 1rem;
        min-height: 46px;
    }

    .of-hero {
        min-height: 48vh;
    }

    .of-hero__content {
        width: calc(100% - 1.5rem);
        padding-bottom: 1.75rem;
    }

    .of-hero__brand {
        font-size: clamp(1.8rem, 10vw, 2.6rem);
    }

    .of-section,
    .of-about,
    .of-cta,
    .of-detail {
        width: calc(100% - 1.25rem);
    }

    .of-detail {
        padding: 1.15rem 0 5.5rem;
    }

    .of-section {
        padding: 2rem 0 0.75rem;
    }

    .of-section__head {
        flex-direction: column;
        align-items: flex-start;
    }

    .of-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .of-card__media {
        aspect-ratio: 4 / 3;
    }

    .of-cta {
        margin: 1.75rem auto 2.25rem;
        padding: 1.5rem 1.15rem;
        flex-direction: column;
        align-items: stretch;
        text-align: left;
    }

    .of-cta .of-btn {
        width: 100%;
    }

    .of-about {
        margin-top: 1.75rem;
        padding: 1.75rem 1.15rem;
    }

    .of-social {
        gap: 0.55rem;
    }

    .of-social__btn {
        flex: 1 1 calc(50% - 0.55rem);
        min-width: 8.5rem;
    }

    .of-sub-chips {
        gap: 0.4rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .of-chip {
        flex: 0 0 auto;
    }

    .of-local__links {
        grid-template-columns: 1fr;
    }

    .of-local__map iframe {
        min-height: 220px;
    }

    .of-local__box {
        padding: 1.15rem;
    }

    .of-detail__layout {
        gap: 1.25rem;
    }

    .of-gallery__main {
        max-height: min(62vh, 420px);
        aspect-ratio: 4 / 3;
    }

    .of-gallery__hint {
        font-size: 0.7rem;
        left: 0.5rem;
        bottom: 0.5rem;
        padding: 0.35rem 0.55rem;
    }

    .of-gallery__thumbs {
        gap: 0.45rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.2rem;
        scroll-snap-type: x mandatory;
    }

    .of-gallery__thumb {
        flex: 0 0 76px;
        width: 76px;
        height: 76px;
        scroll-snap-align: start;
    }

    .of-detail__title {
        font-size: 1.45rem;
        line-height: 1.2;
    }

    .of-detail__desc {
        font-size: 0.95rem;
    }

    .of-detail__actions .of-btn {
        width: 100%;
        text-align: center;
    }

    .of-lightbox__dialog {
        padding: 3rem 0.35rem 5rem;
    }

    .of-lightbox__stage img {
        max-height: min(72dvh, 100%);
        max-width: 100%;
    }

    .of-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .of-lightbox__nav--prev { left: 0.25rem; }
    .of-lightbox__nav--next { right: 0.25rem; }

    .of-wa-widget {
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .of-wa-panel {
        width: min(calc(100vw - 1.5rem), 340px);
        right: 0;
    }

    .of-float-wa {
        width: 56px;
        height: 56px;
        font-size: 1.55rem;
    }

    .of-footer {
        padding: 1rem 1rem 5.5rem;
    }
}

@media (max-width: 480px) {
    .of-nav__brand-mini {
        max-width: 42vw;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .of-social__btn {
        flex: 1 1 100%;
    }

    .of-btn--sm {
        font-size: 0.84rem;
    }
}

.of-section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3.25rem 0 1rem;
}

.of-section__head {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
}

.of-section__title {
    font-family: var(--of-font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--of-ink);
}

/* Intro inspiracional */
.of-intro {
    width: min(1120px, calc(100% - 2rem));
    margin: 2.5rem auto 0.5rem;
    padding: 2.25rem 0 2rem;
    border-top: 1px solid var(--of-line);
    border-bottom: 1px solid var(--of-line);
    position: relative;
}

.of-intro::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 72px;
    height: 3px;
    background: var(--of-accent);
}

.of-intro__eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--of-accent);
}

.of-intro__title {
    margin: 0 0 0.85rem;
    font-family: var(--of-font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--of-ink);
    max-width: 18ch;
}

.of-intro__text {
    margin: 0;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--of-ink-soft);
}

.of-steps {
    width: min(1120px, calc(100% - 2rem));
    margin: 1.75rem auto 0.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--of-line);
}

@media (min-width: 800px) {
    .of-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.of-step {
    padding: 1.25rem 1.35rem;
    border-bottom: 1px solid var(--of-line);
    background: #fff;
}

@media (min-width: 800px) {
    .of-step {
        border-bottom: none;
        border-right: 1px solid var(--of-line);
    }
    .of-step:last-child {
        border-right: none;
    }
}

.of-step__num {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--of-accent);
    margin-bottom: 0.45rem;
}

.of-step__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--of-ink);
}

.of-step__text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--of-ink-soft);
}

.of-divider {
    width: min(1120px, calc(100% - 2rem));
    margin: 2.75rem auto 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.of-divider::before,
.of-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--of-line);
}

.of-divider span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--of-accent);
    white-space: nowrap;
}

.of-section__note {
    margin: 0.35rem 0 0;
    color: var(--of-ink-soft);
    font-size: 0.95rem;
}

.of-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

@media (min-width: 768px) {
    .of-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

@media (min-width: 1100px) {
    .of-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.of-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
    animation: of-rise 0.55s ease-out both;
    padding: 0;
    border-radius: 0;
    overflow: visible;
}

.of-card:hover {
    transform: translateY(-3px);
    color: inherit;
    text-decoration: none;
    background: transparent;
}

.of-card__media {
    aspect-ratio: 1 / 1;
    background: #FFFFFF;
    overflow: hidden;
    border-radius: 0;
    border: none;
}

.of-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    display: block;
    transition: transform 0.4s ease;
}

.of-card:hover .of-card__media img {
    transform: scale(1.03);
}

.of-card__body {
    margin-top: 0.55rem;
    padding: 0.15rem 0.1rem 0.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 0;
}

.of-card:hover .of-card__body {
    background: transparent;
    border: none;
}

.of-card__name {
    font-family: var(--of-font-body);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
    line-height: 1.35;
}

.of-card__meta {
    margin: 0;
    font-size: 0.8rem;
    color: var(--of-ink-soft);
}

.of-card__cta {
    margin-top: 0.55rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--of-accent);
}

.of-card__media {
    display: block;
    color: inherit;
    text-decoration: none;
}

.of-card__actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.45rem;
}

.of-card__cta--btn {
    margin-top: 0;
    font-size: 0.78rem;
    text-decoration: none;
}

.of-card__add {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 38px;
    border: none;
    border-radius: 8px;
    background: #1C1917;
    color: #fff;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.of-card__add:hover,
.of-card__add.is-added {
    background: #44403c;
}

.of-card__add--lg {
    min-height: 48px;
    font-size: 0.92rem;
}

.of-detail__cart {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.of-card__qty-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--of-ink-soft);
}

.of-card__qty {
    width: 4.2rem;
    min-height: 42px;
    border: 1px solid var(--of-line);
    border-radius: 8px;
    padding: 0.35rem 0.45rem;
    font: inherit;
}

.of-nav__tools {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
    order: 3;
    height: 40px;
}

.of-nav__tools-sep {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
    margin: 0 0.15rem;
}

.of-nav__store,
.of-nav__account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 40px;
    min-height: 40px;
    padding: 0 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: transparent;
    color: #fff !important;
    text-decoration: none !important;
    font-family: var(--of-font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.of-nav__store i,
.of-nav__account i {
    font-size: 0.95rem;
    line-height: 1;
}

.of-nav__store:hover,
.of-nav__account:hover {
    background: #fff;
    color: #1C1917 !important;
    border-color: #fff;
}

.of-nav__account {
    text-transform: none;
    letter-spacing: 0.02em;
    font-size: 0.78rem;
}

.of-nav__account.is-empresa {
    max-width: 200px;
    border-color: rgba(245, 158, 11, 0.55);
    background: rgba(245, 158, 11, 0.16);
}

.of-nav__account span {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

.of-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #fff;
    border-radius: 8px;
    font-size: 1.12rem;
    cursor: pointer;
    flex: 0 0 auto;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.of-cart-btn:hover {
    background: #fff;
    color: #1C1917;
    border-color: #fff;
}

.info-cart-btn__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: #64748b;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.info-cart-btn__badge.is-on { background: #dc2626; }

.info-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.45);
    z-index: 1080;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.info-cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.info-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100vh;
    background: #fff;
    z-index: 1090;
    transform: translateX(105%);
    transition: transform .25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0,0,0,.2);
    color: #1c1917;
}
.info-cart-drawer.is-open { transform: translateX(0); }
.info-cart-drawer__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #e5e7eb;
}
.info-cart-drawer__head h2 { margin: 0; font-size: 1.1rem; }
.info-cart-drawer__close {
    border: none; background: transparent; font-size: 1.2rem; cursor: pointer; line-height: 1;
}
.info-cart-drawer__body { flex: 1; overflow: auto; padding: 1rem 1.1rem; }
.info-cart-empty { color: #6b7280; margin: 1rem 0; }
.info-cart-list { list-style: none; margin: 0; padding: 0; }
.info-cart-item {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.info-cart-item__main { min-width: 0; }
.info-cart-item__main strong {
    display: block;
    font-size: 0.88rem;
    line-height: 1.3;
}
.info-cart-item__cod { display: block; font-size: 0.75rem; color: #64748b; margin-top: 0.15rem; }
.info-cart-item__store {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0369a1;
}
.info-cart-item__qty {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}
.info-cart-item__qty button {
    width: 1.7rem;
    height: 1.7rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}
.info-cart-item__rm { color: #be123c !important; border-color: #fecdd3 !important; }
.info-cart-drawer__foot {
    padding: 1rem 1.1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}
.info-cart-note-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.3rem;
}
.info-cart-note {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    font: inherit;
    resize: vertical;
    margin-bottom: 0.65rem;
}
.info-cart-send {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: none;
    border-radius: 10px;
    background: #1c1917;
    color: #fff;
    font-weight: 800;
    font-family: inherit;
    padding: 0.85rem 1rem;
    cursor: pointer;
}
.info-cart-send:hover { background: #44403c; }
.info-cart-send--wa { background: #128c7e; }
.info-cart-send--wa:hover { background: #075e54; }
.info-cart-hint { margin: 0.55rem 0 0; font-size: 0.78rem; color: #64748b; }

html.info-cart-open,
body.info-cart-open {
    overflow: hidden !important;
    touch-action: none;
}

.info-cart-fab {
    display: none;
    position: fixed;
    right: 1rem;
    bottom: 6.5rem;
    z-index: 1070;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 999px;
    background: #1c1917;
    color: #fff;
    box-shadow: 0 10px 24px rgba(28, 25, 23, 0.4);
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
}
.info-cart-fab.has-items { background: #44403c; }
.info-cart-fab__badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #64748b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}
.info-cart-fab__badge.is-on { background: #dc2626; }

@media (max-width: 991px) {
    .info-cart-fab { display: inline-flex; }
    .info-cart-drawer {
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    .info-cart-item { flex-direction: column; }
    .info-cart-item__qty button { width: 44px; height: 44px; }
    .info-cart-send { min-height: 52px; }
}

.of-badge {
    display: inline-block;
    margin: 0 0 0.35rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #1C1917;
    color: #fff;
}

.of-badge--outlet {
    background: #B45309;
}

.of-ramas {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.85rem;
}

@media (min-width: 640px) {
    .of-ramas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .of-ramas {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.of-rama-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: var(--of-white);
    border: 1px solid var(--of-line);
    text-decoration: none;
    color: var(--of-ink);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.of-rama-link:hover,
.of-rama-link.is-active {
    border-color: var(--of-ink);
    background: var(--of-paper-2);
    color: var(--of-ink);
    text-decoration: none;
}

.of-rama-link__name {
    font-family: var(--of-font-display);
    font-weight: 700;
    font-size: 1.05rem;
    margin: 0;
}

.of-rama-link__meta {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: var(--of-ink-soft);
}

.of-rama-link__count {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--of-ink-soft);
    white-space: nowrap;
}

.of-empty {
    padding: 2.25rem 1rem;
    text-align: center;
    color: var(--of-ink-soft);
    background: #FFFFFF;
    border: 1px dashed var(--of-line);
}

.of-sub-block {
    margin-bottom: 2.25rem;
}

.of-sub-block__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--of-ink-soft);
    margin: 0 0 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid var(--of-line);
}

.of-cta {
    width: min(1120px, calc(100% - 2rem));
    margin: 2.5rem auto 3.5rem;
    padding: 2.5rem 2rem;
    background: var(--of-ink);
    color: var(--of-white);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.of-about {
    width: min(1120px, calc(100% - 2rem));
    margin: 2.5rem auto 0;
    padding: 2.75rem 2rem;
    background:
        linear-gradient(145deg, rgba(180, 83, 9, 0.08), transparent 42%),
        linear-gradient(180deg, #FFFFFF 0%, #F8F5F1 100%);
    border: 1px solid var(--of-line);
}

.of-about__inner {
    max-width: 46rem;
}

.of-about__title {
    font-family: var(--of-font-display);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--of-ink);
    margin: 0.2rem 0 1.1rem;
    letter-spacing: -0.02em;
}

.of-about__text {
    margin: 0 0 1rem;
    color: var(--of-ink-soft);
    line-height: 1.65;
    font-size: 1.02rem;
}

.of-about__text:last-of-type {
    margin-bottom: 0;
}

.of-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.of-social__btn {
    min-height: 2.75rem;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid var(--of-line);
    background: #FFFFFF;
    color: var(--of-ink);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.of-social__btn i {
    font-size: 1.15rem;
}

.of-social__btn:hover {
    background: var(--of-ink);
    border-color: var(--of-ink);
    color: #FFFFFF;
    text-decoration: none;
    transform: translateY(-2px);
}

.of-social__btn--ig {
    background: linear-gradient(135deg, #F58529, #DD2A7B 50%, #8134AF);
    border-color: transparent;
    color: #FFFFFF;
}

.of-social__btn--ig:hover {
    background: linear-gradient(135deg, #E46F15, #C41E68 50%, #6B2894);
    border-color: transparent;
    color: #FFFFFF;
}

.of-social__btn--wa {
    background: #25D366;
    border-color: #25D366;
    color: #FFFFFF;
}

.of-social__btn--wa:hover {
    background: #1EBE57;
    border-color: #1EBE57;
    color: #FFFFFF;
}

.of-cta h2 {
    font-family: var(--of-font-display);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.of-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    max-width: 28rem;
    line-height: 1.5;
}

.of-footer {
    text-align: center;
    padding: 1.25rem 1rem 2.25rem;
    color: var(--of-ink-soft);
    font-size: 0.9rem;
}

.of-footer a {
    color: var(--of-accent);
    font-weight: 600;
    text-decoration: none;
}

.of-wa-widget {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.of-float-wa {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: var(--of-wa);
    color: var(--of-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.of-float-wa:hover {
    background: var(--of-wa-hover);
    color: var(--of-white);
    transform: scale(1.06);
    text-decoration: none;
}

.of-wa-panel {
    width: min(340px, calc(100vw - 2rem));
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18, 20, 26, 0.22);
    display: none;
    flex-direction: column;
    animation: of-rise 0.28s ease-out both;
}

.of-wa-panel.is-open {
    display: flex;
}

.of-wa-panel__head {
    background: #075E54;
    color: #fff;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.of-wa-panel__head strong {
    display: block;
    font-size: 0.95rem;
}

.of-wa-panel__head span {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-top: 0.1rem;
}

.of-wa-panel__close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
    opacity: 0.85;
}

.of-wa-panel__close:hover {
    opacity: 1;
}

.of-wa-panel__messages {
    background: #ECE5DD;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 160px;
}

.of-wa-bubble {
    align-self: flex-start;
    max-width: 92%;
    background: #FFFFFF;
    color: var(--of-ink);
    padding: 0.7rem 0.85rem;
    border-radius: 0 12px 12px 12px;
    font-size: 0.88rem;
    line-height: 1.45;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.of-wa-panel__actions {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    background: #fff;
    border-top: 1px solid #E8E8E8;
}

.of-wa-reply {
    display: block;
    text-align: left;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    background: #FEF3C7;
    color: #92400E;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #FDE68A;
    transition: background-color 0.15s ease;
}

.of-wa-reply:hover {
    background: #FDE68A;
    color: #78350F;
    text-decoration: none;
}

/* Detalle artículo */
.of-detail {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

.of-crumb {
    font-size: 0.85rem;
    color: var(--of-ink-soft);
    margin: 0 0 1.5rem;
}

.of-crumb a {
    color: var(--of-accent);
    text-decoration: none;
    font-weight: 600;
}

.of-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .of-detail__layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 2.75rem;
    }
}

.of-gallery {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.of-gallery__main {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 1px solid var(--of-line);
    background: linear-gradient(160deg, #F8FAFC 0%, #EEF2F7 100%);
    aspect-ratio: 1 / 1;
    max-height: min(70vh, 560px);
    overflow: hidden;
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
}

.of-gallery__main img,
.of-gallery__main #ofMainImage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0.75rem;
    box-sizing: border-box;
    display: block;
    pointer-events: none;
}

.of-gallery__hint {
    position: absolute;
    left: 0.75rem;
    bottom: 0.75rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    background: rgba(17, 24, 39, 0.78);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    pointer-events: none;
}

.of-gallery__thumbs {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 100%;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.of-gallery__thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border: 1px solid var(--of-line);
    background: var(--of-white);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.6;
}

.of-gallery__thumb.is-active {
    opacity: 1;
    outline: 2px solid var(--of-ink);
    outline-offset: 2px;
}

.of-gallery__thumb img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    box-sizing: border-box;
    display: block;
}

.of-detail__info {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.of-detail__title {
    font-family: var(--of-font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    overflow-wrap: anywhere;
}

.of-detail__path {
    margin: 0 0 0.75rem;
    color: var(--of-ink-soft);
    font-size: 0.9rem;
}

.of-detail__brand {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--of-ink);
}

.of-detail__brand strong {
    font-family: var(--of-font-display);
    font-weight: 700;
    color: var(--of-accent);
}

.of-detail__desc {
    margin: 0 0 1.5rem;
    line-height: 1.65;
    color: var(--of-ink);
    font-size: 1.02rem;
    overflow-wrap: anywhere;
}

/* Lightbox / carrusel */
body.of-lightbox-open {
    overflow: hidden;
}

.of-lightbox[hidden] {
    display: none !important;
}

.of-lightbox {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.of-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, 0.88);
}

.of-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    height: min(100dvh, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3.25rem 0.75rem 4.5rem;
    box-sizing: border-box;
}

.of-lightbox__stage {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

.of-lightbox__stage img {
    max-width: 100%;
    max-height: min(78dvh, 820px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.of-lightbox__close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
}

.of-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: #fff;
    font-size: 1.35rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.of-lightbox__nav--prev { left: 0.5rem; }
.of-lightbox__nav--next { right: 0.5rem; }

.of-lightbox__bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.of-lightbox__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem;
    max-width: 90vw;
}

.of-lightbox__dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
}

.of-lightbox__dot.is-active {
    background: #fff;
    transform: scale(1.2);
}

.of-specs {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.of-spec {
    padding: 0.85rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--of-line);
}

.of-spec__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--of-ink-soft);
    margin-bottom: 0.35rem;
}

.of-spec__value {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
}

.of-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.of-colors li {
    padding: 0.35rem 0.7rem;
    background: #FFFFFF;
    border: 1px solid var(--of-line);
    font-size: 0.88rem;
    font-weight: 500;
}

.of-detail__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.of-related {
    margin-top: 2.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--of-line);
}

@keyframes of-hero-zoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes of-rise {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
    /* legado: reglas movidas al bloque 900px */
}
