.ontag-product-page {
    --product-green: var(--ontag-green, var(--ontag-store-primary, #c6ff00));
    --product-black: var(--ontag-black, var(--ontag-store-secondary, #090909));
    --product-ink: #111111;
    --product-muted: #676b63;
    --product-border: rgba(17, 17, 17, .12);
    --product-soft: #f6f7f1;
    background: #ffffff;
    color: var(--product-ink);
    overflow-x: clip;
}

.ontag-product-page *,
.ontag-product-page *::before,
.ontag-product-page *::after {
    box-sizing: border-box;
}

.ontag-product-page img {
    max-width: 100%;
    display: block;
}

.ontag-product-breadcrumbs {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 0;
}

.ontag-product-breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--product-muted);
    font-size: 13px;
}

.ontag-product-breadcrumbs li {
    min-width: 0;
}

.ontag-product-breadcrumbs li + li::before {
    content: "/";
    margin-right: 8px;
    color: rgba(17, 17, 17, .3);
}

.ontag-product-breadcrumbs a {
    color: var(--product-ink);
    font-weight: 800;
    text-decoration: none;
}

.ontag-lp-section {
    padding: var(--pt) 18px var(--pb);
    background: var(--bg);
    color: var(--text);
}

.ontag-lp-container {
    max-width: min(var(--width), 1180px);
    margin: auto;
}

.ontag-lp-grid {
    display: grid;
    gap: 28px;
    align-items: center;
}

.ontag-lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ontag-lp h1,
.ontag-lp h2,
.ontag-lp h3 {
    margin: .25em 0;
    line-height: 1.08;
    letter-spacing: 0;
}

.ontag-lp h1 {
    font-size: clamp(36px, 4.8vw, 64px);
}

.ontag-lp h2 {
    font-size: clamp(28px, 3.6vw, 48px);
}

.ontag-lp h3 {
    font-size: clamp(22px, 2.3vw, 30px);
}

.ontag-lp p {
    margin: 0;
    color: currentColor;
    font-size: 16px;
    line-height: 1.65;
    opacity: .78;
}

.ontag-lp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    background: var(--accent, var(--product-green));
    color: #111111;
    font: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.ontag-lp-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .1);
}

.ontag-lp-button:disabled {
    opacity: .48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ontag-product-page :focus-visible {
    outline: 3px solid rgba(198, 255, 0, .72);
    outline-offset: 3px;
}

.ontag-product {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.ontag-product-gallery {
    min-width: 0;
}

.ontag-product-main-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    background: var(--product-soft);
}

.ontag-product-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 14px;
    transition: opacity .18s ease, transform .22s ease;
}

.ontag-product-main-image--empty {
    min-height: 260px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    color: rgba(17, 17, 17, .56);
}

.ontag-product-main-image--empty strong {
    font-size: 44px;
    line-height: 1;
}

.ontag-product-main-wrap.is-changing .ontag-product-main-image {
    opacity: .35;
    transform: scale(.985);
}

.ontag-product-zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #111111;
    display: grid;
    place-items: center;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.ontag-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.ontag-product-thumb {
    min-width: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--product-soft);
    overflow: hidden;
    cursor: pointer;
}

.ontag-product-thumb.is-active {
    border-color: var(--product-green);
    box-shadow: 0 0 0 3px rgba(198, 255, 0, .2);
}

.ontag-product-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 5px;
}

.ontag-product-info {
    min-width: 0;
    display: grid;
    gap: 14px;
}

.ontag-product-category,
.ontag-product-kicker {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(198, 255, 0, .18);
    color: #3f4b00;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ontag-product-title {
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
}

.ontag-product-lead,
.ontag-product-description {
    color: var(--product-muted);
    line-height: 1.65;
}

.ontag-product-name {
    color: var(--product-muted);
    font-weight: 800;
}

.ontag-product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.ontag-product-price strong {
    color: var(--product-ink);
    font-size: clamp(34px, 5vw, 46px);
    line-height: 1;
}

.ontag-product-price del {
    color: #7b8077;
    font-size: 17px;
}

.ontag-product-saving {
    display: none;
    width: max-content;
    max-width: 100%;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(198, 255, 0, .2);
    color: #455800;
    font-size: 12px;
    font-weight: 900;
}

.ontag-product-saving.is-visible {
    display: inline-flex;
}

.ontag-product-form {
    display: grid;
    gap: 18px;
    margin-top: 8px;
}

.ontag-product-field {
    display: grid;
    gap: 10px;
}

.ontag-product-label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--product-ink);
    font-size: 14px;
    font-weight: 900;
}

.ontag-product-label small {
    color: var(--product-muted);
    font-weight: 760;
}

.ontag-product-variant-select {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--product-ink);
    font: inherit;
}

