/* Custom polish & interactive styling for Etiqueta Única clone */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

body, html {
    font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #383838;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure header stays properly fixed on scroll */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Mega menu hover effect for desktop */
@media screen and (min-width: 992px) {
    .menu__item--tem-submenu {
        position: static;
    }

    .menu__item--tem-submenu:hover > .menu__second-level__wrapper {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: fadeInMenu 0.2s ease-out;
    }

    @keyframes fadeInMenu {
        from { opacity: 0; transform: translateY(-4px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .menu__second-level__wrapper {
        left: 0;
        width: 100%;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        border-top: 1px solid #f0f0f0;
    }
}

/* Product card hover flip effect */
.vitrine-item__imagens {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fdfdfd;
    cursor: pointer;
}

.vitrine-item__imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.35s ease, transform 0.4s ease;
}

.vitrine-item__imagem--primaria {
    opacity: 1;
    z-index: 1;
}

.vitrine-item__imagem--secundaria {
    opacity: 0;
    z-index: 2;
}

.vitrine-item:hover .vitrine-item__imagem--secundaria {
    opacity: 1;
}

.vitrine-item:hover .vitrine-item__imagem--primaria {
    opacity: 0;
}

.vitrine-item:hover .vitrine-item__imagem {
    transform: scale(1.03);
}

/* Heart favorite button */
.botao-favoritar {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.botao-favoritar:hover {
    transform: scale(1.15);
}

.botao-favoritar.ativo svg,
.botao-favoritar.active svg {
    color: #d31238 !important;
    fill: #d31238 !important;
}

/* Floating Cart Drawer overlay and panel */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

#carrinhoFlutuante {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 92vw;
    height: 100vh;
    background: #ffffff;
    z-index: 2001;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
    border: none;
    border-radius: 0;
}

#carrinhoFlutuante.aberto {
    display: flex !important;
    transform: translateX(0);
}

#carrinhoFlutuante .carrinho-flutuante__wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

#carrinhoFlutuante .carrinho-flutuante__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eeeeee;
    background: #ffffff;
}

#carrinhoFlutuante .carrinho-flutuante__titulo {
    font-family: "Libre Baskerville", serif;
    font-size: 18px;
    font-weight: 400;
    color: #222;
}

#carrinhoFlutuante .carrinho-flutuante__botao--fechar {
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    color: #444;
}

#carrinhoFlutuante .carrinho-flutuante__content {
    flex: 1;
    overflow-y: auto;
}

/* User Login Popover */
.header__login-wrapper {
    position: relative;
    display: inline-block;
}

.header__login-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 280px;
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    z-index: 1002;
    display: none;
}

.header__login-wrapper:hover .header__login-menu {
    display: block;
}

/* Autocomplete search results */
.busca-fixa__autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    margin-top: 4px;
    z-index: 1005;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.busca-item-sugerido {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    gap: 12px;
    border-bottom: 1px solid #f6f6f6;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.15s;
}

.busca-item-sugerido:hover {
    background-color: #fafafa;
}

.busca-item-sugerido img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 3px;
}

.busca-item-sugerido-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.busca-item-sugerido-price {
    font-size: 12px;
    color: #138b21;
    font-weight: 700;
}

/* Toast notification */
.luxury-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #111111;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.luxury-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.luxury-toast-icon {
    color: #52c41a;
    font-size: 16px;
    font-weight: bold;
}

/* Stories Modal */
.story-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.88);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.story-modal-overlay.active {
    display: flex;
}

.story-modal-container {
    width: 380px;
    max-width: 90vw;
    height: 640px;
    max-height: 85vh;
    background: #1a1a1a;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.story-modal-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 10px 12px 0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.story-modal-progress-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    transition: width 5s linear;
}

.story-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    z-index: 10;
}

.story-modal-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.story-modal-brand-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
}

