/* -------------------------------------------------------------
   DOIS QUILATE - DESIGN SYSTEM BRUTALISTA (ESTILO FTP)
   ------------------------------------------------------------- */

:root {
    /* Paleta de Cores Crua (Contraste Máximo) */
    --bg-primary: #ffffff;
    --bg-secondary: #f2f2f2;
    --text-primary: #000000;
    --text-secondary: #555555;
    
    --border-color: #000000;
    --border-width: 1px;
    --border-width-thick: 2px;
    
    --soldout: #ff0000;
    
    /* Tipografia */
    --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-mono: 'Courier Prime', Courier, monospace;
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    border-radius: 0 !important; /* Remoção de qualquer borda arredondada */
    -webkit-font-smoothing: antialiased;
}

/* Utilitário de Acessibilidade / SEO */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

/* Custom Scrollbar - Industrial */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
}

/* Links & Botões */
a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    outline: none;
}

/* -------------------------------------------------------------
   COMPONENTES GERAIS / BOTÕES
   ------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: var(--border-width) solid var(--border-color);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* -------------------------------------------------------------
   FAIXA DE ANÚNCIO (BARRINHA SIMPLES)
   ------------------------------------------------------------- */
.announcement-bar {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 10px 0;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: var(--border-width) solid var(--border-color);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.announcement-track {
    display: inline-flex;
    animation: marquee-scroll 25s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.announcement-track span {
    display: inline-block;
    white-space: nowrap;
}

@keyframes marquee-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* -------------------------------------------------------------
   HEADER (ESTILO FTP - LOGO À ESQUERDA, MENU À DIREITA)
   ------------------------------------------------------------- */
.main-header {
    background-color: var(--bg-primary);
    padding: 24px 40px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centraliza verticalmente o menu em relação à logo */
}

/* Logo à Esquerda em Itálico Extra-Negrito */
.logo-text {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: 64px;
    line-height: 0.8;
    letter-spacing: -3px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo-gif {
    height: 156px; /* Aumentado mais 50% para dar maior destaque */
    width: auto;
    display: block;
}

/* Menu à Direita */
.nav-menu ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 4px 0;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* -------------------------------------------------------------
   TELA INICIAL: CARROSSEL DE FOTOS CENTRAL
   ------------------------------------------------------------- */
.home-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 60px;
}

.hero-section {
    width: 100%;
    max-width: 480px; /* Largura focada e alta como na FTP */
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 0.77; /* Proporção alta vertical da foto */
    background-color: var(--bg-secondary);
    border: var(--border-width) solid var(--border-color);
    overflow: hidden;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Setas do Carrossel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--bg-primary);
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
    transition: transform 0.1s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.15);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* -------------------------------------------------------------
   SUB-LOGOS (RECORDS & VIDEO)
   ------------------------------------------------------------- */
.sublogos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sublogo-svg {
    display: block;
}

/* -------------------------------------------------------------
   GRADE DE PRODUTOS (SHOP)
   ------------------------------------------------------------- */
.products-section {
    padding: 60px 40px;
    background-color: var(--bg-primary);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: var(--border-width-thick) solid var(--border-color);
    padding-bottom: 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Skeleton Loading (Placeholders de Carregamento) */
.skeleton-card {
    width: 100% !important;
    border: var(--border-width) solid var(--border-color) !important;
    background-color: var(--bg-primary) !important;
    padding: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    box-sizing: border-box !important;
}

.skeleton-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background-color: #e5e5e5 !important;
    animation: pulse-skeleton 1.5s infinite ease-in-out !important;
}

.skeleton-text {
    height: 14px !important;
    background-color: #e5e5e5 !important;
    animation: pulse-skeleton 1.5s infinite ease-in-out !important;
}

.skeleton-text.line-1 {
    width: 70% !important;
}

.skeleton-text.line-2 {
    width: 40% !important;
}

@keyframes pulse-skeleton {
    0% {
        background-color: #e5e5e5;
    }
    50% {
        background-color: #f2f2f2;
    }
    100% {
        background-color: #e5e5e5;
    }
}

/* Card do Produto (Quadrado Limpo) */
.product-card {
    border: var(--border-width) solid var(--border-color);
    background-color: var(--bg-primary);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
}

.product-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: var(--bg-secondary);
    border-bottom: var(--border-width) solid var(--border-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Efeito simplificado de hover */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quickview {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: var(--border-width) solid var(--border-color);
    padding: 10px 20px;
}

.btn-quickview:hover {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Crachá SOLD OUT */
.soldout-badge {
    position: absolute;
    background-color: var(--soldout);
    color: var(--bg-primary);
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    padding: 6px 12px;
    z-index: 5;
    top: 10px;
    left: 10px;
    border: var(--border-width) solid var(--border-color);
}

/* Info do Produto */
.product-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-name {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.3;
}

.product-price {
    font-family: var(--font-mono);
    font-weight: 400;
    color: var(--text-secondary);
}

.product-stock-warning {
    font-family: var(--font-mono) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #ff0000 !important; /* Vermelho neon/urgência */
    margin-top: 6px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* -------------------------------------------------------------
   MODAL BRUTALISTA DE DETALHES
   ------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
}

.modal-container {
    background-color: var(--bg-primary);
    border: var(--border-width-thick) solid var(--border-color);
    width: 90%;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    color: var(--text-primary);
    background: none;
    border: none;
    z-index: 15;
}

.modal-close:hover {
    text-decoration: underline;
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: var(--border-width) solid var(--border-color);
    padding: 20px;
}

.modal-product-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.modal-thumbnails {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    width: 100%;
}

.thumb-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border: var(--border-width) solid var(--border-color);
    cursor: pointer;
    background-color: var(--bg-primary);
    opacity: 0.6;
    transition: opacity 0.15s ease, border-color 0.15s ease;
}

.thumb-img.active,
.thumb-img:hover {
    opacity: 1;
    border-color: var(--text-primary);
}

.modal-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-price {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.modal-description {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Seletores */
.selector-group {
    margin-bottom: 20px;
}

.selector-label {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
    display: block;
    margin-bottom: 8px;
}

/* Opções de Cores (Estilo Texto Retangular) */
.color-options {
    display: flex;
    gap: 8px;
}

.color-btn {
    border: var(--border-width) solid var(--border-color);
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    background-color: var(--bg-primary);
}

.color-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

/* Opções de Tamanhos */
.size-options {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.size-btn {
    height: 40px;
    border: var(--border-width) solid var(--border-color);
    font-family: var(--font-mono);
    font-weight: 700;
    background-color: var(--bg-primary);
}

.size-btn.active {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.size-btn.disabled-size {
    opacity: 0.2;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

.modal-actions {
    margin-top: 16px;
}

.btn-add-to-cart {
    width: 100%;
}

/* -------------------------------------------------------------
   CARRINHO DRAWER (GAVETA BRANCA GEOMÉTRICA)
   ------------------------------------------------------------- */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 250;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
}

.cart-drawer.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

.cart-drawer-container {
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--bg-primary);
    border-left: var(--border-width-thick) solid var(--border-color);
    position: relative;
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active .cart-drawer-container {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    border-bottom: var(--border-width) solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 14px;
}

.cart-close {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 11px;
}

.cart-close:hover {
    text-decoration: underline;
}

/* Corpo do Carrinho */
.cart-body {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-mono);
}

.cart-empty-state {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
}

/* Item do Carrinho */
.cart-item {
    display: flex;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: var(--border-width) solid var(--border-color);
    position: relative;
}

.cart-item-img-box {
    width: 60px;
    height: 60px;
    border: var(--border-width) solid var(--border-color);
    flex-shrink: 0;
}

.cart-item-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-title {
    font-weight: 700;
    font-size: 12px;
    color: var(--text-primary);
    margin-right: 16px;
}

.cart-item-meta {
    font-size: 10px;
    color: var(--text-secondary);
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.qty-selector {
    display: flex !important;
    align-items: center !important;
    border: 2px solid #000000 !important;
    background-color: #ffffff !important;
    height: 32px !important;
    box-sizing: border-box !important;
}

.qty-btn {
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    transition: background-color 0.1s ease !important;
    box-sizing: border-box !important;
}

.qty-btn:first-child {
    border-right: 2px solid #000000 !important;
}

.qty-btn:last-child {
    border-left: 2px solid #000000 !important;
}

.qty-btn:hover {
    background-color: #f0f0f0 !important;
}

.qty-val {
    width: 32px !important;
    height: 32px !important;
    line-height: 28px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #000000 !important;
    box-sizing: border-box !important;
}

.cart-item-price {
    font-weight: 700;
    font-size: 12px;
}

.cart-item-remove {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    color: #000000 !important;
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    border-radius: 0px !important;
    transition: color 0.1s ease !important;
}

.cart-item-remove:hover {
    color: #ff0000 !important;
}

/* Rodapé do Carrinho */
.cart-footer {
    padding: 24px;
    background-color: var(--bg-secondary);
    border-top: var(--border-width) solid var(--border-color);
    font-family: var(--font-mono);
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.total-row {
    font-weight: 700;
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 20px;
    border-top: var(--border-width) dashed var(--border-color);
    padding-top: 10px;
}

.btn-checkout {
    width: 100%;
}

/* -------------------------------------------------------------
   NEWSLETTER
   ------------------------------------------------------------- */
.newsletter-section {
    padding: 80px 20px;
    border-top: var(--border-width) solid var(--border-color);
    border-bottom: var(--border-width) solid var(--border-color);
    background-color: var(--bg-secondary);
    text-align: center;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.newsletter-description {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    border: var(--border-width) solid var(--border-color);
    background-color: var(--bg-primary);
}

.newsletter-form input {
    flex-grow: 1;
    border: none;
    padding: 12px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form .btn {
    border: none;
    border-left: var(--border-width) solid var(--border-color);
}

/* -------------------------------------------------------------
   FOOTER (ESTILO FTP COM BARRAS)
   ------------------------------------------------------------- */
.main-footer {
    background-color: var(--bg-primary);
    padding: 60px 20px;
    border-top: var(--border-width) solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.slash-separator {
    color: var(--text-primary);
    margin: 0 12px;
}

.footer-info {
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: 1px;
}

.footer-logo {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.footer-logo-img {
    height: 20px; /* Reduzido para 20px de altura */
    width: auto;
    display: block;
}


/* -------------------------------------------------------------
   SEÇÃO DE CONTATO (BRUTALISTA)
   ------------------------------------------------------------- */
.contact-section {
    padding: 60px 20px;
    background-color: var(--bg-primary);
}

.contact-box {
    max-width: 500px;
    margin: 0 auto;
    border: var(--border-width) solid var(--border-color);
    padding: 40px;
    background-color: var(--bg-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 12px;
    border: var(--border-width) solid var(--border-color);
    border-radius: 0;
    outline: none;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 0.15s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #fafafa;
}

.btn-send-message {
    width: 100%;
    padding: 14px;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
}

/* -------------------------------------------------------------
   SEÇÃO DE TERMOS E POLÍTICAS
   ------------------------------------------------------------- */
.terms-section,
.privacy-section {
    padding: 60px 20px;
    background-color: var(--bg-primary);
}

.terms-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.terms-block {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 30px;
}

.terms-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.terms-block h3 {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.terms-block p {
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: justify;
}

/* -------------------------------------------------------------
   SEÇÃO DE AVALIAÇÕES (PROVA SOCIAL)
   ------------------------------------------------------------- */
.reviews-section {
    padding: 60px 20px !important;
    background-color: var(--bg-primary) !important;
    border-bottom: var(--border-width-thick) solid var(--border-color) !important;
}

.reviews-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.review-card {
    border: var(--border-width) solid var(--border-color) !important;
    padding: 20px !important;
    background-color: var(--bg-primary) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    box-sizing: border-box !important;
}

.review-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.review-user {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.review-avatar {
    font-size: 24px !important;
}

.review-user-info {
    display: flex !important;
    flex-direction: column !important;
}

.review-name {
    font-family: var(--font-mono) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    color: var(--text-primary) !important;
}

.review-verified {
    font-family: var(--font-mono) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    color: #00ff00 !important; /* Verde neon */
    letter-spacing: 0.5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.review-stars {
    font-size: 12px !important;
}

.review-text {
    font-family: var(--font-mono) !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
    text-align: justify !important;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }
}

/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
   ------------------------------------------------------------- */

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .modal-container {
        max-height: 85vh;
        overflow-y: auto;
        width: 95%;
    }

    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        border-right: none;
        border-bottom: var(--border-width) solid var(--border-color);
    }

    .modal-details {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 16px 20px;
    }

    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .logo-gif {
        height: 70px;
    }

    .logo-text {
        font-size: 48px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .logo-text {
        font-size: 38px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .size-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .slash-separator {
        margin: 0 6px;
    }
}

/* -------------------------------------------------------------
   LIGHTBOX (ZOOM COM CARROSSEL)
   ------------------------------------------------------------- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
}

.lightbox-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content {
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--border-width) solid #fff;
    background-color: #000;
    max-width: 100%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 12px;
    background: none;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.lightbox-close:hover {
    text-decoration: underline;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: var(--border-width) solid #fff;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 15;
    transition: background-color 0.15s ease;
}

.lightbox-btn:hover {
    background-color: #fff;
    color: #000;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Responsividade Lightbox */
@media (max-width: 768px) {
    .lightbox-btn {
        width: 38px;
        height: 38px;
    }
}

/* Otimização de renderização de seções fora da tela (Melhoria de performance LCP/INP) */
.products-section,
.contact-section,
.newsletter-section,
.terms-section,
.privacy-section,
.main-footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}
/* -------------------------------------------------------------
   BANNER EASTER-EGG DO MINIGAME
   ------------------------------------------------------------- */
.game-easter-egg-section {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 30px auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.game-ee-container {
    border: 2px solid #000000 !important;
    background-color: #ffffff !important;
    padding: 16px 20px !important;
    box-shadow: 4px 4px 0px #000000 !important;
    box-sizing: border-box !important;
}

.game-ee-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.game-ee-badge {
    background-color: #000000 !important;
    color: #ffffff !important;
    font-family: var(--font-title) !important;
    font-weight: 900 !important;
    font-style: italic !important;
    font-size: 11px !important;
    padding: 4px 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.game-ee-text {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    flex-grow: 1 !important;
}

.btn-game-ee {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    font-family: var(--font-title) !important;
    font-weight: 900 !important;
    font-style: italic !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    box-shadow: 2px 2px 0px #333333 !important;
    transition: all 0.1s ease !important;
}

.btn-game-ee:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 1px 1px 0px #000000 !important;
}

@media (max-width: 600px) {
    .game-ee-content {
        flex-direction: column !important;
        text-align: center !important;
    }
    .game-ee-text {
        text-align: center !important;
    }
    .btn-game-ee {
        width: 100% !important;
    }
}


/* -------------------------------------------------------------
   ESTILOS DO MINIGAME (2QT DROP CATCHER)
   ------------------------------------------------------------- */
.game-section {
    padding: 60px 20px !important;
    background-color: #ffffff !important;
    border-top: 3px solid #000000 !important;
}

.game-wrapper {
    max-width: 600px !important;
    margin: 0 auto !important;
    border: 3px solid #000000 !important;
    background-color: #ffffff !important;
    box-shadow: 6px 6px 0px #000000 !important;
    padding: 30px !important;
    box-sizing: border-box !important;
}

.game-screen {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.game-instructions {
    text-align: left !important;
    margin-bottom: 24px !important;
    width: 100% !important;
}

.game-instructions h3 {
    font-family: var(--font-title) !important;
    font-weight: 900 !important;
    font-style: italic !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
}

.game-instructions p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 12px !important;
}

.game-items-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 16px 0 !important;
}

.game-items-list li {
    font-size: 14px !important;
    margin-bottom: 6px !important;
    padding-left: 10px !important;
}

.btn-game-action {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    font-family: var(--font-title) !important;
    font-weight: 900 !important;
    font-style: italic !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    padding: 12px 24px !important;
    cursor: pointer !important;
    box-shadow: 3px 3px 0px #333333 !important;
    transition: all 0.1s ease !important;
    letter-spacing: -0.5px !important;
    width: 100% !important;
    max-width: 280px !important;
}

.btn-game-action:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 1px 1px 0px #000000 !important;
    transform: translate(2px, 2px) !important;
}

.game-play-area {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.game-hud {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    font-family: 'Courier Prime', monospace !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    margin-bottom: 12px !important;
    border-bottom: 3px solid #6c5ce7 !important;
    padding-bottom: 8px !important;
    color: #6c5ce7 !important; /* Roxo SNES */
}

#game-canvas {
    width: 100% !important;
    max-width: 800px !important;
    aspect-ratio: 2 / 1 !important; /* Trava a proporção exata do novo tamanho (800x400) */
    background-color: #000000 !important;
    border: 4px solid #6c5ce7 !important; /* Borda Roxo SNES */
    display: block !important;
    box-sizing: border-box !important;
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.4) !important;
}

.text-danger {
    color: #ff0000 !important;
}

.text-success {
    color: #00c853 !important;
}

.game-result-title {
    font-family: var(--font-title) !important;
    font-weight: 900 !important;
    font-style: italic !important;
    font-size: 32px !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
}

.game-result-text {
    font-size: 14px !important;
    margin-bottom: 10px !important;
}

.game-result-score {
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    font-family: 'Courier Prime', monospace !important;
}

.coupon-box {
    border: 3px dashed #000000 !important;
    padding: 20px !important;
    margin-bottom: 24px !important;
    background-color: #f9f9f9 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.coupon-box p {
    font-family: 'Courier Prime', monospace !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    margin-bottom: 10px !important;
}

.coupon-code {
    font-family: var(--font-title) !important;
    font-weight: 900 !important;
    font-style: italic !important;
    font-size: 32px !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
    user-select: all !important;
    color: #000000 !important;
}

.btn-copy {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    font-family: 'Courier Prime', monospace !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    padding: 8px 16px !important;
    cursor: pointer !important;
    box-shadow: 2px 2px 0px #000000 !important;
    transition: all 0.1s ease !important;
}

.btn-copy:hover {
    background-color: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

/* === INICIO DO CHECKOUT === */
/* -------------------------------------------------------------
   DOIS QUILATE - ESTILIZAÇÃO DO CARRINHO, CHECKOUT & PRODUTO
   Copie todo este código e cole em:
   Painel do WordPress > Aparência > Personalizar > CSS Adicional
   ------------------------------------------------------------- */
/* Impedir qualquer rolagem horizontal na tela (ajuste perfeito ao tamanho do monitor/celular) */
html,
body,
.site,
#page,
.site-header,
.site-content,
.site-footer,
.woocommerce-checkout,
.woocommerce-cart,
form.checkout,
.wc-block-cart,
.wc-block-checkout {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Ampliar o container principal das páginas para ocupar mais a tela no computador */
body.woocommerce-checkout .ast-container,
body.woocommerce-checkout .site-content .ast-container,
body.woocommerce-checkout #content,
body.woocommerce-checkout .site-content,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .ast-row,
body.woocommerce-checkout [class*="content-container"],
body.woocommerce-checkout [class*="main-content"],
body.woocommerce-cart .ast-container,
body.woocommerce-cart .site-content .ast-container,
body.woocommerce-cart #content,
body.woocommerce-cart .site-content,
body.woocommerce-cart .site-main,
body.woocommerce-cart .entry-content,
body.woocommerce-cart .ast-row,
body.woocommerce-cart [class*="content-container"],
body.woocommerce-cart [class*="main-content"],
.wp-block-woocommerce-cart,
.wc-block-cart {
    max-width: 1400px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

body.woocommerce-checkout,
body.woocommerce-cart,
body.single-product,
.woocommerce {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/* --- FORÇAR HELVETICA EM TODA A TELA --- */
.woocommerce-checkout,
.woocommerce-checkout *,
.woocommerce-cart,
.woocommerce-cart *,
.single-product,
.single-product * {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/* --- FORÇAR LEITURA REGULAR E LEGÍVEL (FIM DA FONTE LIGHT/FINA) --- */
.woocommerce p,
.woocommerce-checkout p,
.woocommerce-cart p,
.single-product p,
.woocommerce-product-details__short-description,
.woocommerce-product-details__short-description p,
.woocommerce-Tabs-panel--description,
.woocommerce-Tabs-panel--description p,
.product-description,
.product-description p,
.entry-content p {
    font-weight: 400 !important; /* Fonte Peso Regular (altamente visível) */
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #000000 !important;
}

/* --- CABEÇALHO IDÊNTICO AO DA HOME (LOGO À ESQUERDA, MENU À DIREITA) --- */
.site-header,
#masthead,
.ast-header-bar-wrap,
.main-header-bar,
.site-header-row,
.wp-block-template-part header {
    background-color: #ffffff !important;
    border-bottom: 3px solid #000000 !important;
    padding: 24px 0 !important;
    display: block !important;
}

/* Alinhamento Flex: Logo à Esquerda, Menu à Direita */
.wp-block-template-part header [class*="header-container"],
.site-header [class*="header-container"],
.site-header .site-header-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-direction: row !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    width: 100% !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
}

/* Ajustar o container do logotipo para alinhar à esquerda */
.site-branding,
.ast-site-identity,
.site-logo-img,
.wp-block-site-title {
    display: block !important;
    margin: 0 !important;
    text-align: left !important;
    float: left !important;
}

/* Hack CSS da Logo GIF da Home (Logo à Esquerda) */
/* Hack CSS da Logo GIF da Home (Apenas nas tags de Link para evitar duplicação) */
body.woocommerce-checkout [class*="site-title"] a,
body.woocommerce-checkout [class*="site-name"] a,
body.woocommerce-checkout [class*="branding"] a,
body.woocommerce-checkout [class*="logo"] a,
body.woocommerce-checkout .custom-logo-link,
body.woocommerce-cart [class*="site-title"] a,
body.woocommerce-cart [class*="site-name"] a,
body.woocommerce-cart [class*="branding"] a,
body.woocommerce-cart [class*="logo"] a,
body.woocommerce-cart .custom-logo-link,
body.single-product [class*="site-title"] a,
body.single-product [class*="site-name"] a,
body.single-product [class*="branding"] a,
body.single-product [class*="logo"] a,
body.single-product .custom-logo-link {
    display: block !important;
    width: 250px !important;
    height: 156px !important;
    background-image: url('/assets/LOGO-RODANDO.gif') !important;
    background-repeat: no-repeat !important;
    background-position: left center !important;
    background-size: contain !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-shadow: none !important;
    border: none !important;
    margin: 0 !important;
}

/* Limpar quaisquer estilos de background ou tamanho nas tags Pai do cabeçalho */
body.woocommerce-checkout [class*="site-title"],
body.woocommerce-checkout [class*="site-name"],
body.woocommerce-checkout [class*="branding"],
body.woocommerce-checkout [class*="logo"],
body.woocommerce-cart [class*="site-title"],
body.woocommerce-cart [class*="site-name"],
body.woocommerce-cart [class*="branding"],
body.woocommerce-cart [class*="logo"],
body.single-product [class*="site-title"],
body.single-product [class*="site-name"],
body.single-product [class*="branding"],
body.single-product [class*="logo"] {
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
}

/* Esconder qualquer tag <img> dentro da logo para não encavalar com o background-image */
body.woocommerce-checkout [class*="site-title"] img,
body.woocommerce-checkout [class*="branding"] img,
body.woocommerce-checkout [class*="logo"] img,
body.woocommerce-checkout .custom-logo,
body.woocommerce-cart [class*="site-title"] img,
body.woocommerce-cart [class*="branding"] img,
body.woocommerce-cart [class*="logo"] img,
body.woocommerce-cart .custom-logo,
body.single-product [class*="site-title"] img,
body.single-product [class*="branding"] img,
body.single-product [class*="logo"] img,
body.single-product .custom-logo {
    display: none !important;
}

/* Ajustar os itens do menu de navegação do cabeçalho */
.wp-block-template-part header .wp-block-navigation,
.site-header .main-header-bar-navigation {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
}

.wp-block-template-part header .wp-block-navigation-item a,
.site-header .main-header-bar-navigation a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    color: #000000 !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    padding: 8px 16px !important;
}

.wp-block-template-part header .wp-block-navigation-item a:hover,
.site-header .main-header-bar-navigation a:hover {
    text-decoration: underline !important;
}

/* Responsividade do Cabeçalho para Mobile */
@media (max-width: 768px) {
    .wp-block-template-part header [class*="header-container"],
    .site-header [class*="header-container"],
    .site-header .site-header-row,
    .wp-block-template-part header .alignwide {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
    
    body.woocommerce-checkout [class*="site-title"] a,
    body.woocommerce-cart [class*="site-title"] a,
    body.single-product [class*="site-title"] a {
        width: 120px !important;
        height: 75px !important;
        background-position: left center !important;
        margin: 0 !important;
    }
}

/* --- ESTILIZAÇÃO DA PÁGINA DE CARRINHO (CARRINHO BRUTALISTA) --- */
/* Título Principal */
.wc-block-cart__title,
.woocommerce-cart h1.entry-title,
.woocommerce-cart h1 {
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 28px !important;
    letter-spacing: -0.5px !important;
    color: #000000 !important;
    border-bottom: 3px solid #000000 !important;
    padding-bottom: 12px !important;
    margin-bottom: 30px !important;
    margin-top: 20px !important;
}

/* Container de Itens do Carrinho */
.wc-block-cart-items,
.woocommerce-cart-form {
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 20px !important;
    background-color: #ffffff !important;
    box-shadow: 4px 4px 0px #000000 !important;
    margin-bottom: 30px !important;
}

/* Foto do Produto no Carrinho */
.wc-block-cart-item__image img,
.product-thumbnail img {
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

/* Informações do Item */
.wc-block-cart-item__name,
.product-name a {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 14px !important;
}

/* Detalhes de Variações (Tamanho, Cor, etc.) */
.wc-block-cart-item__metadata,
.product-name .variation {
    font-size: 11px !important;
    text-transform: uppercase !important;
    color: #666666 !important;
    margin-top: 5px !important;
}

/* Seletor de Quantidade */
.wc-block-cart-item__quantity,
.quantity input.qty,
.wc-block-cart-item__quantity .wc-block-components-quantity-selector {
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    background-color: #ffffff !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

/* Botões do Seletor de Quantidade (+ e -) */
.wc-block-components-quantity-selector__button {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 700 !important;
    border: none !important;
}

.wc-block-components-quantity-selector__button:hover {
    background-color: #f0f0f0 !important;
}

/* Preços */
.wc-block-cart-item__price,
.product-price,
.product-subtotal {
    font-weight: 700 !important;
    color: #000000 !important;
}

/* Ícone de Excluir / Remover Item */
.wc-block-cart-item__remove-link,
.product-remove a,
.wc-block-cart-item__remove-button {
    color: #ff0000 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    transition: color 0.15s ease !important;
}

.wc-block-cart-item__remove-link:hover,
.product-remove a:hover {
    color: #000000 !important;
}

/* Laterais / Bloco de Resumo (Totais) no Carrinho */
.wc-block-cart__totals-sidebar,
.cart-collaterals,
.wc-block-cart-totals {
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 24px !important;
    background-color: #ffffff !important;
    box-shadow: 4px 4px 0px #000000 !important;
    margin-bottom: 30px !important;
}

/* Títulos do Bloco de Totais */
.wc-block-cart-totals__title,
.cart-collaterals h2 {
    font-weight: 900 !important;
    text-transform: uppercase !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    color: #000000 !important;
    border-bottom: 2px solid #000000 !important;
    padding-bottom: 8px !important;
    margin-bottom: 20px !important;
}

/* Linhas de Preço (Subtotal, Envio, Total) */
.wc-block-components-totals-item,
.cart-subtotal,
.shipping,
.order-total {
    font-size: 13px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    color: #000000 !important;
}

/* Destacar o Preço Final */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.order-total .amount {
    font-size: 18px !important;
    font-weight: 900 !important;
}

/* Botão de Finalizar Compra no Carrinho */
.wc-block-cart__submit-button,
.checkout-button,
.wc-block-cart__submit {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 18px 24px !important;
    box-shadow: 3px 3px 0px #333333 !important;
    width: 100% !important;
    font-size: 14px !important;
    transition: all 0.15s ease !important;
}

.wc-block-cart__submit-button:hover,
.checkout-button:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 1px 1px 0px #000000 !important;
}

/* --- GRID DE DUAS COLUNAS DO CHECKOUT CLÁSSICO (DESKTOP) --- */
@media (min-width: 900px) {
    form.checkout.woocommerce-checkout {
        display: grid !important;
        grid-template-columns: 1.15fr 0.85fr !important;
        gap: 40px !important;
        align-items: start !important;
        max-width: 1400px !important;
        width: 100% !important;
        margin: 40px auto !important;
        padding: 0 !important;
    }
    
    /* Detalhes de Cobrança e Entrega na Esquerda */
    #customer_details {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        max-width: 100% !important;
    }
    
    /* Título 'Seu Pedido' no topo da Direita */
    #order_review_heading {
        grid-column: 2 !important;
        grid-row: 1 !important;
        margin-top: 0 !important;
    }
    
    /* Detalhes do Pedido e Pagamento embaixo do título na Direita */
    #order_review {
        grid-column: 2 !important;
        grid-row: 2 !important;
        max-width: 100% !important;
    }
}

/* Títulos das Seções com Ícones de Segurança */
.woocommerce-billing-fields h3::before {
    content: "🛡️ " !important;
}

#order_review_heading::before {
    content: "🛒 " !important;
}

.woocommerce-checkout h3,
.woocommerce-checkout h2,
.woocommerce-checkout h1,
#order_review_heading {
    text-transform: uppercase !important;
    font-weight: 900 !important;
    font-size: 18px !important;
    letter-spacing: 0.5px !important;
    color: #000000 !important;
    border-bottom: 2px solid #000000 !important;
    padding-bottom: 8px !important;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

/* Rótulos dos Campos (Labels) */
.woocommerce-billing-fields__field-wrapper label,
.woocommerce-shipping-fields__field-wrapper label,
.woocommerce-additional-fields__field-wrapper label,
.woocommerce-form-row label {
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    margin-bottom: 8px !important;
    display: inline-block !important;
}

/* Inputs de Texto (Fundo Branco, Bordas Pretas e Sombra) */
.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.select2-container--default .select2-selection--single {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    height: auto !important;
    box-shadow: 2px 2px 0px #000000 !important;
    transition: all 0.1s ease !important;
    width: 100% !important;
}

.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout textarea:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    box-shadow: 4px 4px 0px #000000 !important;
    outline: none !important;
    border-color: #2e7d32 !important; /* Borda fica verde ao focar para dar sensação de segurança */
}

/* Customizar Checkboxes e Radios */
.woocommerce-checkout input[type="checkbox"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
    box-shadow: 1px 1px 0px #000000 !important;
}

.woocommerce-checkout input[type="checkbox"]:checked::after {
    content: "X" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    color: #000000 !important;
}

.woocommerce-checkout input[type="radio"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    background-color: #ffffff !important;
    cursor: pointer !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
    box-shadow: 1px 1px 0px #000000 !important;
}

.woocommerce-checkout input[type="radio"]:checked::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%) !important;
    width: 8px !important;
    height: 8px !important;
    background-color: #000000 !important;
}

/* Select2 Dropdowns */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000 !important;
    padding-left: 0 !important;
}

.select2-dropdown {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    color: #000000 !important;
    box-shadow: 3px 3px 0px #000000 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* Tabela de Pedidos */
table.shop_table {
    border: 2px solid #000000 !important;
    border-collapse: collapse !important;
    background-color: #ffffff !important;
    border-radius: 0px !important;
    width: 100% !important;
    margin-bottom: 24px !important;
}

table.shop_table th,
table.shop_table td {
    border: 1px solid #000000 !important;
    color: #000000 !important;
    padding: 12px !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
}

table.shop_table th {
    font-weight: 700 !important;
    background-color: #f0f0f0 !important;
}

/* Link de remover produto da tabela */
table.shop_table td.product-remove a,
.woocommerce-remove-product {
    color: #ff0000 !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    font-size: 16px !important;
}

table.shop_table td.product-remove a:hover {
    color: #000000 !important;
}

/* Box de Resumo do Pedido com Selo de Compra Garantida */
#order_review {
    position: relative !important;
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    padding: 20px !important;
    box-shadow: 3px 3px 0px #000000 !important;
}

#order_review::after {
    content: "🔒 Compra 100% Segura - Seus dados estão protegidos por criptografia SSL." !important;
    display: block !important;
    margin-top: 20px !important;
    padding: 12px !important;
    border: 2px solid #00c853 !important; /* Borda Verde */
    background-color: #e8f5e9 !important; /* Fundo Verde Claro */
    color: #2e7d32 !important; /* Texto Verde Escuro */
    font-size: 12px !important;
    text-align: center !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* Box dos Métodos de Pagamento com Selo de Segurança */
#payment {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    padding: 16px !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

#payment::after {
    content: "🛡️ Ambiente seguro criptografado com certificado SSL de 256 bits." !important;
    display: block !important;
    margin-top: 15px !important;
    padding: 10px !important;
    border: 1px dashed #cccccc !important;
    background-color: #f9f9f9 !important;
    color: #666666 !important;
    font-size: 11px !important;
    text-align: center !important;
    font-weight: 500 !important;
}

#payment ul.payment_methods {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0 !important;
}

.wc_payment_method {
    border-bottom: 1px solid #000000 !important;
    padding: 14px 0 !important;
}

.wc_payment_method:last-child {
    border-bottom: none !important;
}

.wc_payment_method label {
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
}

#payment div.payment_box {
    background-color: #f9f9f9 !important;
    border: 1px solid #000000 !important;
    color: #000000 !important;
    border-radius: 0px !important;
    padding: 14px !important;
    font-size: 12px !important;
    margin-top: 10px !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

#payment div.payment_box::before {
    display: none !important;
}

/* Botão Finalizar Compra com ícone de Cadeado */
.woocommerce-checkout #place_order {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    padding: 18px 24px !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    box-shadow: 3px 3px 0px #333333 !important;
    transition: all 0.15s ease !important;
    width: 100% !important;
    font-size: 14px !important;
    margin-top: 24px !important;
}

.woocommerce-checkout #place_order:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 1px 1px 0px #000000 !important;
}

/* Alertas e Avisos */
.woocommerce-error,
.woocommerce-info {
    background-color: #f9f9f9 !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 16px 24px !important;
    font-size: 13px !important;
    margin-bottom: 24px !important;
    list-style: none !important;
    box-shadow: 3px 3px 0px #000000 !important;
}

.woocommerce-message {
    display: none !important;
}

.woocommerce-error li {
    margin-left: 0 !important;
}

.woocommerce-error::before,
.woocommerce-info::before {
    color: #000000 !important;
}

/* Ocultar elementos desnecessários e secundários do tema */
.page-title,
.post-title,
.entry-title {
    display: none !important;
}

/* --- TRATAMENTO DO TRAVAMENTO DE CARREGAMENTO (SPINNER STUCK WORKAROUND) --- */
/* Forçar ocultação de telas de bloqueio de carregamento que travam a digitação */
.blockUI.blockOverlay,
.blockElement,
.blockPage,
.blockMsg,
.woocommerce .blockUI.blockOverlay,
.woocommerce-page .blockUI.blockOverlay,
.processing .blockOverlay {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

/* Garantir que as tabelas fiquem 100% nítidas e com opacidade total */
.processing {
    opacity: 1 !important;
}

/* Evitar duplicidade do rodapé caso o tema já exiba o rodapé padrão e o main-footer ao mesmo tempo */
body:has(.main-footer) footer:not(.main-footer),
body:has(.main-footer) .site-footer,
body:has(.main-footer) .wp-block-template-part footer,
body:has(.main-footer) .wp-block-template-part.site-footer {
    display: none !important;
}

/* --- RODAPÉ IDENTICO AO DA HOME NAS PÁGINAS WOOCOMMERCE --- */
footer:not(.main-footer),
.site-footer,
.wp-block-template-part footer,
.wp-block-template-part.site-footer {
    background-color: #ffffff !important;
    border-top: 3px solid #000000 !important;
    padding: 60px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Ocultar elementos originais de créditos, parágrafos e logos do rodapé, exceto os links sociais */
footer:not(.main-footer) .wp-block-site-title,
footer:not(.main-footer) .wp-block-site-logo,
footer:not(.main-footer) p:not(:has(a[href*="instagram"])),
footer:not(.main-footer) .wp-block-group:not(:has(a[href*="instagram"])),
.site-footer .wp-block-site-title,
.site-footer p:not(:has(a[href*="instagram"])),
.site-footer .wp-block-group:not(:has(a[href*="instagram"])) {
    display: none !important;
}

/* Garantir que o container e os links do Instagram permaneçam visíveis e clicáveis */
footer:not(.main-footer) a[href*="instagram"],
.site-footer a[href*="instagram"] {
    display: inline-block !important;
    font-family: 'Courier Prime', monospace !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    margin-bottom: 8px !important;
}

footer:not(.main-footer) a[href*="instagram"]:hover,
.site-footer a[href*="instagram"]:hover {
    text-decoration: underline !important;
}

/* Injetar apenas os direitos reservados no rodapé clássico */
footer:not(.main-footer)::before,
.site-footer::before {
    content: "© 2026 DOISQUILATE®. TODOS OS DIREITOS RESERVADOS." !important;
    display: block !important;
    text-align: center !important;
    font-family: 'Courier Prime', monospace !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    letter-spacing: 1px !important;
    line-height: 1.5 !important;
    text-transform: uppercase !important;
    order: 2 !important; /* Exibe depois do link */
}

/* Injetar a logo de texto do rodapé da home */
footer:not(.main-footer)::after,
.site-footer::after {
    content: "" !important;
    display: block !important;
    width: 180px !important;
    height: 20px !important;
    background-image: url('/assets/logo texto.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    margin-top: 10px !important;
}

/* --- FORÇAR LEITURA REGULAR E LEGÍVEL NA PÁGINA DO PRODUTO (REQUISITO: FONTE REGULAR) --- */
.woocommerce p,
.woocommerce-checkout p,
.woocommerce-cart p,
.single-product p,
.woocommerce-product-details__short-description,
.woocommerce-product-details__short-description p,
.woocommerce-Tabs-panel--description,
.woocommerce-Tabs-panel--description p,
.product-description,
.product-description p,
.entry-content p,
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description p {
    font-weight: 400 !important; /* Peso regular (400) para máxima legibilidade */
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #000000 !important;
}

/* --- ESTILIZAÇÃO DE PÁGINAS DE PRODUTO ESTILO NIKE.COM (BRUTALISTA) --- */
/* Forçar o wrapper principal do Twenty Twenty-Five a aceitar largura de 1300px nas páginas do Carrinho/Checkout */
body.woocommerce-cart .wp-site-blocks > :not(header):not(footer):not(.wp-block-template-part),
body.woocommerce-checkout .wp-site-blocks > :not(header):not(footer):not(.wp-block-template-part) {
    max-width: 1300px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-column: 1 / -1 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Forçar a página de produto a ser LARGURA COMPLETA (Full Width) */
body.single-product .wp-site-blocks > :not(header):not(footer):not(.wp-block-template-part),
body.single-product .product main,
body.single-product .product .wp-block-group.is-layout-constrained,
body.single-product .product .wp-block-columns {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    grid-column: 1 / -1 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
}

/* Layout de Duas Colunas no Desktop (Esquerda Galeria, Direita Painel Sticky) */
@media (min-width: 768px) {
    .single-product div.product {
        display: grid !important;
        grid-template-columns: 1.15fr 0.85fr !important;
        gap: 50px !important;
        max-width: 1300px !important;
        margin: 40px auto !important;
        align-items: start !important;
    }
    
    /* Esquerda: Galeria de imagens do produto */
    .single-product .woocommerce-product-gallery {
        grid-column: 1 !important;
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }
    
    /* Direita: Painel de Informações do Produto (Fica colado ao rolar a página) */
    .single-product .summary.entry-summary {
        grid-column: 2 !important;
        position: sticky !important;
        top: 40px !important;
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
        z-index: 10 !important;
    }

    /* Suporte para Temas Gutenberg / FSE (Como Twenty Twenty-Five) - Nike Balanced (50% menor e Fluido) */
    body.single-product .product .wp-block-columns {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important; /* Centraliza as duas colunas */
        align-items: start !important;
        gap: 40px !important;
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
    }
    
    /* Coluna da Esquerda (Galeria - Reduzida em 50%, fluida até 500px) */
    body.single-product .product .wp-block-columns > .wp-block-column:first-child {
        flex: 1 1 500px !important;
        width: 100% !important;
        max-width: 500px !important;
    }
    
    /* Coluna da Direita (Detalhes do Produto - Mantém tamanho de 500px fluido) */
    body.single-product .product .wp-block-columns > .wp-block-column:last-child {
        flex: 1 1 500px !important;
        width: 100% !important;
        max-width: 500px !important;
        position: sticky !important;
        top: 40px !important;
        z-index: 10 !important;
    }
}

/* Garantir que a galeria de imagens e cada imagem ocupem 100% da largura da coluna da esquerda */
.single-product .wp-block-woocommerce-product-image-gallery,
.single-product .woocommerce-product-gallery,
.single-product .woocommerce-product-gallery__image a,
.single-product .woocommerce-product-gallery__image img,
.single-product .wp-post-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
}

/* Customizar Galeria de Imagens */
.single-product .woocommerce-product-gallery__image img {
    border: 3px solid #000000 !important;
    box-shadow: 4px 4px 0px #000000 !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px !important;
}

.single-product .flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
    margin-top: 15px !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product .flex-control-thumbs li img {
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    cursor: pointer !important;
    opacity: 0.6 !important;
    transition: all 0.15s ease !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

.single-product .flex-control-thumbs li img.flex-active,
.single-product .flex-control-thumbs li img:hover {
    opacity: 1 !important;
    border-color: #000000 !important;
    box-shadow: 1px 1px 0px #000000 !important;
}

/* Cabeçalho da Ficha Técnica (Meta-categoria) */
.single-product .summary .product_meta,
.single-product .wp-block-woocommerce-product-meta {
    order: -2 !important;
    font-family: 'Courier Prime', monospace !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    color: #666666 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Título do Produto */
.single-product h1.product_title,
.single-product h1.wp-block-post-title {
    font-weight: 900 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 38px !important;
    letter-spacing: -0.5px !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

/* Preço do Produto (Restrito apenas ao corpo do produto na página) */
.single-product .product .summary p.price,
.single-product .product .summary span.amount,
.single-product .product .wp-block-woocommerce-product-price,
.single-product .product .wp-block-woocommerce-product-price .wc-block-components-product-price {
    font-weight: 700 !important;
    font-size: 22px !important;
    color: #000000 !important;
    display: block !important;
    margin-bottom: 24px !important;
}

/* Tabela de Variações (Tamanho e Cor) */
.single-product table.variations,
.single-product table.variations tbody,
.single-product table.variations tr,
.single-product table.variations td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

.single-product table.variations tr {
    margin-bottom: 20px !important;
}

.single-product table.variations td.label {
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    color: #000000 !important;
}

/* Estilo do Dropdown padrão do WooCommerce sem achatamento do texto */
.single-product table.variations select {
    display: block !important;
    width: 100% !important;
    height: 52px !important; /* Altura fixa garantida */
    line-height: normal !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    background-color: #ffffff !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 0 15px !important; /* Padding apenas nas laterais evita deformação do texto */
    box-shadow: 3px 3px 0px #000000 !important;
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    box-sizing: border-box !important;
}

/* Suporte a Plugins de Variação Swatches (Botões Quadrados estilo Nike) */
.variable-items-wrapper,
.rtwpvs-swatches {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 8px !important;
    margin-top: 5px !important;
}

.variable-item,
.rtwpvs-button-preview {
    border: 2px solid #000000 !important;
    border-radius: 0px !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    padding: 12px 0 !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

.variable-item:hover,
.rtwpvs-button-preview:hover {
    background-color: #f0f0f0 !important;
}

.variable-item.selected,
.rtwpvs-button-preview.selected {
    background-color: #000000 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    transform: translate(2px, 2px) !important;
}

.variable-item.disabled,
.rtwpvs-button-preview.disabled {
    opacity: 0.3 !important;
    text-decoration: line-through !important;
    cursor: not-allowed !important;
}

/* Área de Compra (Form Cart) */
.single-product form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 25px !important;
}

/* Garante o empilhamento vertical correto da área de compra (evita esmagamento lateral) */
.single-product .woocommerce-variation-add-to-cart,
.single-product .variations_button {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
    align-items: stretch !important;
}

.single-product .quantity {
    margin-right: 0 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    float: none !important;
}

.single-product .quantity::before {
    content: "QUANTIDADE:" !important;
    font-family: 'Courier Prime', monospace !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    color: #000000 !important;
}

.single-product .quantity input.qty {
    width: 70px !important;
    height: 45px !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 5px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-align: center !important;
    box-shadow: 2px 2px 0px #000000 !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    box-sizing: border-box !important;
}

/* Botão Adicionar ao Carrinho Estilo Nike.com */
.single-product .single_add_to_cart_button {
    width: 100% !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 18px 24px !important;
    font-size: 14px !important;
    box-shadow: 4px 4px 0px #000000 !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: normal !important;
}

.single-product .single_add_to_cart_button:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
    box-shadow: 2px 2px 0px #000000 !important;
}

/* Botão adicionar ao carrinho desativado */
.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled,
.single-product .single_add_to_cart_button[disabled] {
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #888888 !important;
    cursor: not-allowed !important;
    box-shadow: 2px 2px 0px #000000 !important;
    opacity: 0.8 !important;
}

/* Descrição Curta do Produto */
.single-product .woocommerce-product-details__short-description {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #000000 !important;
    border-bottom: 2px solid #e5e5e5 !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    margin-top: 20px !important;
}

/* Abas de Detalhes (Ficha Técnica) */
.single-product .woocommerce-tabs {
    border: none !important;
    margin-top: 30px !important;
}

.single-product .woocommerce-tabs ul.tabs {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    display: flex !important;
    gap: 25px !important;
    border-bottom: 2px solid #e5e5e5 !important;
    list-style: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    color: #666666 !important;
    text-decoration: none !important;
    letter-spacing: 0.5px !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
    color: #000000 !important;
    border-bottom: 3px solid #000000 !important;
    padding-bottom: 8px !important;
}

.single-product .woocommerce-Tabs-panel {
    padding: 24px 0 !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* -------------------------------------------------------------
   MENU MOBILE HAMBURGUER (BRUTALISTA)
   ------------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
    z-index: 1001;
}

.hamburger-bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.2s ease;
}

/* Overlay do Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-nav-link {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: 32px;
    color: var(--text-primary);
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease;
    display: inline-block;
    letter-spacing: -1px;
}

.mobile-nav-link:hover {
    transform: scale(1.08) rotate(-1deg);
}

.mobile-cart-toggle {
    font-family: var(--font-title);
    font-weight: 900;
    font-style: italic;
    font-size: 32px;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: -1px;
    padding: 0;
}

/* Padronizar fotos de produto do WooCommerce no ratio 3:4 (1080x1440) */
.single-product .woocommerce-product-gallery__image img,
.single-product .woocommerce-product-gallery__wrapper img,
.single-product .flex-viewport img,
.woocommerce-product-gallery__image img {
    aspect-ratio: 3 / 4 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
}

/* Forçar a exibição do botão do menu hambúrguer no mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    .nav-menu {
        display: none !important;
    }
}

/* --- CORREÇÃO DE MINI-CARRINHO E CART BLOCKS (PREÇOS HORIZONTAIS E ÚNICOS) --- */
/* Garantir que as tags do preço fiquem sempre na horizontal */
.wc-block-mini-cart-contents .wc-block-components-product-price,
.wc-block-mini-cart-contents span.amount,
.wc-block-cart-items .wc-block-components-product-price,
.wc-block-cart-items span.amount {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 0 !important;
    line-height: 1 !important;
}

/* Evitar que os elementos internos quebrem linha (como R$ e valor) */
.wc-block-mini-cart-contents .wc-block-components-product-price__value,
.wc-block-mini-cart-contents .woocommerce-Price-amount,
.wc-block-cart-items .wc-block-components-product-price__value,
.wc-block-cart-items .woocommerce-Price-amount {
    display: inline-block !important;
    white-space: nowrap !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

/* Ocultar rigorosamente qualquer preço duplicado para leitor de tela (screen reader) */
.wc-block-mini-cart-contents .screen-reader-text,
.wc-block-cart-items .screen-reader-text,
.wc-block-mini-cart-contents [aria-hidden="true"] .wc-block-components-product-price,
.wc-block-cart-items [aria-hidden="true"] .wc-block-components-product-price {
    display: none !important;
}

/* Hack de Exibição do Mini-Carrinho (Doisquilate no topo, Nome do produto abaixo e preço duplicado oculto) */
.wc-block-mini-cart-contents .wc-block-cart-item__product {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.wc-block-mini-cart-contents .wc-block-cart-item__product::before {
    content: "Doisquilate" !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    margin-bottom: 2px !important;
    display: block !important;
}

.wc-block-mini-cart-contents .wc-block-cart-item__name {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #000000 !important;
    text-decoration: underline !important;
    margin-bottom: 4px !important;
}

/* Ocultar o preço repetido 3x embaixo do nome do produto no mini-carrinho */
.wc-block-mini-cart-contents .wc-block-cart-item__product .wc-block-components-product-price,
.wc-block-mini-cart-contents .wc-block-cart-item__product .wc-block-cart-item__prices,
.wc-block-mini-cart-contents .wc-block-cart-item__product .wc-block-cart-item__price,
.wc-block-mini-cart-contents .wc-block-cart-item__info .wc-block-components-product-price,
.wc-block-mini-cart-contents .wc-block-cart-item__info-wrapper .wc-block-components-product-price,
.wc-block-mini-cart-contents .wc-block-cart-item__name + .wc-block-components-product-price,
.wc-block-mini-cart-contents .wc-block-cart-item__metadata + .wc-block-components-product-price,
.wc-block-mini-cart-contents .wc-block-cart-item__name + .wc-block-cart-item__price,
.wc-block-mini-cart-contents .wc-block-cart-item__metadata + .wc-block-cart-item__price {
    display: none !important;
}

/* Otimização de UI/UX Mobile para Página do Produto (Full-Width total) */
@media (max-width: 768px) {
    /* Diminuir o recuo lateral excessivo da página para 15px */
    body.single-product .wp-site-blocks > :not(header):not(footer):not(.wp-block-template-part),
    body.single-product .product main,
    body.single-product .product .wp-block-group.is-layout-constrained,
    body.single-product .product .wp-block-columns {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Garantir que as colunas fiquem empilhadas verticalmente e com 100% de largura */
    body.single-product .product .wp-block-columns {
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
    }
    
    body.single-product .product .wp-block-columns > .wp-block-column:first-child,
    body.single-product .product .wp-block-columns > .wp-block-column:last-child {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Galeria de imagens: expandir em 100% sem bordas limitantes */
    .single-product .wp-block-woocommerce-product-image-gallery,
    .single-product .woocommerce-product-gallery,
    .single-product .woocommerce-product-gallery__image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* Formulário de compra: ocupar 100% da tela */
    .single-product form.cart {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Variações, tamanho, seletores e botões */
    .single-product table.variations {
        width: 100% !important;
    }

    .single-product table.variations td.value {
        width: 100% !important;
        display: block !important;
    }

    /* Botão de adicionar ao carrinho e seletor de quantidade no mobile: ocupar a largura total lado a lado ou empilhados */
    .single-product .woocommerce-variation-add-to-cart {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .single-product .quantity {
        width: 100% !important;
        max-width: 100% !important;
    }

    .single-product .quantity input.qty {
        width: 100% !important;
        height: 50px !important;
        font-size: 16px !important;
    }

    .single-product .single_add_to_cart_button {
        width: 100% !important;
        height: 54px !important;
        font-size: 16px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Reduzir tamanho do título do produto e preço no mobile */
    .single-product h1.product_title,
    .single-product h1.wp-block-post-title {
        font-size: 28px !important;
    }
    .single-product .product .summary p.price,
    .single-product .product .summary span.amount,
    .single-product .product .wp-block-woocommerce-product-price {
        font-size: 18px !important;
    }

    /* Forçar alinhamento e recuo do cabeçalho nas páginas WooCommerce no celular */
    .site-header-row,
    .main-header-bar,
    .main-header-container,
    .ast-header-bar-wrap,
    .wp-block-template-part header,
    .wp-block-template-part header [class*="header-container"],
    .site-header [class*="header-container"],
    .site-header-inner,
    .ast-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    /* Alinhamento flexível e limpo para as opções de entrega/frete (Rádios e Checkboxes) */
    #shipping_method li {
        display: flex !important;
        align-items: flex-start !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
        white-space: normal !important; /* Permite quebra de texto */
        text-align: left !important;
    }
    #shipping_method li input[type="radio"],
    #shipping_method li input[type="checkbox"] {
        margin-top: 4px !important;
        margin-right: 10px !important;
        flex-shrink: 0 !important;
    }
    #shipping_method li label {
        font-weight: 700 !important;
        font-size: 13px !important;
        color: #000000 !important;
        text-transform: uppercase !important;
        display: inline !important;
    }

    /* Forçar todos os campos do checkout a ocuparem 100% de largura no celular (evita campos de 50% esmagados) */
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last,
    .woocommerce-checkout .form-row {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Reduzir colunas dos swatches para 4 no celular para melhor clique */
    .variable-items-wrapper,
    .rtwpvs-swatches {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 6px !important;
    }
}

/* Ajuste fino de espaçamento interno em telas muito pequenas (iPhone SE) */
@media (max-width: 480px) {
    .wc-block-cart__totals-sidebar,
    .cart-collaterals,
    .wc-block-cart-totals,
    .wc-block-cart-items,
    .woocommerce-cart-form,
    #order_review,
    #payment {
        padding: 15px !important; /* Poupa espaço precioso na tela */
    }
}

/* Ocultar simuladores de frete e CEP na página de detalhes do produto */
.single-product .wc-shipping-simulator,
.single-product .wc_shipping_simulator,
.single-product .shipping-calculator,
.single-product .shipping_calculator,
.single-product #shipping_calculator,
.single-product #shipping-calculator,
.single-product .correios-simulator,
.single-product #correios-simulator,
.single-product .correios-cws-delivery-simulator,
.single-product .cws-delivery-simulator,
.single-product .melhor-envio-simulator,
.single-product .melhor-envio-shipping,
.single-product .me-shipping-simulator,
.single-product #me-shipping-simulator,
.single-product .superfrete-simulator,
.single-product .superfrete-shipping-calculator,
.single-product .correios-calculate-shipment,
.single-product .containerCalculator,
.single-product #woocommerce-correios-calculo-de-frete-na-pagina-do-produto {
    display: none !important;
}