.ontag-variant-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.ontag-variant-option {
    position: relative;
    min-height: 68px;
    padding: 12px 13px;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--product-ink);
    text-align: left;
    cursor: pointer;
    display: grid;
    gap: 4px;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.ontag-variant-option:hover {
    border-color: rgba(17, 17, 17, .36);
}

.ontag-variant-option.is-selected {
    border-color: rgba(118, 151, 0, .52);
    box-shadow: 0 0 0 3px rgba(198, 255, 0, .2);
    background: rgba(198, 255, 0, .08);
}

.ontag-variant-option:disabled {
    opacity: .5;
    cursor: not-allowed;
}

.ontag-variant-option:disabled span::after {
    content: " indisponivel";
}

.ontag-variant-option strong {
    font-size: 14px;
}

.ontag-variant-option span {
    color: var(--product-muted);
    font-size: 12px;
}

.ontag-product-stock {
    min-height: 22px;
    color: #526900;
    font-size: 13px;
    font-weight: 850;
}

.ontag-product-stock.is-low {
    color: #875600;
}

.ontag-product-stock.is-out {
    color: #a12626;
}

.ontag-product-quantity-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ontag-quantity-control {
    width: 160px;
    height: 52px;
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.ontag-quantity-control button {
    border: 0;
    background: transparent;
    color: var(--product-ink);
    font-size: 22px;
    cursor: pointer;
}

.ontag-quantity-control button:hover {
    background: var(--product-soft);
}

.ontag-quantity-control input {
    min-width: 0;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--product-ink);
    text-align: center;
    font: inherit;
    font-weight: 900;
    appearance: textfield;
}

.ontag-quantity-control input::-webkit-inner-spin-button,
.ontag-quantity-control input::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

.ontag-product-submit {
    width: 100%;
    min-height: 58px;
    background: var(--product-black);
    color: #ffffff;
    font-size: 17px;
}

.ontag-product-submit:disabled {
    background: #d9d9d2;
    color: #6d7068;
}

.ontag-product-secure {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.ontag-product-secure span {
    min-height: 46px;
    padding: 8px 10px;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 800;
}

.ontag-product-actions {
    display: flex;
    gap: 10px 16px;
    flex-wrap: wrap;
    align-items: center;
}

.ontag-product-action {
    border: 0;
    background: transparent;
    color: var(--product-ink);
    padding: 6px 0;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
    text-decoration: underline;
}

.ontag-product-share-status {
    min-height: 18px;
    color: var(--product-muted);
    font-size: 12px;
    font-weight: 760;
}

.ontag-product-sticky {
    display: none;
}

.ontag-product-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    inset: 0;
    padding: 18px;
    background: rgba(0, 0, 0, .82);
    align-items: center;
    justify-content: center;
}

.ontag-product-modal.is-open {
    display: flex;
}

.ontag-product-modal-card {
    position: relative;
    width: min(920px, 100%);
    height: min(88vh, 900px);
    padding: 18px;
    border-radius: 8px;
    background: #ffffff;
    display: grid;
    place-items: center;
}

.ontag-product-modal-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ontag-product-modal-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
}

.ontag-lp-cards,
.ontag-lp-gallery,
.ontag-lp-stats,
.ontag-lp-guarantees,
.ontag-lp-icon-list,
.ontag-lp-logos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
}

.ontag-lp-card,
.ontag-lp-icon-item,
.ontag-lp-guarantee,
.ontag-lp-stat {
    padding: 20px;
    border: 1px solid var(--product-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
}

.ontag-lp-gallery img,
.ontag-lp-column img,
.ontag-lp-image-wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ontag-lp-gallery img {
    aspect-ratio: 1;
    object-fit: cover;
}

.ontag-lp-faq details {
    border-bottom: 1px solid var(--product-border);
    padding: 16px 0;
}

.ontag-lp-faq summary {
    font-weight: 900;
    cursor: pointer;
}

.ontag-lp-faq p {
    margin-top: 10px;
}

.ontag-lp-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 8px;
    background: #111111;
}

.ontag-lp-cta {
    text-align: center;
}

.ontag-lp-html {
    max-width: 100%;
    overflow-x: auto;
}

.ontag-lp-html table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
}

.ontag-lp-html script {
    display: none;
}

.ontag-lp-heading {
    margin: 0;
}

.ontag-lp-align-left {
    text-align: left;
}

.ontag-lp-align-center {
    text-align: center;
}

.ontag-lp-align-right {
    text-align: right;
}

.ontag-lp-text {
    margin-left: auto;
    margin-right: auto;
}

.ontag-lp-button.outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: inherit;
}

.ontag-lp-button.link {
    background: transparent;
    color: inherit;
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline;
}

.ontag-lp-button.small {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
}