.story-modal-brand-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.story-modal-body {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-modal-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-modal-footer {
    padding: 16px;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.story-modal-product-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.story-modal-product-price {
    color: #d1b16c;
    font-size: 15px;
    font-weight: 700;
}

.story-modal-cta {
    background: #ffffff;
    color: #000000;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ================= PRODUCT DETAIL QUICK VIEW MODAL ================= */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 3500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal-container {
    background: #ffffff;
    width: 900px;
    max-width: 96vw;
    max-height: 90vh;
    border-radius: 6px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 30px;
    box-sizing: border-box;
    animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #888;
    cursor: pointer;
    transition: color 0.15s;
    z-index: 10;
}

.product-modal-close:hover {
    color: #000;
}

.product-modal-grid {
    display: flex;
    gap: 36px;
}

@media screen and (max-width: 768px) {
    .product-modal-grid {
        flex-direction: column;
        gap: 20px;
    }
    .product-modal-container {
        padding: 20px;
    }
}

.product-modal-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-modal-main-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-modal-main-image-wrap img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-modal-main-image-wrap:hover img {
    transform: scale(1.08);
}

.product-modal-thumbs {
    display: flex;
    gap: 10px;
}

.product-modal-thumb {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 3px;
    object-fit: contain;
    cursor: pointer;
    padding: 2px;
    transition: border-color 0.2s;
}

.product-modal-thumb.active {
    border-color: #000;
}

.product-modal-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.product-modal-badge {
    display: inline-block;
    background: #f4ede2;
    color: #7b6237;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 2px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.product-modal-brand {
    font-family: "Red Hat Display", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #555;
    text-transform: uppercase;
}

.product-modal-title {
    font-family: "Libre Baskerville", serif;
    font-size: 20px;
    color: #111;
    margin: 6px 0;
    line-height: 1.3;
}

.product-modal-sku {
    font-size: 12px;
    color: #888;
    margin-bottom: 16px;
}

.product-modal-pricing {
    padding: 14px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 18px;
}

.product-modal-price {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.product-modal-installments {
    font-size: 13px;
    color: #555;
    margin: 4px 0 2px;
}

.product-modal-pix {
    font-size: 12px;
    color: #138b21;
    font-weight: 600;
}

.product-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-modal-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: #fafafa;
    border-radius: 4px;
    margin-bottom: 18px;
}

.highlight-item {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #444;
    line-height: 1.4;
}

.highlight-icon {
    font-size: 16px;
}

.product-modal-specs {
    font-size: 12px;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 4px;
    border-bottom: 1px dotted #e5e5e5;
}

/* ================= MODAL COMO VENDER ================= */
.vender-modal-overlay,
.iguatemi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 3500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.vender-modal-overlay.active,
.iguatemi-modal-overlay.active {
    display: flex;
}

.vender-modal-container,
.iguatemi-modal-container {
    background: #ffffff;
    width: 780px;
    max-width: 96vw;
    max-height: 90vh;
    border-radius: 6px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 36px 30px;
    box-sizing: border-box;
}

.vender-modal-close,
.iguatemi-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #888;
    cursor: pointer;
}

.vender-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media screen and (max-width: 768px) {
    .vender-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vender-step-card {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 16px;
    text-align: center;
}

.vender-step-card .step-num {
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    line-height: 32px;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 10px;
}

.vender-step-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.vender-step-card p {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
}

/* Swiper navigation buttons styling */
.swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    color: #333333 !important;
    transition: all 0.2s ease !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px !important;
    font-weight: bold !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #000000 !important;
    color: #ffffff !important;
}


/* ================= NOVOS ESTILOS INTERATIVOS ================= */

/* Form inputs luxo */
.luxury-input {
    width: 100%;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.luxury-input:focus {
    outline: none;
    border-color: #111111;
    box-shadow: 0 0 0 1px #111111;
}

.form-group {
    margin-bottom: 14px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #555;
    margin-bottom: 5px;
}

/* Modal Login */
.login-modal-overlay,
.wishlist-modal-overlay,
.checkout-modal-overlay,
.info-modal-overlay,
.blog-modal-overlay,
.app-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
}

.login-modal-overlay.active,
.wishlist-modal-overlay.active,
.checkout-modal-overlay.active,
.info-modal-overlay.active,
.blog-modal-overlay.active,
.app-modal-overlay.active {
    display: flex;
}

.login-modal-container {
    background: #ffffff;
    width: 440px;
    max-width: 94vw;
    border-radius: 6px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.login-modal-tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.login-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.login-tab.active {
    color: #111;
    border-bottom-color: #111;
}

.login-form-panel {
    display: none;
}

.login-form-panel.active {
    display: block;
}

.login-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 18px 0;
    color: #aaa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-divider::before, .login-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.login-divider span {
    padding: 0 10px;
}

.btn-social-login {
    flex: 1;
    height: 40px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

.btn-social-login:hover {
    background: #f9f9f9;
    border-color: #bbb;
}

.login-modal-close,
.wishlist-modal-close,
.checkout-modal-close,
.info-modal-close,
.blog-modal-close,
.app-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    color: #888;
    cursor: pointer;
}

/* Modal Favoritos */
.wishlist-modal-container {
    background: #ffffff;
    width: 580px;
    max-width: 94vw;
    max-height: 85vh;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.wishlist-modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-modal-body {
    flex: 1;
    overflow-y: auto;
}

.wishlist-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Modal Checkout */
.checkout-modal-container {
    background: #ffffff;
    width: 960px;
    max-width: 96vw;
    max-height: 90vh;
    border-radius: 6px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 30px;
}

.checkout-modal-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
}

@media screen and (max-width: 820px) {
    .checkout-modal-grid {
        grid-template-columns: 1fr;
    }
}

.checkout-step-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.step-badge {
    width: 24px;
    height: 24px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-step-title h3 {
    font-family: 'Libre Baskerville', serif;
    font-size: 17px;
    color: #111;
    margin: 0;
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.checkout-payment-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.payment-option.active {
    border-color: #111;
    background: #fafafa;
}

.checkout-summary-col {
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    padding: 24px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    padding-top: 12px;
    border-top: 1px solid #eee;
    margin-top: 12px;
    margin-bottom: 4px;
}

/* Modal Institucional e Blog */
.info-modal-container,
.blog-modal-container {
    background: #ffffff;
    width: 760px;
    max-width: 95vw;
    max-height: 88vh;
    border-radius: 6px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 36px 32px;
    line-height: 1.6;
}

.info-modal-container h2,
.blog-modal-container h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 24px;
    color: #111;
    margin-bottom: 14px;
}

.info-modal-container p,
.blog-modal-container p {
    font-size: 14px;
    color: #444;
    margin-bottom: 14px;
}

.app-modal-container {
    background: #ffffff;
    width: 500px;
    max-width: 94vw;
    border-radius: 6px;
    position: relative;
    padding: 36px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Mobile search overlay */
@media screen and (max-width: 991px) {
    .busca-fixa--mobile.aberta {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        z-index: 5000;
        padding: 20px;
    }
}

/* ================= MOBILE MENU DRAWER & ACCORDION ================= */
.menu__close-btn {
    display: none;
}

@media screen and (max-width: 991px) {
    .menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 85vw;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        z-index: 10001;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 10px 0 30px rgba(0,0,0,0.18);
    }

    .menu.menu--ativo {
        transform: translateX(0) !important;
    }

    .menu__close-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 14px;
        width: 36px;
        height: 36px;
        background: #f0f0f0;
        border: none;
        border-radius: 50%;
        font-size: 24px;
        color: #111;
        cursor: pointer;
        z-index: 10005;
        line-height: 1;
    }

    .menu__close-btn:hover {
        background: #e0e0e0;
    }

    .menu__item--tem-submenu > .menu__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 18px;
    }

    .menu__chevron-arrows {
        transition: transform 0.25s ease;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto > .menu__link .menu__chevron-arrows,
    .menu__item--tem-submenu.menu__item--tem-submenu--aberto > .menu__arrow-submenu .menu__chevron-arrows {
        transform: rotate(90deg);
    }

    .menu__item--tem-submenu > .menu__second-level__wrapper {
        display: none;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto > .menu__second-level__wrapper {
        display: block !important;
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        background: #f9f9f9 !important;
        padding: 6px 12px 16px 12px !important;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto .menu__second-level {
        display: block !important;
        min-height: auto !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto .menu__subitens {
        display: block !important;
        height: auto !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto .menu__subitens__column-items {
        display: block !important;
        margin-bottom: 12px !important;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto .menu__subitens__column-title {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #888;
        padding: 6px 0;
        border: none;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto .menu__subitem {
        padding: 6px 0;
    }

    .menu__item--tem-submenu.menu__item--tem-submenu--aberto .menu__subitem a {
        font-size: 13px;
        color: #333;
    }
}

/* ================= VITRINE PRODUCT HIGHLIGHT & CURSOR ================= */
.vitrine-item {
    cursor: pointer !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.vitrine-item:hover {
    transform: translateY(-3px);
}

.vitrine-item--highlight {
    box-shadow: 0 0 0 2.5px #c1a200 !important;
    border-radius: 4px;
    animation: pulseHighlight 1.5s ease-in-out infinite alternate;
}

@keyframes pulseHighlight {
    from { box-shadow: 0 0 0 2.5px #c1a200; }
    to { box-shadow: 0 0 14px 4px rgba(193, 162, 0, 0.4); }
}

.menu__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.55);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu__overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
}