.ontag-lp-button.large {
    min-height: 58px;
    padding: 0 28px;
    font-size: 18px;
}

.ontag-lp-button.full {
    width: 100%;
}

.ontag-lp-image-wrap {
    display: flex;
}

.ontag-lp-image-wrap.left {
    justify-content: flex-start;
}

.ontag-lp-image-wrap.center {
    justify-content: center;
}

.ontag-lp-image-wrap.right {
    justify-content: flex-end;
}

.ontag-lp-image-wrap figure {
    margin: 0;
}

.ontag-lp-image-wrap figcaption {
    margin-top: 10px;
    color: var(--product-muted);
    font-size: 13px;
    text-align: center;
}

.ontag-lp-columns {
    display: grid;
    gap: 28px;
    align-items: center;
}

.ontag-lp-column {
    min-width: 0;
}

.ontag-lp-icon-item,
.ontag-lp-guarantee {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
}

.ontag-lp-icon-symbol,
.ontag-lp-guarantee-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--accent);
    color: #111111;
    font-weight: 950;
}

.ontag-lp-stat {
    text-align: center;
}

.ontag-lp-stat strong {
    display: block;
    color: var(--accent);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 1;
}

.ontag-lp-logo {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 12px;
}

.ontag-lp-logo img {
    max-height: 48px;
    object-fit: contain;
}

.ontag-lp-logos.grayscale img {
    filter: grayscale(1);
    opacity: .72;
}

.ontag-lp-spacer {
    height: var(--mobile-space, var(--space));
}

.ontag-lp-divider {
    border: 0;
    border-top: var(--thickness) var(--line-style) var(--accent);
    width: var(--line-width);
    margin-top: 0;
    margin-bottom: 0;
}

.ontag-lp-divider.left {
    margin-left: 0;
    margin-right: auto;
}

.ontag-lp-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.ontag-lp-divider.right {
    margin-left: auto;
    margin-right: 0;
}

@media (min-width: 480px) {
    .ontag-product-thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

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

@media (min-width: 640px) {
    .ontag-product-breadcrumbs {
        width: min(1180px, calc(100% - 48px));
    }

    .ontag-lp-section {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ontag-lp-cards,
    .ontag-lp-gallery,
    .ontag-lp-stats,
    .ontag-lp-guarantees {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .ontag-product-secure {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .ontag-lp-grid,
    .ontag-lp-columns.ratio-50-50 {
        grid-template-columns: 1fr 1fr;
    }

    .ontag-lp-columns.ratio-40-60 {
        grid-template-columns: 2fr 3fr;
    }

    .ontag-lp-columns.ratio-60-40 {
        grid-template-columns: 3fr 2fr;
    }

    .ontag-lp-columns.ratio-33-67 {
        grid-template-columns: 1fr 2fr;
    }

    .ontag-lp-columns.ratio-67-33 {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .ontag-product {
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
        gap: 56px;
    }

    .ontag-product-gallery {
        position: sticky;
        top: 98px;
    }

    .ontag-lp-cards,
    .ontag-lp-stats,
    .ontag-lp-guarantees {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ontag-lp-gallery,
    .ontag-lp-logos {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ontag-lp-columns.reverse-mobile .ontag-lp-column:first-child {
        order: 2;
    }

    .ontag-lp-columns.reverse-mobile .ontag-lp-column:last-child {
        order: 1;
    }

    .ontag-product-sticky {
        position: fixed;
        z-index: 9990;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        border-top: 1px solid #e6e6df;
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -12px 30px rgba(0, 0, 0, .1);
        backdrop-filter: blur(14px);
        display: none;
        align-items: center;
        gap: 12px;
    }

    .ontag-product-sticky.is-enabled {
        display: flex;
    }

    .ontag-product-sticky-info {
        min-width: 0;
        flex: 1;
        display: grid;
        gap: 2px;
    }

    .ontag-product-sticky-info strong {
        color: var(--product-ink);
        font-size: 17px;
    }

    .ontag-product-sticky-info span {
        overflow: hidden;
        color: var(--product-muted);
        font-size: 11px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ontag-product-sticky button {
        min-height: 46px;
        padding: 0 18px;
        border: 0;
        border-radius: 8px;
        background: var(--product-black);
        color: #ffffff;
        font-weight: 900;
    }

    .ontag-product-sticky button:disabled {
        background: #d9d9d2;
        color: #6d7068;
    }
}

@media (max-width: 374px) {
    .ontag-product-breadcrumbs {
        width: min(100% - 24px, 1180px);
    }

    .ontag-product-title {
        font-size: 31px;
    }

    .ontag-product-main-image {
        padding: 10px;
    }

    .ontag-product-secure span {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ontag-product-page *,
    .ontag-product-page *::before,
    .ontag-product-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
