/* ==========================================
   1. IMPORTAÇÃO DE FONTES & SETUP GERAL
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
:root {
    /* Paleta Rebranding: Brazil GEMS Imperial */
    --bg-main: #FFFFFF; 
    --bg-secondary: #FAFAFA;
    --bg-highlight: #F9F6F0; /* Creme neutro sofisticado */
    
    --gold-primary: #C5A059; /* Ouro Assinatura */
    --gold-dark: #A38047;    /* Ouro Envelhecido */
    --gold-light: #E8D0A1;   /* Brilho de Ouro */
    
    --text-dark: #0A0A0A;    /* Obsidian Black */
    --text-muted: #777777; 
    --border-light: #EAEAEA;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-logo: 'Great Vibes', cursive;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;

    /* Polimento visual (aditivos — usados só por componentes da LOJA, nunca pelo
       admin). Curva "premium" suave e escala consistente de raios e sombras. */
    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --shadow-soft: 0 4px 18px rgba(10, 10, 10, 0.05);
    --shadow-card: 0 2px 12px rgba(10, 10, 10, 0.04);
    --shadow-card-hover: 0 20px 44px rgba(10, 10, 10, 0.11);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.theme-light {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /* Transição global para navegação suave entre páginas */
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.gems-page-exiting {
    opacity: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Scrollbar Premium Clara */
::selection { background-color: var(--gold-primary); color: #000; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: #CCC; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ==========================================
   2. FASE 1: TOPO CORPORATIVO
   ========================================== */
.top-bar-promo {
    background-color: var(--text-dark); /* Fundo Preto Obsidian */
    color: var(--gold-primary); /* Letras em Ouro */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 5%;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    gap: 30px;
    text-transform: uppercase;
}
.top-bar-promo i { cursor: pointer; font-size: 0.9rem; }
.top-bar-promo strong { font-weight: 700; }

.header-v2 {
    background: var(--bg-main);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==========================================
   ESTILO DA LOGO (IMAGEM DIRETA)
   ========================================== */
.logo-img {
    max-height: 80px; /* Altura ideal para a barra do topo (ajuste se precisar) */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-v2:hover .logo-img {
    transform: scale(1.05); /* Leve efeito de destaque ao passar o mouse */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
}

.header-left, .header-right { flex: 1; }
.header-center { flex: 1; text-align: center; }

/* ==========================================
   ASSINATURA CLÁSSICA (HEADER LEFT)
   ========================================== */
.header-left { 
    flex: 1; 
    display: flex; 
    align-items: center; 
}

.signature-decor {
    display: flex;
    flex-direction: column; /* Coloca um texto embaixo do outro */
    justify-content: center;
    text-decoration: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.signature-decor:hover {
    transform: translateY(-2px); /* Levanta levemente ao passar o mouse */
    opacity: 0.8;
}

.sig-main {
    font-family: 'Great Vibes', cursive;
    font-size: 2.6rem; /* A assinatura grande e imponente */
    color: var(--text-dark); /* Cor principal (chumbo/preto) */
    line-height: 0.8;
    white-space: nowrap;
}

.sig-sub {
    font-family: var(--font-body, sans-serif);
    font-size: 0.55rem; /* Letra bem pequena e minimalista */
    color: var(--gold-primary); /* Dourado da Brazil GEMS */
    text-transform: uppercase;
    letter-spacing: 4px; /* Letras bem espaçadas para dar o ar de luxo */
    white-space: nowrap;
    margin-top: 8px; /* Espaço entre a assinatura e o subtítulo */
    padding-left: 2px;
}

/* Esconde a assinatura no celular para não esmagar a logo principal do centro */
@media (max-width: 768px) {
    .signature-decor {
        display: none;
    }
}

.header-bonus-link {
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-bonus-link i { font-size: 1rem; }

.logo-v2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.search-bar-v2 {
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 8px 15px;
    width: 250px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.search-bar-v2:focus-within {
    border-color: var(--gold-light);
    background: var(--bg-main);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.10);
}
.search-bar-v2 input {
    background: transparent; border: none; outline: none;
    padding-left: 10px; width: 100%; font-family: var(--font-body);
    font-size: 0.85rem; color: var(--text-dark);
}
.search-bar-v2 i { color: var(--text-muted); transition: color 0.3s ease; }
.search-bar-v2:focus-within i { color: var(--gold-primary); }

.user-actions-v2 { display: flex; gap: 20px; align-items: center; font-size: 1.3rem; }
.user-actions-v2 a { transition: color 0.25s ease, transform 0.25s ease; }
.user-actions-v2 a:hover { color: var(--gold-primary); transform: translateY(-1px); }
.cart-icon-wrapper { position: relative; }
.cart-badge {
    position: absolute; top: -5px; right: -8px;
    background: var(--gold-primary); color: #000;
    font-size: 0.65rem; font-weight: bold; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

/* Navegação Horizontal & Mega Menu */
.nav-v2 { border-top: 1px solid var(--border-light); }
.nav-links-v2 {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    padding: 15px 0;
}
.nav-links-v2 a {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}
/* Sublinhado dourado que cresce do centro — microinteração discreta e premium. */
.nav-links-v2 a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1.5px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s var(--ease-premium);
}
.nav-links-v2 a:hover { color: var(--gold-primary); }
.nav-links-v2 a:hover::after { transform: scaleX(1); }

.has-mega-menu { position: relative; }
.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    width: 600px;
    z-index: 200;
    border-top: 2px solid var(--gold-primary);
}
.has-mega-menu:hover .mega-menu { display: block; }
.mega-menu-content { display: flex; gap: 40px; }
.mega-col h4 {
    margin-bottom: 15px; font-size: 1rem; color: #000;
    border-bottom: 1px solid #eee; padding-bottom: 5px;
}
.mega-col a { display: block; padding: 8px 0; font-size: 0.9rem; color: #555; text-transform: none; font-weight: 400;}
.mega-col a:hover { color: var(--gold-primary); }

/* ==========================================
   NOVO CARROSSEL DE BANNERS (HERO VIVARA)
   ========================================== */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    background: #E8DFD8;
}

.hero-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-anchor {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 2;
    cursor: pointer;
}

.placeholder-slide {
    font-size: 1.5rem;
    color: #666;
    display: flex;
    gap: 15px;
}

/* Setas de Navegação Premium */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #111;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.carousel-btn:hover { 
    background: #fff; 
    transform: translateY(-50%) scale(1.1);
}
.carousel-btn.prev { left: 40px; }
.carousel-btn.next { right: 40px; }

/* Indicadores (Tracinhos Elegantes) */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator-dot {
    width: 35px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator-dot.active { background: #fff; }

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ==========================================
   4. FASE 3: CATEGORIAS & VITRINE DE PRODUTOS
   ========================================== */
.section-title { text-align: center; margin: 72px 0 44px; }
.section-title h2 { font-size: 2.2rem; margin-bottom: 14px; font-weight: 600; letter-spacing: 0.5px; }
/* Assinatura dourada discreta sob o título — eleva sem poluir. */
.section-title h2::after {
    content: ''; display: block; width: 54px; height: 2px;
    margin: 16px auto 0; background: var(--gold-primary); opacity: 0.85;
}
.section-title p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.category-showcase { padding: 0 5%; }
.category-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px;
}
.category-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.cat-img-box {
    width: 150px; height: 150px; background: var(--bg-secondary); border-radius: 4px;
    margin-bottom: 15px; overflow: hidden; display: flex; align-items: center; justify-content: center;
    transition: var(--transition-smooth);
}
.cat-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Força a imagem a cobrir 100% do quadro, eliminando as bordas brancas */
}
.category-item:hover .cat-img-box { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.category-item span { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* Vitrine de Produtos */
.home-collection { padding: 40px 5% 80px; }
.product-grid-v2 {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px;
}

.product-card {
    background: var(--bg-main); border: 1px solid var(--border-light);
    border-radius: var(--radius-md); overflow: hidden;
    position: relative; transition: transform 0.45s var(--ease-premium), box-shadow 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
    box-shadow: var(--shadow-card);
    display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-6px); border-color: var(--gold-light); }

.product-image {
    position: relative; width: 100%; height: 300px; background: var(--bg-main);
    display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden;
}
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease-premium); }
.product-card:hover .product-image img { transform: scale(1.06); }

.wishlist-btn {
    position: absolute; top: 14px; right: 14px;
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.85); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    border: 1px solid var(--border-light); border-radius: 50%;
    font-size: 1.05rem; color: #BBB; cursor: pointer; z-index: 10; transition: var(--transition-fast);
}
.wishlist-btn:hover { color: var(--gold-primary); border-color: var(--gold-light); transform: scale(1.08); }

.quick-buy {
    position: absolute; bottom: -50px; left: 0; width: 100%;
    transition: bottom 0.4s var(--ease-premium); display: flex; justify-content: center;
}
.product-card:hover .quick-buy { bottom: 0; }
.quick-buy button {
    width: 100%; padding: 15px; background: rgba(255,255,255,0.96); border: none; border-top: 1px solid var(--border-light);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem; cursor: pointer; color: var(--text-dark);
    transition: var(--transition-fast);
}
.quick-buy button:hover { background: var(--gold-primary); color: #fff; }

.product-info { padding: 22px 20px; text-align: center; }
.product-title { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 8px; font-family: var(--font-body); transition: color 0.3s ease; }
.product-title a { color: inherit; }
.product-card:hover .product-title { color: var(--text-dark); }
.product-price { color: var(--text-dark); font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; }

.sec-banner-content h2 { font-size: 3rem; margin-bottom: 15px; }
.sec-banner-content p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 30px; }

/* ==========================================
   5. CATÁLOGO & PRODUTO (LAYOUT INTERNO)
   ========================================== */
.catalog-main-v2 { padding: 40px 5%; }
.catalog-header-v2 { margin-bottom: 40px; }
.breadcrumb-v2 { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; text-transform: uppercase; }
.breadcrumb-v2 i { font-size: 0.6rem; margin: 0 10px; }
.catalog-title-row { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--border-light); padding-bottom: 15px; }
.catalog-title-row h1 { font-size: 2.2rem; }
.catalog-controls { display: flex; gap: 20px; align-items: center; }
.sort-select-v2 { padding: 8px 15px; border: 1px solid var(--border-light); outline: none; background: transparent; font-family: var(--font-body); }

.catalog-layout-v2 { display: flex; gap: 40px; align-items: flex-start; }
.sidebar-filters { width: 250px; flex-shrink: 0; }
.filter-group { margin-bottom: 30px; border-bottom: 1px solid var(--border-light); padding-bottom: 20px; }
.filter-group h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; margin-bottom: 15px; }
.filter-group label { display: block; margin-bottom: 10px; font-size: 0.9rem; color: var(--text-muted); cursor: pointer; }
.filter-group input { margin-right: 10px; accent-color: var(--gold-primary); }

.catalog-products-area { flex: 1; }

/* ==========================================
   6. FASE 4: MEGA RODAPÉ E NEWSLETTER
   ========================================== */
.news-content h2 { font-size: 2.2rem; margin-bottom: 15px; font-weight: 600; }
.news-content p { color: var(--text-muted); margin-bottom: 30px; font-size: 0.95rem; }
.news-form { display: flex; flex-direction: column; align-items: center; max-width: 600px; margin: 0 auto; gap: 15px; }
.news-form input[type="text"], .news-form input[type="email"] { width: 100%; padding: 15px; border: 1px solid var(--border-light); outline: none; }
.news-form button { width: 100%; }

.mega-footer { background: #050505; color: #FDFDFD; padding: 80px 5% 0; border-top: 2px solid var(--gold-primary); }
.footer-columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 20px; color: var(--gold-primary); letter-spacing: 1px; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 0.85rem; font-weight: 500; color: #888; transition: var(--transition-fast); }
.footer-col a:hover { color: var(--gold-primary); padding-left: 5px; }

.footer-store-finder select { width: 100%; padding: 12px; margin-bottom: 10px; border: none; outline: none; background: #111; color: #FFF; border: 1px solid #333; }
.btn-white { background: var(--gold-primary); color: #000; border: none; width: 100%; padding: 12px; font-weight: 700; text-transform: uppercase; cursor: pointer; margin-bottom: 20px; transition: var(--transition-fast); }
.btn-white:hover { background: var(--gold-light); }
.social-icons { display: flex; gap: 20px; font-size: 1.2rem; color: #888; }
.social-icons i { transition: color 0.25s ease, transform 0.25s ease; cursor: pointer; }
.social-icons i:hover { color: var(--gold-primary); transform: translateY(-2px); }

.footer-bottom { background: #000; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-security, .footer-tech, .footer-payments { display: flex; align-items: center; gap: 15px; font-size: 1.5rem; color: var(--gold-primary); }
.footer-security span, .footer-tech span, .footer-payments span { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: #666; margin-right: 10px; }

/* ==========================================
   7. PAINEL ADMINISTRATIVO (DARK MODE PROTEGIDO)
   ========================================== */
.admin-body { 
    background-color: #0A0A0A !important; 
    color: #FDFDFD !important;
    display: flex; height: 100vh; overflow: hidden; 
}
.admin-sidebar { width: 260px; background: #050505; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; padding: 30px 20px; }
.admin-logo { text-align: center; margin-bottom: 40px; }
.admin-logo h2 { color: #C5A059; font-size: 1.5rem; letter-spacing: 3px; font-family: 'Playfair Display', serif; }
.admin-logo span { color: #9E9E9E; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; }

.admin-nav { display: flex; flex-direction: column; gap: 10px; }
.admin-tab-btn {
    background: transparent; border: none; color: #9E9E9E; text-align: left;
    padding: 15px; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; border-radius: 4px;
    cursor: pointer; display: flex; align-items: center; gap: 15px;
}
.admin-tab-btn i { font-size: 1.1rem; width: 20px; text-align: center; }
.admin-tab-btn:hover { background: rgba(255,255,255,0.03); color: #FDFDFD; }
.admin-tab-btn.active { background: #1E1E1E; color: #C5A059; border-left: 3px solid #C5A059; }

.admin-main { flex: 1; display: flex; flex-direction: column; overflow-y: auto; background: #0A0A0A; }
.admin-header { background: #141414; padding: 20px 40px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.admin-search input { background: #0A0A0A; border: 1px solid rgba(255,255,255,0.05); color: #FDFDFD; padding: 10px 20px; border-radius: 20px; outline: none; width: 300px; }
.admin-search input:focus { border-color: #C5A059; }

/* Menu mobile do admin: escondido no DESKTOP. A regra de exibir vive no
   admin-mobile.css (carregado só <=768px, com !important). Sem este hide global,
   o botão hambúrguer (criado via JS e prependado no header) vazava no desktop. */
.admin-mobile-menu-btn,
.admin-mobile-backdrop { display: none; }

.admin-view { display: none; padding: 40px; animation: fadeIn 0.4s ease; }
.admin-view.active { display: block; }
.view-title { color: #FDFDFD; font-size: 1.8rem; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; font-family: 'Playfair Display', serif; }

.dashboard-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #141414; padding: 25px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; gap: 20px; }
.card-icon { background: rgba(197, 160, 89, 0.1); color: #C5A059; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.card-info h3 { font-family: 'Montserrat', sans-serif; font-size: 0.85rem; color: #9E9E9E; text-transform: uppercase; margin-bottom: 5px; }
.card-info p { font-size: 1.5rem; font-weight: bold; color: #FDFDFD; }

.table-container { background: #141414; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.05); color: #FDFDFD; }
.admin-table th { background: #1E1E1E; color: #9E9E9E; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.form-group label { display: block; color: #9E9E9E; font-size: 0.85rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.admin-form input, .admin-form select {
    width: 100%; padding: 12px 15px; background: #0A0A0A; border: 1px solid rgba(255,255,255,0.05);
    color: #FDFDFD; border-radius: 4px; font-family: 'Montserrat', sans-serif; outline: none;
}
.admin-form input:focus, .admin-form select:focus { border-color: #C5A059; }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); display: none; align-items: center; justify-content: center; z-index: 2000; }
.modal-overlay.active { display: flex; }
.modal-content { background: #141414; padding: 40px; border-radius: 8px; width: 90%; border: 1px solid rgba(255,255,255,0.05); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px; }
.modal-header h3 { color: #FDFDFD; font-family: 'Playfair Display', serif;}

.btn-primary.admin-btn { background: #C5A059; color: #0A0A0A; border: none; padding: 12px 25px; border-radius: 4px; font-weight: bold; cursor: pointer; text-transform: uppercase; font-size: 0.85rem; }
.btn-primary.admin-btn:hover { background: #FDFDFD; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.pulse-indicator { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background-color: #4caf50; margin-right: 8px; box-shadow: 0 0 8px #4caf50; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); } 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); } }

/* ==========================================
   8. CARRINHO DE COMPRAS (ESTILO VIVARA)
   ========================================== */




.cart-item-img-v2 {
    width: 100px;
    height: 100px;
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.cart-item-img-v2 img { max-width: 100%; max-height: 100%; object-fit: contain; }




.qty-control { display: flex; align-items: center; gap: 15px; font-size: 0.9rem; }
.qty-control span { color: var(--text-dark); }


.btn-remove-v2 {
    position: absolute; top: 25px; right: 0; background: transparent; border: none;
    color: #f6ff00; font-size: 1rem; cursor: pointer; transition: var(--transition-fast);
}
.btn-remove-v2:hover { color: #d32f2f; }


.summary-module {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.summary-module h3 { font-size: 1.1rem; margin-bottom: 15px; font-weight: 600; font-family: var(--font-body); }
.summary-module p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 15px; }

.btn-checkout-primary {
    width: 100%; background: #ffc400; color: #000; border: none; padding: 15px;
    font-size: 0.95rem; font-weight: 600; cursor: pointer; margin-bottom: 20px; transition: var(--transition-fast);
}
.btn-checkout-primary:hover { background: #ffdd00; }

.btn-outline-black { width: 100%; background: transparent; border: 1px solid #000; padding: 12px; font-weight: 600; font-size: 0.85rem; cursor: pointer; margin-bottom: 15px; }
.btn-black { background: #000; color: #fff; border: none; padding: 12px 20px; font-weight: 600; font-size: 0.85rem; cursor: pointer; }

.giftback-promo { background: #000; color: #fff; padding: 15px; text-align: center; font-size: 0.8rem; margin-top: 10px; }
.giftback-promo a { display: block; color: #fff; text-decoration: underline; margin-top: 5px; font-size: 0.75rem; }

.shipping-promo-module { background: #fbeae5; border: none; }
.shipping-promo-module p { color: #000; margin-bottom: 10px; }
.progress-bar-fill { height: 100%; background: #ffe100; border-radius: 2px; }

.tab-btn { flex: 1; padding: 12px; background: #fff; border: 1px solid var(--border-light); font-size: 0.85rem; cursor: pointer; }
.tab-btn.active { background: #222; color: #fff; border-color: #222; }

.cep-input-group { display: flex; margin-bottom: 10px; }
.cep-input-group input { flex: 1; padding: 10px; border: 1px solid var(--border-light); border-right: none; outline: none; }


.coupon-field { margin-bottom: 15px; }
.coupon-field label { display: block; font-size: 0.85rem; margin-bottom: 5px; color: var(--text-dark); }
.coupon-input-group { display: flex; }
.coupon-input-group input { flex: 1; padding: 10px; border: 1px solid var(--border-light); outline: none; }

.continue-shopping { text-align: center; margin-top: 20px; }
.continue-shopping a { font-size: 0.9rem; color: var(--text-dark); text-decoration: underline; }

.checkout-footer { background: #fff; border-top: 1px solid var(--border-light); padding: 20px 5%; margin-top: 50px; }
.checkout-footer-content { display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================
   9. MINHA CONTA (CONCIERGE DASHBOARD DE LUXO)
   ========================================== */

/* --- BARRA VIP DE RETORNO --- */
.return-store-bar {
    position: absolute;
    top: 30px;
    left: 5%;
    z-index: 100;
}

.return-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.return-link i {
    font-size: 1rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.return-link:hover { color: var(--text-dark); }
.return-link:hover i { transform: translateX(-5px); }

/* --- ESTRUTURA PRINCIPAL --- */
.account-premium-dashboard {
    background-color: #fcfcfc;
    min-height: 100vh;
    padding: 100px 0 60px; /* Espaço para a barra de retorno */
}

.dashboard-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    padding: 0 5%;
}

/* --- SIDEBAR CONCIERGE --- */
.dashboard-sidebar {
    width: 300px;
    background: #fff;
    border: 1px solid #eee;
    padding: 40px 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.02);
    position: sticky;
    top: 120px;
}

.profile-header-premium {
    padding: 0 30px;
    margin-bottom: 40px;
    text-align: center;
}

/* Avatar polido (Wave 31): ring duplo dourado + glow sutil + transição.
   Background tem leve gradient pra dar profundidade; outline cria o
   segundo anel offset, criando efeito de moldura de joia. */
.avatar-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #1a1a1a, #050505);
    color: var(--gold-primary);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    font-family: var(--font-heading);
    border: 1px solid rgba(197, 160, 89, 0.55);
    outline: 1px solid var(--gold-primary);
    outline-offset: 4px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 10px 26px rgba(197, 160, 89, 0.18);
    transition: outline-offset 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease;
}

.avatar-circle:hover {
    outline-offset: 6px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 14px 32px rgba(197, 160, 89, 0.28);
}

.greeting { font-size: 0.7rem; color: #999; text-transform: uppercase; letter-spacing: 2px; }
.user-name { font-size: 1.2rem; margin-bottom: 5px; color: var(--text-dark); font-family: var(--font-heading); }

/* VIP tag polida (Wave 31): gradiente metálico vertical (claro→médio→escuro
   simulando reflexão em metal escovado) + inset highlight no topo + outer
   shadow dourado pra dar lift. Substitui o flat yellow anterior. */
.vip-tag {
    font-size: 0.6rem;
    background: linear-gradient(180deg,
        var(--gold-light) 0%,
        var(--gold-primary) 50%,
        var(--gold-dark) 100%);
    color: #1a1a1a;
    padding: 3px 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 20px;
    display: inline-block;
    box-shadow:
        0 2px 6px rgba(197, 160, 89, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dashboard-nav { display: flex; flex-direction: column; }
.nav-item {
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-item:hover, .nav-item.active {
    background: #fafafa;
    color: #000;
    border-left-color: var(--gold-primary);
}

.nav-item i { width: 20px; text-align: center; font-size: 1.1rem; }
.nav-divider { height: 1px; background: #eee; margin: 20px 30px; }
.logout-premium { color: #d32f2f; margin-top: 10px; }

/* --- ÁREA DE CONTEÚDO --- */
.dashboard-content { flex: 1; }
.content-header { margin-bottom: 40px; }
.content-header h2 { font-size: 2.5rem; margin-bottom: 5px; letter-spacing: -1px; color: var(--text-dark); }
.content-header .subtitle { color: #999; font-size: 0.9rem; }

.premium-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.03);
}

/* Polimento escopado na LOJA (body.theme-light) — admin nunca recebe, mesmo
   se reaproveitar a classe. Sombra/raio coerentes com os tokens. */
body.theme-light .premium-card {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Foco-visível dourado (teclado): acessível e premium, só na loja pública. */
body.theme-light a:focus-visible,
body.theme-light button:focus-visible,
body.theme-light input:focus-visible,
body.theme-light select:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

/* --- FORMULÁRIOS DE LUXO (PERFIL E ENDEREÇO) --- */
.form-section { margin-bottom: 40px; }
.section-label { 
    display: block; font-size: 0.75rem; font-weight: 700; 
    color: #bbb; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 25px; border-bottom: 1px solid #f5f5f5; padding-bottom: 10px;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.field-box { display: flex; flex-direction: column; gap: 8px; }
.field-box.span-2 { grid-column: span 2; }

.field-box label { font-size: 0.65rem; font-weight: 700; color: #000; letter-spacing: 1px; }
.field-box input, .field-box select {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.field-box input:focus, .field-box select:focus { border-bottom-color: var(--gold-primary); }
.readonly-gold { color: #999 !important; border-bottom-style: dashed !important; cursor: not-allowed; }

.form-footer-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.encryption-badge { font-size: 0.7rem; color: #2e7d32; display: flex; align-items: center; gap: 8px; font-weight: 600; }

.btn-gold-action {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold-action:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-2px);
}

.btn-text-only {
    background: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    letter-spacing: 1px;
}
.btn-text-only:hover { color: #d32f2f; }

/* --- ESTILOS DOS CARTÕES DE ENDEREÇO --- */
.address-view-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.luxury-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.luxury-address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.address-card-premium {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    border-top: 3px solid #eee;
}

.address-card-premium:hover {
    border-top-color: var(--gold-primary);
    box-shadow: 10px 10px 25px rgba(0,0,0,0.03);
}

.address-card-premium.is-default {
    border-top-color: var(--gold-primary);
    background: var(--bg-highlight);
}

.address-tag {
    font-size: 0.6rem;
    font-weight: 800;
    background: #000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    margin-bottom: 10px;
    display: inline-block;
    letter-spacing: 1px;
}

.address-title {
    font-size: 0.9rem;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.address-details {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.6;
}


.btn-icon-only {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.btn-icon-only:hover { color: #000; }
.btn-icon-only.delete:hover { color: #d32f2f; }

/* Animação de Entrada dos Paineis */
.content-card-fade {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade do Dashboard */
@media (max-width: 900px) {
    .dashboard-wrapper { flex-direction: column; }
    .dashboard-sidebar { width: 100%; position: relative; top: 0; }
    .luxury-grid { grid-template-columns: 1fr; }
    .address-view-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ==========================================
   10. PÁGINA DE PRODUTO (ESTILO PRIME)
   ========================================== */
.product-page-prime { background-color: var(--bg-main); padding: 20px 0 80px; }
.pdp-container-v2 { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

.pdp-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 30px;
    align-items: start;
}

.pdp-gallery-v2 {
    position: relative;
    background: #FFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    min-height: 500px;
}

.pdp-main-img-box img { max-width: 100%; max-height: 450px; object-fit: contain; }
.pdp-wishlist-btn { top: 20px; right: 20px; }

.pdp-buy-box { display: flex; flex-direction: column; }
.pdp-buy-box h1 { font-size: 1.95rem; color: var(--text-dark); margin-bottom: 12px; line-height: 1.25; letter-spacing: 0.3px; }
.pdp-ref { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 28px; }

.pdp-pricing { margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid var(--border-light); }
.pdp-price-old { display: block; font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; margin-bottom: 6px; }
.pdp-price-main { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); font-family: var(--font-heading); letter-spacing: 0.5px; line-height: 1.1; }
.pdp-pix-discount { display: block; font-size: 0.85rem; color: #2e7d32; font-weight: 600; margin-bottom: 5px; }
.pdp-installments { font-size: 0.9rem; color: var(--text-muted); }

.pdp-actions-row { display: flex; gap: 15px; margin-bottom: 35px; }
.pdp-qty { border: 1px solid var(--border-light); padding: 0 15px; height: 55px; }
.btn-buy-v2 { flex: 1; height: 55px; font-size: 1rem; }

.pdp-shipping-calc { background: var(--bg-secondary); padding: 20px; border-radius: 4px; }
.pdp-shipping-calc label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 15px; text-transform: uppercase; }
.shipping-input-group { display: flex; gap: 10px; }
.shipping-input-group input { flex: 1; padding: 12px; border: 1px solid var(--border-light); outline: none; }

.pdp-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: 80px 0;
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.pdp-info-grid h2 { font-size: 1.5rem; margin-bottom: 28px; text-transform: uppercase; letter-spacing: 1px; position: relative; padding-bottom: 14px; }
.pdp-info-grid h2::after { content: ''; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; background: var(--gold-primary); }
.pdp-description-section p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }

.specs-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border-light); border-radius: var(--radius-sm); overflow: hidden; }
.specs-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child { background: var(--bg-highlight); font-weight: 600; width: 40%; color: var(--text-dark); }

.pdp-reviews-section { padding-top: 60px; border-top: 1px solid var(--border-light); }
.reviews-score { display: flex; align-items: center; gap: 15px; }
.score-number { font-size: 3rem; font-weight: 700; }
.stars { color: var(--gold-primary); font-size: 1rem; }

.review-item { padding: 30px 0; border-bottom: 1px solid var(--border-light); }
.review-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-size: 0.85rem; }
.reviewer-name { font-weight: 700; color: var(--text-dark); }
.review-date { color: var(--text-muted); }
.verified-badge { color: #2e7d32; font-weight: 600; }
.review-text { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; }

.review-helpful { display: flex; align-items: center; gap: 15px; font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.review-helpful button { background: transparent; border: 1px solid var(--border-light); padding: 5px 12px; cursor: pointer; font-size: 0.8rem; }

/* ==========================================
   11. LOGIN & CADASTRO (EXPERIÊNCIA PREMIUM)
   ========================================== */

.login-split-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background-color: #fcfcfc;
}

/* Lado Esquerdo - A Marca */
.login-split-brand {
    flex: 1;
    position: relative;
    background: url('gems-decor-bg.png') center/cover no-repeat;
    display: flex;
    overflow: hidden;
}

.login-brand-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Filtro mais leve para valorizar a imagem linda */
    background: linear-gradient(to bottom, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.25) 100%);
    z-index: 1;
}

.login-brand-center {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 2;
    text-align: right;
    animation: loginPremiumFade 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.login-huge-logo {
    width: 140px; /* Reduzido para tamanho de marca d'água */
    opacity: 0.45; /* Efeito de marca d'água translúcida */
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2)); /* Brilho leve */
    margin-bottom: 0;
    transition: opacity 0.4s ease;
}

.login-huge-logo:hover {
    opacity: 0.8; /* Acende um pouco se o mouse passar por cima */
}

.brand-tagline {
    display: none; /* Removido para manter a pureza da imagem e focar na marca d'água */
}

/* Lado Direito - A Ação */
.login-split-forms {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    position: relative;
}

.login-split-content {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04), 0 10px 20px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
    border-top: 3px solid var(--gold-primary);
    animation: loginPremiumFade 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* TABS NAVEGAÇÃO */
.login-tabs {
    display: flex;
    margin-bottom: 35px;
    border-bottom: 2px solid #EAEAEA;
}

.login-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 0;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #aaa;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.login-tab-btn:hover {
    color: #777;
}

.login-tab-btn.active {
    color: var(--text-dark);
}

.login-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.login-tab-btn.active::after {
    transform: scaleX(1);
}

/* Tab contents */
.login-tab-content {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.login-tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes loginPremiumFade {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- TIPOGRAFIA DA ENTRADA --- */
.pane-header {
    margin-bottom: 40px;
}

.luxury-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.luxury-title::after {
    content: '.';
    color: var(--gold-primary, #C5A059);
}

.pane-header .subtitle {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

/* --- AJUSTES NO FORMULÁRIO DE LOGIN/CADASTRO --- */
.form-options {
    margin: -10px 0 25px;
    text-align: right;
}

.forgot-password-link {
    font-size: 0.7rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s;
}

.forgot-password-link:hover {
    color: var(--gold-primary);
}

.privacy-notice {
    font-size: 0.7rem;
    color: #bbb;
    margin: 20px 0 30px;
    line-height: 1.6;
    font-style: italic;
}

/* --- BOTÕES SOCIAIS (MINIMALISTAS) --- */
.social-login-divider {
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-login-divider::before,
.social-login-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
}

.social-login-divider span {
    font-size: 0.6rem;
    font-weight: 700;
    color: #ccc;
    letter-spacing: 2px;
}

.social-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.btn-social-minimal {
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    color: #555;
}

.btn-social-minimal:hover {
    border-color: #ccc;
    background: #f9f9f9;
    color: #000;
}

.btn-social-minimal i {
    font-size: 0.9rem;
}

/* --- AUXILIARES --- */
.full-width {
    width: 100%;
    justify-content: center;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .login-split-layout {
        flex-direction: column;
    }
    
    .login-split-brand {
        min-height: 380px;
        flex: none;
    }
    
    .login-huge-logo {
        width: 280px;
    }
    
    .login-split-forms {
        padding: 40px 20px;
    }
    
    .login-split-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .login-split-content {
        padding: 25px 15px;
    }
    
    .luxury-title {
        font-size: 1.5rem;
    }
    
    .brand-tagline {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }
}

/* ==========================================
   12. SISTEMA MASTER (LOGIN & GESTÃO DE RODAPÉ)
   ========================================== */

/* --- TELA DE LOGIN ADMIN --- */
.admin-login-body {
    background: #050505 !important;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px;
}

.admin-login-container {
    background: #0a0a0a;
    width: 100%;
    max-width: 420px;
    padding: 60px 40px;
    border: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    text-align: center;
    position: relative;
}

.admin-login-logo { margin-bottom: 45px; }

.admin-login-logo i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.admin-login-logo h2 {
    color: #FDFDFD;
    font-family: var(--font-heading);
    letter-spacing: 4px;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.admin-login-logo span {
    display: block;
    color: #666;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.form-group-dark {
    text-align: left;
    margin-bottom: 25px;
}

.form-group-dark label {
    display: block;
    color: #999;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.form-group-dark input {
    width: 100%;
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group-dark input:focus {
    border-color: var(--gold-primary);
    background: #000;
    box-shadow: 0 0 10px rgba(244, 196, 0, 0.1);
}

.btn-gold-solid {
    width: 100%;
    background: var(--gold-primary);
    color: #000;
    border: none;
    padding: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-gold-solid:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.admin-login-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #1a1a1a;
}

.admin-login-footer p {
    color: #444;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-login-footer i {
    margin-right: 8px;
    color: #333;
}

/* --- PAINEL: GESTÃO DO RODAPÉ --- */


.form-sub-title {
    color: #F4C400;
    font-family: var(--font-heading, sans-serif);
    font-size: 1.1rem;
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.form-sub-title:first-child {
    margin-top: 0;
}

.form-sub-title i {
    font-size: 1.2rem;
    color: #555;
}

.admin-form-gold {
    display: flex;
    flex-direction: column;
}

.admin-form-gold .btn-gold-solid {
    margin-top: 30px;
    align-self: flex-start;
    padding: 15px 30px;
    border-radius: 4px;
}
/* ==========================================
   MOTOR DE ENQUADRAMENTO (CROPPER)
   ========================================== */
.cropper-box {
    width: 100%;
    height: 300px; /* Espaço exato de manobra para a imagem */
    background-color: #050505;
    border: 1px dashed rgba(197, 160, 89, 0.5);
    border-radius: 4px;
    margin-top: 15px;
    display: none; /* Inicia oculto */
    overflow: hidden; /* Evita vazamentos do layout */
}

.cropper-box img {
    display: block;
    max-width: 100%; /* Regra de Ouro exigida pelo Cropper.js */
}

/* ==========================================
   EXPANSÃO DO FORMULÁRIO DE JOIAS (ÁREA TÉCNICA)
   ========================================== */

/* Estilização da Caixa de Texto (Descrição) */
.admin-form textarea {
    width: 100%;
    padding: 12px;
    background: #0A0A0A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #FDFDFD;
    border-radius: 4px;
    resize: vertical; /* Permite ao comandante esticar a caixa apenas para baixo */
    font-family: inherit;
    font-size: 0.95rem;
    min-height: 100px;
    transition: all 0.3s ease;
}

/* Efeito de Foco (Brilho Dourado ao digitar) */
.admin-form textarea:focus {
    outline: none;
    border-color: #C5A059; /* Dourado Brazil GEMS */
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.2);
}

/* Títulos das Subseções do Formulário */

/* Linha divisória para organizar a modal */

/* Customização da Barra de Rolagem da Modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}
.modal-content::-webkit-scrollbar-track {
    background: #0A0A0A; 
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
    background: #C5A059; /* Dourado Brazil GEMS */
    border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover {
    background: #A38047; /* Dourado um pouco mais escuro no hover */
}

.modal-content {
    /* ... suas outras configurações já existentes ... */
    
    max-height: 90vh; /* Trava a modal em 90% da altura da tela */
    overflow-y: auto; /* Libera o cursor para rolar o conteúdo para baixo */
}

/* ==========================================
   ANIMAÇÕES E MICROINTERAÇÕES DOS BOTÕES
   ========================================== */

/* 1. Botões Principais (Salvar, Adicionar, Publicar, Registrar) */
.btn-primary {
    background: linear-gradient(135deg, #C5A059 0%, #A38047 100%);
    color: #050505 !important;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.15); /* Sombra inicial discreta */
    text-transform: uppercase;
}

/* Efeito Hover: O botão "levanta" e o brilho aumenta */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(197, 160, 89, 0.4);
    filter: brightness(1.1);
}

/* Efeito Active (Clique): O botão afunda levemente */
.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(197, 160, 89, 0.3);
}

/* 2. Botões Secundários (Cancelar) */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #CCC !important;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #FDFDFD !important;
    color: #FDFDFD !important;
    transform: translateY(-1px);
}

.btn-outline:active {
    transform: translateY(1px);
}

/* 3. Ícones de Ação na Tabela (Editar e Excluir) */
.edit-btn, .delete-btn, .delete-banner-btn {
    transition: all 0.2s ease;
    opacity: 0.8;
}

.edit-btn:hover {
    color: #42a5f5 !important;
    transform: scale(1.15);
    opacity: 1;
}

.delete-btn:hover, .delete-banner-btn:hover {
    color: #ef5350 !important;
    transform: scale(1.15);
    opacity: 1;
}

/* 4. Abas do Menu Lateral (Sidebar) */
.admin-tab-btn {
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-tab-btn:hover {
    background: rgba(197, 160, 89, 0.05);
    padding-left: 20px; /* Efeito de deslizar o texto para a direita */
    color: #C5A059;
}

.admin-tab-btn.active {
    border-left: 3px solid #C5A059;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.1) 0%, transparent 100%);
    color: #C5A059;
}

/* ==========================================
   NOVA INTERFACE DA SACOLA (OBSIDIAN & GOLD)
   ========================================== */

/* Container do Item na Sacola - O "Card" da Joia */
.cart-item-visual-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02); /* Sombra quase invisível */
}

/* Efeito de destaque ao passar o mouse */
.cart-item-visual-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: rgba(197, 160, 89, 0.2); /* Dourado muito suave na borda */
}

/* Área da Imagem da Joia na Sacola */
.cart-item-img-box {
    width: 120px;
    height: 120px;
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    background: #fff; /* Fundo branco puro para joias */
}

.cart-item-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Garante que a joia não seja cortada */
    transition: transform 0.3s ease;
}

.cart-item-visual-card:hover .cart-item-img-box img {
    transform: scale(1.05); /* Zoom suave na joia */
}

/* Detalhes do Produto na Sacola */
.cart-item-details-box {
    flex: 2; /* Pega o maior espaço */
    padding-right: 20px;
}

.cart-item-ref {
    display: block;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cart-item-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 500;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

/* Área de Preço e Quantidade (Layout Elegante) */
.cart-item-pricing-box {
    flex: 1; /* Espaço para o preço */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.cart-item-total-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold-primary); /* Preço é destaque em ouro */
    margin-bottom: 5px;
}

.cart-item-unit-price {
    font-size: 0.8rem;
    color: #888;
}

/* Área de Ações do Item (Quantidade e Remover) */
.cart-item-actions-box {
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Novo Controle de Quantidade Sleek */
.gems-qty-control-v2 {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px; /* Arredondado estilo boutique */
    overflow: hidden;
    background: #f9f9f9;
}

.gems-qty-control-v2 button {
    background: none;
    border: none;
    padding: 8px 12px;
    color: #555;
    cursor: pointer;
    font-size: 0.9rem;
    transition: 0.2s;
}

.gems-qty-control-v2 button:hover {
    color: #000;
    background: #eaeaea;
}

.gems-qty-control-v2 span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #000;
    width: 30px;
    text-align: center;
}

/* Botão de Remover Item (Minimalista) */
.btn-remove-item-v2 {
    background: none;
    border: none;
    color: #CCC;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    padding: 5px;
}

.btn-remove-item-v2:hover {
    color: #d32f2f; /* Vermelho apenas no hover para segurança */
    transform: scale(1.1);
}

/* Responsividade Básica da Sacola */
@media (max-width: 900px) {
    .cart-grid-obsidian {
        grid-template-columns: 1fr; /* Coluna única no mobile */
    }
    
    .cart-summary-obsidian {
        position: static; /* Para de flutuar */
        margin-top: 30px;
    }
    
    .cart-item-visual-card {
        flex-wrap: wrap; /* Itens quebram linha */
    }
    
    .cart-item-img-box {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-pricing-box, .cart-item-actions-box {
        flex: auto;
        width: 50%;
        margin-top: 20px;
        text-align: left;
        align-items: flex-start;
    }
    
    .cart-item-actions-box {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ==========================================
   8. CHECKOUT E PAGAMENTO (OBSIDIAN & GOLD)
   ========================================== */

/* Efeitos de Foco nas Caixas de Texto (Inputs) */
.checkout-section input {
    transition: all 0.3s ease;
    outline: none;
}

.checkout-section input:focus {
    border-color: #C5A059 !important; /* Dourado Brazil GEMS */
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
    background: #fff !important;
}

/* Efeitos nos Botões de Seleção (PIX / Cartão) */
.payment-methods label {
    transition: all 0.3s ease;
    position: relative;
}

.payment-methods label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #C5A059;
}

/* Destaque do método ESCOLHIDO — halo dourado + leve tom de fundo. Complementa
   a borda que o JS já aplica inline, deixando a escolha inequívoca (confiança). */
.payment-methods label:has(input:checked) {
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.14);
    background: rgba(197, 160, 89, 0.06);
}

/* -------------------------------------------
   ANIMAÇÃO DO MODAL DO PIX
   ------------------------------------------- */
#modal-pix-gems {
    animation: fadeInBg 0.3s ease forwards;
}

#modal-pix-gems > div {
    /* Animação elástica de entrada */
    animation: popUpElastic 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeInBg {
    from { background: rgba(0,0,0,0); backdrop-filter: blur(0px); }
    to { background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); }
}

@keyframes popUpElastic {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Botão de Copiar Código PIX no Hover */
#modal-pix-gems button:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* -------------------------------------------
   RESPONSIVIDADE (TELA DE CELULAR)
   ------------------------------------------- */
@media (max-width: 900px) {
    /* Quebra as duas colunas do Checkout para uma só */
    .checkout-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* O resumo da compra para de flutuar e vai pro final */
    .checkout-summary {
        position: static !important;
        margin-top: 10px;
    }

    /* As caixas de endereço ficam uma embaixo da outra */
    .checkout-section > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    /* Títulos menores no celular */
    .checkout-page h1 {
        font-size: 1.5rem !important;
    }
}

/* ==========================================
   8.1 FORMULÁRIO DE CARTÃO DE CRÉDITO
   ========================================== */
.credit-card-form {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.form-group-full {
    margin-bottom: 15px;
}

.form-group-split {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group-half {
    flex: 1;
}

.credit-card-form label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.checkout-input:focus {
    border-color: #C5A059; /* Dourado Brazil GEMS */
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.2);
    outline: none;
}

/* Customização do Dropdown de Parcelas com seta Dourada */
select.select-installments {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C5A059%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    cursor: pointer;
}

@media (max-width: 600px) {
    .form-group-split {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================
   💎 13. SISTEMA MASTER DE BOTÕES ()
   Módulo de injeção visual para botões de ação
   ========================================== */

/* --- 1. BOTÕES DOURADOS (Ação Principal & Checkout) --- */
.btn-primary,
.btn-gold-action,
.btn-yellow,
.btn-gold-solid,
.btn-checkout-primary,
#btn-comprar-agora {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-primary) 100%) !important;
    color: #050505 !important;
    border: none !important;
    padding: 16px 32px !important;
    font-family: var(--font-body) !important;
    font-size: 0.80rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    border-radius: 3px !important; /* Leve arredondamento, elegante e moderno */
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    box-shadow: 0 4px 15px rgba(244, 196, 0, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.btn-primary:hover,
.btn-gold-action:hover,
.btn-yellow:hover,
.btn-gold-solid:hover,
.btn-checkout-primary:hover,
#btn-comprar-agora:hover {
    transform: translateY(-3px) !important; /* O botão flutua suavemente para cima */
    box-shadow: 0 8px 25px rgba(244, 196, 0, 0.3) !important; /* O brilho expande */
    filter: brightness(1.05) !important;
}

.btn-primary:active,
.btn-gold-action:active,
#btn-comprar-agora:active {
    transform: translateY(1px) !important; /* Resposta tátil ao clique */
}

/* --- 2. BOTÕES PRETOS (Ação Secundária de Peso) --- */
.btn-black,
.quick-buy button {
    background: #0A0A0A !important;
    color: #FFFFFF !important;
    border: 1px solid #0A0A0A !important;
    padding: 16px 32px !important;
    font-family: var(--font-body) !important;
    font-size: 0.80rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-black:hover,
.quick-buy button:hover {
    background: var(--gold-primary) !important;
    color: #000 !important;
    border-color: var(--gold-primary) !important;
    box-shadow: 0 5px 15px rgba(244, 196, 0, 0.2) !important;
}

/* --- 3. BOTÕES VAZADOS / OUTLINE (Minimalismo Elegante) --- */
.btn-outline,
.btn-outline-black,
#btn-add-sacola {
    background: transparent !important;
    color: #0A0A0A !important;
    border: 1px solid #CCCCCC !important;
    padding: 16px 32px !important;
    font-family: var(--font-body) !important;
    font-size: 0.80rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    border-radius: 3px !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.btn-outline:hover,
.btn-outline-black:hover,
#btn-add-sacola:hover {
    border-color: #0A0A0A !important;
    background: #0A0A0A !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

/* --- 4. CORREÇÃO DE ALINHAMENTO NA PÁGINA DO PRODUTO (PDP) --- */
.pdp-actions-row {
    display: flex !important;
    gap: 15px !important;
    align-items: stretch !important; /* Força os botões e o input de Qtd a terem a mesma altura */
    margin-bottom: 35px !important;
}

.btn-buy-v2 {
    flex: 1 !important; /* Faz os dois botões dividirem o espaço em 50% / 50% */
    height: 55px !important; /* Altura padrão de botão premium */
    margin: 0 !important;
}

.pdp-qty {
    width: 80px !important;
    text-align: center;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border: 1px solid #CCCCCC !important;
    border-radius: 3px !important;
    outline: none !important;
    background: #FFFFFF !important;
    color: #0A0A0A !important;
    transition: all 0.3s ease;
}

.pdp-qty:focus {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 5px rgba(244, 196, 0, 0.3) !important;
}

/* ==========================================
   MÓDULO 5: MOSAICO DE COLEÇÕES (LUXO)
   ========================================== */
.mosaic-collections {
    padding: 80px 5%;
    background-color: #FDFDFD;
    text-align: center;
}

.mosaic-header h2 {
    font-family: var(--font-heading, 'Georgia', serif);
    font-size: 2.2rem;
    color: #0A0A0A; /* Light Black da identidade visual */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mosaic-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 50px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 4px;
    text-decoration: none;
    background-color: #0A0A0A; /* Dark Gray para a transição elegante */
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.8s ease;
    opacity: 0.85;
}

/* Efeitos Hover (Mouse em cima) */
.mosaic-item:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

/* Geometria do Mosaico (O Segredo do Layout Editorial) */
.mosaic-grid .item-1 { grid-column: span 2; grid-row: span 2; }
.mosaic-grid .item-2 { grid-column: span 2; grid-row: span 1; }
.mosaic-grid .item-3 { grid-column: span 1; grid-row: span 1; }
.mosaic-grid .item-4 { grid-column: span 1; grid-row: span 1; }

/* SKELETON LOADER PARA O MOSAICO */
.mosaic-skeleton {
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
    border-radius: var(--radius-md);
    pointer-events: none;
}

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.mosaic-loaded-fade {
    animation: fadeMosaicoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes fadeMosaicoIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}
/* Responsividade Tática para Celulares e Tablets */
@media (max-width: 992px) {
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 250px; }
    .mosaic-grid .item-1, .mosaic-grid .item-2 { grid-column: span 2; }
    .mosaic-grid .item-3, .mosaic-grid .item-4 { grid-column: span 1; }
}
@media (max-width: 576px) {
    .mosaic-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
    .mosaic-grid .item-1, .mosaic-grid .item-2, .mosaic-grid .item-3, .mosaic-grid .item-4 { grid-column: span 1; grid-row: span 1; }
}

/* ==========================================
   TAPETE VERMELHO & EXCELÊNCIA (LUXO)
   ========================================== */

/* 1. Sinais de Confiança */
.trust-signals {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background-color: #050505;
    padding: 40px 5%;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 10px;
}

.trust-item i {
    font-size: 2.2rem;
    color: var(--gold-primary, #C5A059);
}

.trust-item h4 {
    color: #FDFDFD;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.trust-item p {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.brand-excellence-cinematic {
    position: relative;
    width: 100%;
    min-height: 550px; /* Altura de presença na tela */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 5%;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto preencha tudo sem distorcer */
    z-index: 1;
}

/* Ajustes para Celular */
@media (max-width: 768px) {
    .brand-excellence-cinematic { min-height: 450px; padding: 60px 5%; }
}

/* ==========================================
   GALERIA LIFESTYLE (FEED INSTAGRAM)
   ========================================== */
.lifestyle-gallery {
    padding: 80px 0 100px 0;
    background-color: #FDFDFD;
    text-align: center;
}

.lifestyle-header {
    padding: 0 5%;
    margin-bottom: 40px;
}

.lifestyle-header h2 {
    font-family: var(--font-heading, 'Georgia', serif);
    font-size: 2.2rem;
    color: #0A0A0A;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.lifestyle-header p {
    color: #666;
    font-size: 1rem;
}

.lifestyle-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    /* Oculta a barra de rolagem feia, mas mantém a função de arrastar/scroll */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.lifestyle-grid::-webkit-scrollbar {
    display: none;
}

.lifestyle-item {
    flex: 0 0 20%; /* 5 fotos aparecendo na tela do PC */
    min-width: 280px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lifestyle-overlay i {
    color: #FDFDFD;
    font-size: 2.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.lifestyle-item:hover img {
    transform: scale(1.08);
}

.lifestyle-item:hover .lifestyle-overlay {
    opacity: 1;
}

.lifestyle-item:hover .lifestyle-overlay i {
    transform: translateY(0);
}

.lifestyle-footer {
    margin-top: 50px;
}

.btn-instagram-outline {
    display: inline-block;
    border: 1px solid #0A0A0A;
    color: #0A0A0A;
    padding: 15px 35px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-instagram-outline i {
    margin-right: 8px;
    font-size: 1rem;
}

.btn-instagram-outline:hover {
    background-color: #0A0A0A;
    color: var(--gold-primary, #C5A059);
}

/* Responsividade do Carrossel */
@media (max-width: 992px) {
    .lifestyle-item { flex: 0 0 33.333%; }
}
@media (max-width: 576px) {
    .lifestyle-item { flex: 0 0 60%; } /* No celular, mostra 1 foto inteira e um "pedacinho" da próxima */
}

/* ==========================================
   MOTOR DE ZOOM IN-PLACE (ESTILO VIVARA)
   ========================================== */
.pdp-zoom-in-place {
    overflow: hidden; /* Corta o que passar da caixa */
    cursor: zoom-in;
    position: relative;
    border-radius: 4px; /* Suaviza as bordas */
}

.pdp-zoom-in-place img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease, transform-origin 0.1s ease;
    transform-origin: center center; /* Ponto de partida inicial */
    will-change: transform; /* Motor de aceleração gráfica */
}

/* Quando o mouse entra, a imagem cresce 2.5x */
.pdp-zoom-in-place:hover img {
    transform: scale(2.5); 
}

/* Desativa o zoom no celular para não estragar a tela de toque */
@media (max-width: 768px) {
    .pdp-zoom-in-place:hover img {
        transform: scale(1);
    }
}

/* ==========================================
   POLIMENTO: CÁLCULO DE FRETE (PÁGINA PRODUTO)
   ========================================== */
.pdp-shipping-calc {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-secondary); /* Fundo suave */
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.pdp-shipping-calc label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pdp-shipping-calc label i {
    color: var(--gold-primary);
    margin-right: 8px;
    font-size: 1.1rem;
}

.shipping-input-group {
    display: flex;
    border: 1px solid #DDD;
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

/* Quando clica para digitar o CEP, a borda fica dourada */
.shipping-input-group:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.shipping-input-group input {
    flex: 1;
    border: none;
    padding: 14px 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    background: #FFF;
}

.shipping-input-group button.btn-black {
    background: var(--text-dark); /* Obsidian Black */
    color: var(--gold-primary);   /* Texto Dourado */
    border: none;
    padding: 0 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.shipping-input-group button.btn-black:hover {
    background: var(--gold-primary);
    color: #000;
}

/* Polimento da caixa de resultados do Javascript */
#resultado-frete-box {
    margin-top: 15px;
    border-top: 1px dashed var(--border-light);
    padding-top: 15px;
}

/* ==========================================
   GUIA DE MEDIDAS PREMIUM
   ========================================== */
.pdp-size-guide-trigger { margin-bottom: 20px; }
.pdp-size-guide-trigger a {
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}
.pdp-size-guide-trigger a:hover { color: var(--text-dark); }

/* Modal Background */
.gems-modal {
    display: none; position: fixed; z-index: 10000;
    left: 0; top: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
}

.modal-content-premium {
    background: #FFF; margin: 5% auto; padding: 40px;
    width: 90%; max-width: 500px; border-radius: 4px;
    position: relative; border-top: 4px solid var(--gold-primary);
}

.size-table {
    width: 100%; border-collapse: collapse; margin-top: 20px;
}
.size-table th { background: var(--bg-secondary); padding: 12px; font-size: 0.75rem; color: #888; }
.size-table td { padding: 12px; border-bottom: 1px solid #EEE; text-align: center; font-weight: 600; }

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s; }

.close-modal {
    position: absolute; right: 20px; top: 15px;
    font-size: 28px; cursor: pointer; color: #AAA;
}

/* ==========================================
   CROSS-SELLING: COMPLETE O CONJUNTO
   ========================================== */
.related-products-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-light);
    margin-top: 60px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Ajuste de responsividade para garantir a visão em dispositivos móveis */
@media (max-width: 992px) {
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .related-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   BOTÃO FLUTUANTE WHATSAPP (CONCIERGE VIP)
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px; /* Canto esquerdo para não trombar com as notificações */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-5px) scale(1.05);
    color: #FFF;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Balãozinho (Tooltip) Concierge VIP */
.whatsapp-float::before {
    content: "Concierge VIP";
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #0A0A0A;
    color: var(--gold-primary, #C5A059);
    padding: 6px 14px;
    border-radius: 4px;
    font-family: var(--font-body, sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gold-primary, #C5A059);
}

.whatsapp-float:hover::before {
    opacity: 1;
    visibility: visible;
    left: 80px;
}

/* Ajuste Tático para Celulares */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float::before {
        display: none; /* Esconde o texto no mobile para tela não ficar poluída */
    }
}

/* ==========================================================================
   14. TEMA CLARO GLOBAL (ADMIN PANEL) - OVERRIDE COMPLETO
   ========================================================================== */

/* 1. FUNDO E TEXTO GERAL */
body.admin-light-theme {
    background-color: #f0f2f5 !important;
    color: #333333 !important;
}

/* 2. BARRA LATERAL (SIDEBAR) */
body.admin-light-theme .admin-sidebar {
    background: #ffffff !important;
    border-right: 1px solid #e0e0e0 !important;
}
body.admin-light-theme .admin-logo h2 {
    color: #111 !important;
}
body.admin-light-theme .admin-logo {
    border-bottom: 1px solid #e0e0e0 !important;
}
body.admin-light-theme .admin-tab-btn {
    color: #555 !important;
}
body.admin-light-theme .admin-tab-btn:hover,
body.admin-light-theme .admin-tab-btn.active {
    background: rgba(197, 160, 89, 0.1) !important;
    color: #000 !important;
    border-right: 3px solid var(--gold-primary) !important;
}

/* 3. TÍTULOS E TEXTOS INLINE */
body.admin-light-theme h2, 
body.admin-light-theme h3, 
body.admin-light-theme h4, 
body.admin-light-theme strong,
body.admin-light-theme .view-title {
    color: #111 !important;
}
body.admin-light-theme p,
body.admin-light-theme span:not(.address-tag):not(.pulse-indicator) {
    color: #444 !important;
}

/* 4. CAIXAS, CARDS E PAINÉIS (O ALVO PRINCIPAL) */
body.admin-light-theme .admin-main,
body.admin-light-theme .admin-header {
    background-color: #f0f2f5 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

body.admin-light-theme div[style*="background: #0A0A0A"],
body.admin-light-theme div[style*="background: #050505"],
body.admin-light-theme div[style*="background: #000"],
body.admin-light-theme .admin-card,
body.admin-light-theme .card,
body.admin-light-theme .table-container,
body.admin-light-theme .modal-content {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02) !important;
}

/* 5. MODAIS E POP-UPS (FILTROS E EDIÇÃO) */
body.admin-light-theme .modal-header {
    border-bottom: 1px solid #e0e0e0 !important;
}
body.admin-light-theme .btn-close {
    color: #333 !important;
}

/* 6. FORMULÁRIOS, INPUTS E SELECTS */
body.admin-light-theme .admin-form input,
body.admin-light-theme .admin-form select,
body.admin-light-theme .admin-form textarea,
body.admin-light-theme .admin-search input,
body.admin-light-theme input,
body.admin-light-theme select,
body.admin-light-theme textarea {
    background: #fdfdfd !important;
    border: 1px solid #ccc !important;
    color: #111 !important;
}
body.admin-light-theme input:focus,
body.admin-light-theme select:focus,
body.admin-light-theme textarea:focus {
    border-color: var(--gold-primary) !important;
    background: #fff !important;
    outline: none;
}
body.admin-light-theme label,
body.admin-light-theme .form-group label {
    color: #555 !important;
}

/* 7. TABELAS DE ESTOQUE E PEDIDOS */
body.admin-light-theme table {
    background: #ffffff !important;
    border-radius: 8px;
    overflow: hidden;
}
body.admin-light-theme table th,
body.admin-light-theme .admin-table th {
    background: #f4f4f4 !important;
    color: #111 !important;
    border-bottom: 2px solid #ddd !important;
}
body.admin-light-theme table td,
body.admin-light-theme .admin-table td {
    border-bottom: 1px solid #eee !important;
    color: #333 !important;
}
body.admin-light-theme table tbody tr:hover {
    background: #fafafa !important;
}

/* 8. MOTOR DE PAGINAÇÃO */
body.admin-light-theme .page-btn {
    background: #ffffff !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
}
body.admin-light-theme .page-btn.active {
    background: var(--gold-primary) !important;
    color: #000 !important;
    border-color: var(--gold-primary) !important;
}
body.admin-light-theme .page-btn:disabled {
    background: #eee !important;
    color: #aaa !important;
    border-color: #ddd !important;
}

/* 9. BOTÕES DE AÇÃO ESPECÍFICOS */
body.admin-light-theme .btn-outline {
    border-color: #aaa !important;
    color: #333 !important;
}
body.admin-light-theme .btn-outline:hover {
    background: #eee !important;
}
body.admin-light-theme .view-header button i,
body.admin-light-theme .admin-search i {
    color: inherit;
}

/* ==========================================================================
   15. CORREÇÕES CIRÚRGICAS DE CONTRASTE (ADMIN)
   Blindagem contra camuflagem de botões e textos
   ========================================================================== */

/* 1. CORREÇÃO DOS BOTÕES OUTLINE (Filtros, Manutenção, Tema, Atualizar) */
/* No Tema Escuro (Padrão) -> Texto Claro para aparecer no fundo preto */
.admin-body .btn-outline {
    color: #EAEAEA !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.admin-body .btn-outline:hover {
    color: #FFF !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* No Tema Claro -> Texto Escuro para aparecer no fundo branco */
body.admin-light-theme .admin-body .btn-outline {
    color: #333 !important;
    border-color: #999 !important;
}
body.admin-light-theme .admin-body .btn-outline:hover {
    color: #000 !important;
    background: #EAEAEA !important;
}

/* 2. CORREÇÃO DOS DESCONTOS DE CATEGORIA (Inputs) */
/* No Tema Escuro (Padrão) */
#grid-descontos-categorias input {
    color: #FDFDFD !important;
    background: #111 !important;
    border-color: #333 !important;
}
#grid-descontos-categorias label {
    color: var(--gold-primary) !important;
}

/* No Tema Claro */
body.admin-light-theme #grid-descontos-categorias input {
    color: #111 !important;
    background: #FFF !important;
    border-color: #CCC !important;
}
body.admin-light-theme #grid-descontos-categorias label {
    color: #333 !important;
}

/* 3. CORREÇÃO DA TABELA DE COMISSÕES */
/* Sobrescreve a cor branca fixa (color: #fff) injetada pelo JS no Tema Claro */
body.admin-light-theme .comissao-row div[style*="color: #fff"],
body.admin-light-theme .comissao-row div[style*="color: #FFF"],
body.admin-light-theme .comissao-row strong {
    color: #111 !important;
}
body.admin-light-theme .comissao-row span[style*="background: #222"] {
    background: #EAEAEA !important;
    color: #111 !important;
}

/* 4. GARANTIA DOS CARDS DE CONFIGURAÇÃO (Tema Claro) */
body.admin-light-theme .config-card-premium {
    background: #FFFFFF !important;
    border-color: #DDD !important;
}
body.admin-light-theme .config-card-premium h3 {
    color: #111 !important;
}

/* ==========================================
   15. MINHAS COMPRAS - CENTRAL VIP DE PEDIDOS
   ========================================== */

#pedidos-lista-direta {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pedido-vip-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-left: 4px solid var(--gold-primary, #C5A059);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(250,247,240,0.88)),
        #fff;
    box-shadow: 0 18px 45px rgba(10, 10, 10, 0.045);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.pedido-vip-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12), transparent 68%);
    pointer-events: none;
}

.pedido-vip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(10, 10, 10, 0.075);
    border-color: rgba(197, 160, 89, 0.45);
}

.pedido-card-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.pedido-card-header h4 {
    margin: 4px 0 4px;
    font-family: var(--font-heading, serif);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark, #0A0A0A);
}

.pedido-card-header p {
    margin: 0;
    color: #888;
    font-size: 0.82rem;
}

.pedido-label {
    display: block;
    margin-bottom: 6px;
    color: #aaa;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.pedido-status-area {
    min-width: 190px;
    text-align: right;
}

.pedido-status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pedido-status-pill i {
    font-size: 0.82rem;
}

.status-entregue {
    color: #1f7a3f;
    background: rgba(31, 122, 63, 0.08);
    border-color: rgba(31, 122, 63, 0.18);
}

.status-transporte {
    color: #1565c0;
    background: rgba(21, 101, 192, 0.08);
    border-color: rgba(21, 101, 192, 0.18);
}

.status-preparacao {
    color: #8a5a00;
    background: rgba(197, 160, 89, 0.13);
    border-color: rgba(197, 160, 89, 0.25);
}

.status-pago {
    color: #0a6b4f;
    background: rgba(10, 107, 79, 0.08);
    border-color: rgba(10, 107, 79, 0.18);
}

.status-pendente {
    color: #9b6a00;
    background: rgba(255, 193, 7, 0.13);
    border-color: rgba(255, 193, 7, 0.28);
}

.status-encerrado {
    color: #b3261e;
    background: rgba(179, 38, 30, 0.08);
    border-color: rgba(179, 38, 30, 0.18);
}

.status-devolucao {
    color: #6d4c41;
    background: rgba(109, 76, 65, 0.08);
    border-color: rgba(109, 76, 65, 0.18);
}

.status-acompanhamento {
    color: #555;
    background: rgba(10, 10, 10, 0.04);
    border-color: rgba(10, 10, 10, 0.08);
}
.pedido-alerta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 0.83rem;
    line-height: 1.5;
}

.pedido-alerta i {
    margin-top: 2px;
    font-size: 1rem;
}

.pedido-alerta-pendente {
    color: #6f4b00;
    background: rgba(255, 193, 7, 0.10);
    border: 1px solid rgba(255, 193, 7, 0.22);
}

.pedido-alerta-negativo {
    color: #9b1c15;
    background: rgba(179, 38, 30, 0.07);
    border: 1px solid rgba(179, 38, 30, 0.16);
}

.pedido-alerta-rastreio {
    color: #0d4f8b;
    background: rgba(21, 101, 192, 0.07);
    border: 1px solid rgba(21, 101, 192, 0.15);
}

.pedido-timeline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 28px 0 30px;
    padding: 18px 0 8px;
}

.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 19px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: #e7e7e7;
    z-index: 0;
}

.timeline-step.done:not(:last-child)::after {
    background: linear-gradient(90deg, var(--gold-primary, #C5A059), var(--gold-light, #E8D0A1));
}

.timeline-dot {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #b8b8b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    transition: all 0.3s ease;
}

.timeline-label {
    color: #999;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.timeline-step.done .timeline-dot {
    background: var(--gold-primary, #C5A059);
    border-color: var(--gold-primary, #C5A059);
    color: #000;
    box-shadow: 0 0 0 5px rgba(197, 160, 89, 0.12);
}

.timeline-step.done .timeline-label {
    color: #6f5524;
}

.timeline-step.active .timeline-dot {
    background: #0A0A0A;
    border-color: #0A0A0A;
    color: var(--gold-primary, #C5A059);
    box-shadow: 0 0 0 6px rgba(10, 10, 10, 0.07);
}

.timeline-step.active .timeline-label {
    color: #0A0A0A;
}

.timeline-encerrada .timeline-dot {
    background: #f7f7f7;
    color: #c4c4c4;
}

.timeline-encerrada .timeline-label {
    color: #bbb;
}

.pedido-grid-info {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.pedido-info-box {
    padding: 18px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 10px;
}

.pedido-info-box strong {
    display: block;
    color: var(--text-dark, #0A0A0A);
    font-size: 0.92rem;
    font-weight: 800;
}

.pedido-info-box p {
    margin: 6px 0 0;
    color: #777;
    font-size: 0.78rem;
}

.pedido-total-box {
    text-align: right;
}

.pedido-total-box strong {
    font-family: var(--font-heading, serif);
    font-size: 1.55rem;
    color: #000;
}
.pedido-toggle-detalhes {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 18px 0 4px;
    padding: 13px 16px;
    border: 1px solid rgba(197, 160, 89, 0.28);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(250,247,240,0.86));
    color: #111;
    font-family: var(--font-body, sans-serif);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.28s ease;
}
.pedido-toggle-detalhes:hover {
    border-color: var(--gold-primary, #C5A059);
    background: rgba(197, 160, 89, 0.10);
    transform: translateY(-1px);
}

.pedido-toggle-detalhes i {
    color: var(--gold-primary, #C5A059);
    font-size: 0.82rem;
    transition: transform 0.28s ease;
}
.pedido-detalhes-retratil {
    overflow: hidden;
    max-height: 5000px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.45s ease, opacity 0.28s ease, transform 0.28s ease;
}

.pedido-vip-card.is-collapsed .pedido-detalhes-retratil {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.pedido-vip-card.is-collapsed .pedido-toggle-detalhes i {
    transform: rotate(180deg);
}
@media (max-width: 680px) {
    .pedido-toggle-detalhes {
        margin-top: 16px;
        padding: 12px 14px;
        font-size: 0.68rem;
        justify-content: space-between;
    }
}

.pedido-section {
    position: relative;
    z-index: 1;
    margin-top: 22px;
}

.pedido-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #111;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.pedido-section-title i {
    color: var(--gold-primary, #C5A059);
    font-size: 0.95rem;
}

.pedido-details-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.pedido-itens-lista {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.pedido-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.05);
}

.pedido-item:last-child {
    border-bottom: none;
}

.pedido-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.10);
    color: var(--gold-primary, #C5A059);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pedido-item-info strong {
    display: block;
    color: #111;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.35;
}

.pedido-item-info span {
    display: block;
    margin-top: 3px;
    color: #888;
    font-size: 0.75rem;
}

.pedido-item-total {
    color: #111;
    font-family: var(--font-heading, serif);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.pedido-endereco-box,
.pedido-frete-box {
    height: 100%;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 10px;
}

.pedido-endereco-box p,
.pedido-frete-box p {
    margin: 0 0 8px;
    color: #666;
    font-size: 0.8rem;
    line-height: 1.55;
}

.pedido-endereco-box p:last-child,
.pedido-frete-box p:last-child {
    margin-bottom: 0;
}

.pedido-endereco-box strong,
.pedido-frete-box strong {
    color: #111;
    font-weight: 800;
}

.pedido-recebedor {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px dashed rgba(10, 10, 10, 0.10);
    color: #777 !important;
}

.pedido-recebedor i,
.pedido-frete-box i {
    color: var(--gold-primary, #C5A059);
    margin-right: 6px;
}

.pedido-rastreio-box {
    margin-top: 14px;
    padding: 14px;
    border-radius: 8px;
    background: #0A0A0A;
    color: #fff;
}

.pedido-rastreio-box span {
    display: block;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.55);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.pedido-rastreio-box strong {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-primary, #C5A059);
    font-size: 0.95rem;
    letter-spacing: 1px;
    word-break: break-word;
}

.btn-copiar-rastreio {
    border: 1px solid rgba(197, 160, 89, 0.45);
    background: transparent;
    color: var(--gold-primary, #C5A059);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--font-body, sans-serif);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-copiar-rastreio:hover {
    background: var(--gold-primary, #C5A059);
    color: #000;
}

.pedido-rastreio-pendente {
    margin-top: 12px !important;
    color: #999 !important;
    font-size: 0.76rem !important;
}

.pedido-acoes {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.pedido-acoes .btn-outline,
.btn-devolucao-trigger {
    border: 1px solid #111;
    background: transparent;
    color: #111;
    padding: 12px 18px;
    border-radius: 4px;
    font-family: var(--font-body, sans-serif);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pedido-acoes .btn-outline:hover,
.btn-devolucao-trigger:hover {
    background: #111;
    color: var(--gold-primary, #C5A059);
    border-color: #111;
    transform: translateY(-2px);
}

.pedido-devolucao-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
    padding: 18px;
    border-radius: 10px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.22);
}

.pedido-devolucao-box span {
    display: block;
    margin-bottom: 4px;
    color: #8b7448;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.pedido-devolucao-box strong {
    display: block;
    color: #111;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pedido-devolucao-box p {
    margin: 4px 0 0;
    color: #777;
    font-size: 0.78rem;
}

.pedido-devolucao-box > i {
    color: var(--gold-primary, #C5A059);
    font-size: 1.5rem;
}
.pedido-empty-info {
    padding: 18px;
    border: 1px dashed rgba(10, 10, 10, 0.12);
    border-radius: 10px;
    background: rgba(255,255,255,0.72);
    color: #999;
    font-size: 0.82rem;
    line-height: 1.5;
}

.pedido-empty-info i {
    color: var(--gold-primary, #C5A059);
    margin-right: 8px;
}

.meus-pedidos-empty {
    text-align: center;
    padding: 56px 36px;
}

.meus-pedidos-empty i {
    color: var(--gold-primary, #C5A059);
    font-size: 2.8rem;
    margin-bottom: 18px;
}

.meus-pedidos-empty h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.meus-pedidos-empty p {
    margin-bottom: 24px;
    color: #777;
}

.gems-modal .modal-content-premium {
    box-shadow: 0 24px 80px rgba(0,0,0,0.28);
    animation: popUpElastic 0.42s ease forwards;
}

.gems-modal .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0A0A0A;
    color: var(--gold-primary, #C5A059);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body, sans-serif);
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gems-modal .btn-primary:hover {
    background: var(--gold-primary, #C5A059);
    color: #000;
}

.gems-modal select:focus,
.gems-modal textarea:focus,
.gems-modal input:focus {
    border-color: var(--gold-primary, #C5A059) !important;
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.10);
}

@media (max-width: 900px) {
    .pedido-vip-card {
        padding: 28px;
    }

    .pedido-card-header {
        flex-direction: column;
    }

    .pedido-status-area {
        width: 100%;
        min-width: auto;
        text-align: left;
    }

    .pedido-grid-info,
    .pedido-details-grid {
        grid-template-columns: 1fr;
    }

    .pedido-total-box {
        text-align: left;
    }
}

@media (max-width: 680px) {
    #pedidos-lista-direta {
        gap: 20px;
    }

    .pedido-vip-card {
        padding: 22px;
    }

    .pedido-card-header h4 {
        font-size: 1.25rem;
    }

    .pedido-timeline {
        grid-template-columns: 1fr;
        gap: 14px;
        margin: 22px 0;
        padding: 0;
    }

    .timeline-step {
        flex-direction: row;
        justify-content: flex-start;
        gap: 12px;
    }

    .timeline-step:not(:last-child)::after {
        top: 38px;
        left: 19px;
        width: 2px;
        height: 18px;
    }

    .timeline-dot {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }

    .timeline-label {
        text-align: left;
    }

    .pedido-item {
        grid-template-columns: 38px 1fr;
    }

    .pedido-item-total {
        grid-column: 2;
        font-size: 0.95rem;
    }

    .pedido-acoes {
        justify-content: stretch;
    }

    .pedido-acoes .btn-outline,
    .btn-devolucao-trigger,
    .btn-copiar-rastreio {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .pedido-vip-card {
        padding: 20px 16px;
        border-left-width: 3px;
    }

    .pedido-status-pill {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .pedido-info-box,
    .pedido-endereco-box,
    .pedido-frete-box,
    .pedido-devolucao-box {
        padding: 15px;
    }
}

/* ==========================================
   16. FILTROS VIP - MINHAS COMPRAS
   ========================================== */

.pedidos-filtros-vip {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 26px 0 30px;
    padding: 14px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(250,247,240,0.82)),
        #fff;
    box-shadow: 0 14px 35px rgba(10, 10, 10, 0.035);
}

.pedido-filtro-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 10px 14px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-family: var(--font-body, sans-serif);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.28s ease;
}

.pedido-filtro-btn:hover {
    color: #111;
    border-color: rgba(197, 160, 89, 0.42);
    background: rgba(197, 160, 89, 0.07);
    transform: translateY(-1px);
}

.pedido-filtro-btn.active {
    background: #0A0A0A;
    color: var(--gold-primary, #C5A059);
    border-color: #0A0A0A;
    box-shadow: 0 10px 25px rgba(10, 10, 10, 0.12);
}
.pedido-filtro-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.06);
    color: #777;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0;
}

.pedido-filtro-btn.active span {
    background: var(--gold-primary, #C5A059);
    color: #000;
}

.pedido-filtro-vazio {
    margin: 8px 0 26px;
    padding: 46px 28px;
    text-align: center;
    border: 1px dashed rgba(197, 160, 89, 0.35);
    border-radius: 14px;
    background:
        radial-gradient(circle at top, rgba(197, 160, 89, 0.10), transparent 58%),
        rgba(255,255,255,0.88);
}

.pedido-filtro-vazio i {
    color: var(--gold-primary, #C5A059);
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.pedido-filtro-vazio h3 {
    margin: 0 0 8px;
    font-family: var(--font-heading, serif);
    color: #111;
    font-size: 1.35rem;
    font-weight: 600;
}

.pedido-filtro-vazio p {
    margin: 0;
    color: #777;
    font-size: 0.86rem;
}
@media (max-width: 780px) {
    .pedidos-filtros-vip {
        align-items: stretch;
        gap: 8px;
        padding: 12px;
        margin: 22px 0 26px;
    }

    .pedido-filtro-btn {
        flex: 1 1 calc(50% - 8px);
        min-width: 150px;
        padding: 10px 12px;
        font-size: 0.66rem;
    }
}

@media (max-width: 520px) {
    .pedidos-filtros-vip {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .pedido-filtro-btn {
        width: 100%;
        flex: none;
        justify-content: space-between;
        border-radius: 10px;
    }

    .pedido-filtro-vazio {
        padding: 38px 20px;
    }

    .pedido-filtro-vazio h3 {
        font-size: 1.18rem;
    }
}

/* ==========================================
   17. DASHBOARD CLIENTE FIXO
   Sidebar parada + conteúdo com rolagem própria
   ========================================== */

@media (min-width: 901px) {
    body.account-fixed-shell {
        height: 100vh;
        overflow: hidden;
    }

    body.account-fixed-shell .return-store-bar {
        position: fixed;
        top: 30px;
        left: 5%;
        z-index: 200;
    }

    body.account-fixed-shell .account-premium-dashboard {
        height: 100vh;
        min-height: 0;
        padding: 100px 0 0;
        overflow: hidden;
    }

    body.account-fixed-shell .dashboard-wrapper {
        height: calc(100vh - 100px);
        align-items: stretch;
        overflow: hidden;
    }
}
@media (min-width: 901px) {
    body.account-fixed-shell .dashboard-sidebar {
        flex: 0 0 300px;
        width: 300px;
        position: relative;
        top: 0;
        max-height: calc(100vh - 130px);
        overflow: hidden;
    }

    body.account-fixed-shell .dashboard-content {
        flex: 1;
        min-width: 0;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 14px;
        padding-bottom: 70px;
        scrollbar-gutter: stable;
    }

    body.account-fixed-shell .main-footer {
        display: none;
    }
}
@media (min-width: 901px) {
    body.account-fixed-shell .dashboard-content::-webkit-scrollbar {
        width: 8px;
    }

    body.account-fixed-shell .dashboard-content::-webkit-scrollbar-track {
        background: rgba(10, 10, 10, 0.04);
        border-radius: 999px;
    }

    body.account-fixed-shell .dashboard-content::-webkit-scrollbar-thumb {
        background: rgba(197, 160, 89, 0.55);
        border-radius: 999px;
    }

    body.account-fixed-shell .dashboard-content::-webkit-scrollbar-thumb:hover {
        background: rgba(197, 160, 89, 0.85);
    }

    body.account-fixed-shell .dashboard-content {
        scrollbar-width: thin;
        scrollbar-color: rgba(197, 160, 89, 0.65) rgba(10, 10, 10, 0.04);
    }
}

@media (max-width: 900px) {
    body.account-fixed-shell {
        height: auto;
        overflow: auto;
    }

    body.account-fixed-shell .account-premium-dashboard {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    body.account-fixed-shell .dashboard-wrapper,
    body.account-fixed-shell .dashboard-content,
    body.account-fixed-shell .dashboard-sidebar {
        height: auto;
        max-height: none;
        overflow: visible;
    }
}

/* =====================================================
   ADMIN — Correção dos campos de frete grátis
   Funciona no tema escuro e no tema claro
===================================================== */

.frete-titulo-publico,
.frete-descricao-publica {
    background: #0A0A0A !important;
    color: #FDFDFD !important;
    -webkit-text-fill-color: #FDFDFD !important;
    caret-color: var(--gold-primary) !important;
    border-color: rgba(197,160,89,0.28) !important;
}
body.admin-light-theme .frete-titulo-publico,
body.admin-light-theme .frete-descricao-publica {
    background: #fdfdfd !important;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
    caret-color: var(--gold-primary) !important;
    border-color: #cccccc !important;
}
.frete-titulo-publico::placeholder,
.frete-descricao-publica::placeholder {
    color: #8a8a8a !important;
    -webkit-text-fill-color: #8a8a8a !important;
}

body.admin-light-theme .frete-titulo-publico::placeholder,
body.admin-light-theme .frete-descricao-publica::placeholder {
    color: #777777 !important;
    -webkit-text-fill-color: #777777 !important;
}

/* =====================================================
   VITRINE PÚBLICA DE PROMOÇÕES — HEADER
===================================================== */

.gems-promocoes-strip {
    width: 100%;
    background: linear-gradient(135deg, #070707 0%, #151515 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.28);
    color: #fdfdfd;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

.gems-promocoes-mask {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}
.gems-promocoes-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    padding: 0 14px;
}

.gems-promocoes-track.is-rolling {
    animation: gemsPromocoesMarquee 34s linear infinite;
}

.gems-promocoes-track.is-static {
    width: 100%;
    justify-content: center;
}

.gems-promocoes-strip:hover .gems-promocoes-track.is-rolling {
    animation-play-state: paused;
}
.gems-promocao-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 360px;
    max-width: 460px;
    padding: 9px 14px;
    border: 1px solid rgba(197, 160, 89, 0.26);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
    white-space: nowrap;
}

.gems-promocao-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.14);
    color: var(--gold-primary, #C5A059);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.gems-promocao-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.15;
}

.gems-promocao-copy strong {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.gems-promocao-copy small {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 2px;
}

.gems-promocao-cta {
    margin-left: auto;
    border: none;
    border-radius: 999px;
    padding: 7px 12px;
    background: linear-gradient(135deg, #C5A059, #A38047);
    color: #111111;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
}
@keyframes gemsPromocoesMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .gems-promocoes-mask {
        padding: 7px 0;
    }

    .gems-promocao-card {
        min-width: 300px;
        max-width: 340px;
        padding: 8px 10px;
        gap: 8px;
    }

    .gems-promocao-copy strong {
        font-size: 0.68rem;
    }

    .gems-promocao-copy small {
        font-size: 0.66rem;
    }

    .gems-promocao-cta {
        padding: 6px 9px;
        font-size: 0.62rem;
    }
}
/* =====================================================
   CEP GLOBAL MINI — PÍLULA NA BARRA DE CATEGORIAS
===================================================== */

.nav-v2 {
    position: relative;
}

.gems-cep-mini-area {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
}
.gems-cep-mini-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 6px 12px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text-dark, #0A0A0A);
    cursor: pointer;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.gems-cep-mini-trigger:hover {
    border-color: var(--gold-primary, #C5A059);
    transform: translateY(-1px);
}
.gems-cep-mini-icon {
    color: var(--gold-primary, #C5A059);
    font-size: 0.9rem;
}

.gems-cep-mini-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}

.gems-cep-mini-text small {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted, #777777);
}

.gems-cep-mini-text strong {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dark, #0A0A0A);
    white-space: nowrap;
}
@media (max-width: 1180px) {
    .gems-cep-mini-area {
        position: static;
        transform: none;
        display: flex;
        justify-content: flex-start;
        padding: 8px 5%;
    }
}

@media (max-width: 768px) {
    .gems-cep-mini-trigger {
        min-height: 34px;
        padding: 6px 10px;
    }

    .gems-cep-mini-text small {
        display: none;
    }

    .gems-cep-mini-text strong {
        font-size: 0.68rem;
    }
}
/* =====================================================
   VITRINE DE PROMOÇÕES — POSIÇÃO ABAIXO DAS CATEGORIAS
===================================================== */

.gems-promocoes-strip-below-nav {
    border-top: 1px solid rgba(197, 160, 89, 0.18);
    border-bottom: 1px solid rgba(197, 160, 89, 0.24);
    background: linear-gradient(135deg, #080808 0%, #121212 55%, #080808 100%);
}
.gems-promocoes-strip-below-nav .gems-promocoes-mask {
    padding: 7px 0;
}

.gems-promocoes-strip-below-nav .gems-promocao-card {
    min-width: 340px;
    padding: 8px 13px;
}
.gems-promocoes-strip-below-nav .gems-promocoes-mask {
    padding: 7px 0;
}

.gems-promocoes-strip-below-nav .gems-promocao-card {
    min-width: 340px;
    padding: 8px 13px;
}
@media (max-width: 768px) {
    .gems-promocoes-strip-below-nav .gems-promocao-card {
        min-width: 285px;
        max-width: 320px;
    }

    .gems-promocoes-strip-below-nav .gems-promocoes-mask {
        padding: 6px 0;
    }
}
/* =====================================================
   VITRINE DE PROMOÇÕES — VERSÃO MAIS FINA
===================================================== */

.gems-promocoes-strip-below-nav .gems-promocoes-mask {
    padding: 4px 0 !important;
}
.gems-promocoes-strip-below-nav .gems-promocao-card {
    min-height: 30px !important;
    padding: 5px 11px !important;
    gap: 8px !important;
}
.gems-promocoes-strip-below-nav .gems-promocao-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 0.72rem !important;
}

.gems-promocoes-strip-below-nav .gems-promocao-copy strong {
    font-size: 0.68rem !important;
}

.gems-promocoes-strip-below-nav .gems-promocao-copy small {
    font-size: 0.62rem !important;
}
.gems-promocoes-strip-below-nav .gems-promocao-cta {
    padding: 5px 9px !important;
    font-size: 0.58rem !important;
}

/* =====================================================
   HEADER INTELIGENTE RETRÁTIL — BASE
===================================================== */

body:not(.account-fixed-shell) .header-v2 {
    transition: transform 0.34s ease, box-shadow 0.28s ease, background 0.28s ease;
    will-change: transform;
}

body:not(.account-fixed-shell) .header-v2.gems-header-hidden {
    transform: translateY(calc(-100% - 2px));
    pointer-events: none;
    box-shadow: none;
}
/* Estado compacto quando o cliente já saiu do topo */

.header-v2.gems-header-compact {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(197, 160, 89, 0.22);
}

.header-v2.gems-header-compact .header-top {
    padding-top: 5px;
    padding-bottom: 5px;
}

.header-v2.gems-header-compact .logo-img {
    max-height: 54px;
}
/* Compactação da assinatura, busca e categorias */

.header-v2.gems-header-compact .sig-main {
    font-size: 2.05rem;
}

.header-v2.gems-header-compact .sig-sub {
    font-size: 0.46rem;
    margin-top: 5px;
    letter-spacing: 3px;
}

.header-v2.gems-header-compact .search-bar-v2 {
    padding-top: 6px;
    padding-bottom: 6px;
}

.header-v2.gems-header-compact .nav-links-v2 {
    padding-top: 9px;
    padding-bottom: 9px;
}

.header-v2.gems-header-compact .nav-links-v2 a {
    font-size: 0.78rem;
}
/* Compactação do CEP mini e da barra de cupons */

.header-v2.gems-header-compact .gems-cep-mini-trigger {
    min-height: 30px;
    padding: 4px 10px;
}

.header-v2.gems-header-compact .gems-cep-mini-icon {
    font-size: 0.78rem;
}

.header-v2.gems-header-compact .gems-cep-mini-text small {
    font-size: 0.48rem;
}

.header-v2.gems-header-compact .gems-cep-mini-text strong {
    font-size: 0.64rem;
}
.header-v2.gems-header-compact .gems-promocoes-strip-below-nav .gems-promocoes-mask {
    padding: 3px 0 !important;
}

.header-v2.gems-header-compact .gems-promocoes-strip-below-nav .gems-promocao-card {
    min-height: 28px !important;
    padding: 4px 10px !important;
}

.header-v2.gems-header-compact .gems-promocoes-strip-below-nav .gems-promocao-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
}

.header-v2.gems-header-hidden .mega-menu {
    display: none !important;
}
@media (max-width: 768px) {
    .header-v2.gems-header-compact .header-top {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .header-v2.gems-header-compact .logo-img {
        max-height: 50px;
    }

    .header-v2.gems-header-compact .nav-links-v2 {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

/* Fluidez do compact: antes as mudanças de tamanho (padding/logo/fontes)
   trocavam instantaneamente, dando sensação "travada". Agora animam suave.
   Seguro graças à histerese do compact — a animação não reentra no threshold. */
body:not(.account-fixed-shell) .header-v2 .header-top,
body:not(.account-fixed-shell) .header-v2 .logo-img,
body:not(.account-fixed-shell) .header-v2 .sig-main,
body:not(.account-fixed-shell) .header-v2 .sig-sub,
body:not(.account-fixed-shell) .header-v2 .search-bar-v2,
body:not(.account-fixed-shell) .header-v2 .nav-links-v2,
body:not(.account-fixed-shell) .header-v2 .nav-links-v2 a,
body:not(.account-fixed-shell) .header-v2 .gems-cep-mini-trigger,
body:not(.account-fixed-shell) .header-v2 .gems-cep-mini-icon,
body:not(.account-fixed-shell) .header-v2 .gems-cep-mini-text small,
body:not(.account-fixed-shell) .header-v2 .gems-cep-mini-text strong,
body:not(.account-fixed-shell) .header-v2 .gems-promocoes-mask,
body:not(.account-fixed-shell) .header-v2 .gems-promocao-card,
body:not(.account-fixed-shell) .header-v2 .gems-promocao-icon {
    transition: padding 0.3s ease, margin 0.3s ease, font-size 0.3s ease,
                max-height 0.3s ease, min-height 0.3s ease, letter-spacing 0.3s ease,
                width 0.3s ease, height 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    body:not(.account-fixed-shell) .header-v2,
    body:not(.account-fixed-shell) .header-v2 * {
        transition: none;
    }
}
/* =====================================================
   POLIMENTO ADMIN — FRETE GRÁTIS AUTOMÁTICO
===================================================== */

.frete-gratis-admin-card {
    margin-bottom: 30px;
    padding: 28px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    background:
        radial-gradient(circle at top right, rgba(197, 160, 89, 0.10), transparent 35%),
        linear-gradient(145deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.98));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.frete-gratis-admin-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

.frete-gratis-admin-card h3 i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.14);
    color: var(--gold-primary);
}
#form-frete-gratis-admin {
    margin-top: 10px;
}

#form-frete-gratis-admin .form-group {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
}

#form-frete-gratis-admin label {
    color: #e8e1d2;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#form-frete-gratis-admin input,
#form-frete-gratis-admin select {
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(197, 160, 89, 0.22);
    color: #fff;
    border-radius: 8px;
}

#form-frete-gratis-admin input:focus,
#form-frete-gratis-admin select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.12);
}
#frete-gratis-admin-status-badge {
    min-width: 92px;
    text-align: center;
    border: 1px solid currentColor;
}

#frete-gratis-admin-preview {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.10), rgba(255, 255, 255, 0.025)) !important;
    border: 1px solid rgba(197, 160, 89, 0.28) !important;
    border-radius: 12px !important;
    color: #d8d8d8 !important;
    line-height: 1.6;
}

#form-frete-gratis-admin .btn-primary {
    min-width: 230px;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.16);
}
@media (max-width: 768px) {
    .frete-gratis-admin-card {
        padding: 20px;
    }

    .frete-gratis-admin-card > div:first-child {
        flex-direction: column;
    }

    #form-frete-gratis-admin .btn-primary {
        width: 100%;
    }
}
/* =====================================================
   SACOLA — IDENTIDADE COFRE BRAZIL GEMS
===================================================== */

.cofre-header-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 45px 20px 35px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
    background:
        radial-gradient(circle at top center, rgba(197, 160, 89, 0.10), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
}

.cofre-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--gold-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cofre-cart-title {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    color: #050505;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.cofre-cart-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: #666;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}
/* =====================================================
   SACOLA — ESTADOS DO COFRE
===================================================== */

.cofre-loading-state,
.cofre-empty-state {
    text-align: center;
    padding: 80px 24px;
    background:
        linear-gradient(145deg, #ffffff, #f8f6f0);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.cofre-loading-state i {
    display: block;
    font-size: 2.6rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.cofre-loading-state span {
    color: #777;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.cofre-empty-state i {
    display: block;
    font-size: 3.2rem;
    color: var(--gold-primary);
    margin-bottom: 18px;
}

.cofre-empty-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #999;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cofre-empty-state h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 12px;
}

.cofre-empty-state p {
    max-width: 520px;
    margin: 0 auto 28px;
    color: #777;
    line-height: 1.7;
}

.cofre-empty-state a {
    display: inline-block;
    padding: 15px 34px;
    background: #050505;
    color: var(--gold-primary);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* =====================================================
   SACOLA — EXPERIÊNCIA DE PRESENTE
===================================================== */

.gift-card-option {
    border-radius: 18px !important;
    border: 1px solid rgba(197, 160, 89, 0.22) !important;
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.10), rgba(255, 255, 255, 0.92)) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.04);
}

.gift-card-option h4 {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    color: #111;
    margin-bottom: 7px;
}

.gift-card-option p {
    color: #666;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cofre-gift-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 0.86rem;
    cursor: pointer;
}

.cofre-gift-switch input {
    accent-color: var(--gold-primary);
}
/* =====================================================
   SACOLA — CARDS DAS PEÇAS
===================================================== */

.cart-item-visual-card {
    border-radius: 20px !important;
    border: 1px solid rgba(197, 160, 89, 0.18) !important;
    background:
        linear-gradient(145deg, #ffffff, #faf8f2) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.055);
    overflow: hidden;
}

.cart-item-img-box {
    border-radius: 16px;
    background:
        radial-gradient(circle at center, rgba(197, 160, 89, 0.12), rgba(245,245,245,1));
}

.cart-item-ref {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--gold-primary);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cart-item-title {
    font-family: var(--font-heading);
    color: #111;
    letter-spacing: 0.02em;
}

.cart-item-meta {
    color: #777;
    font-size: 0.82rem;
}
/* =====================================================
   SACOLA — RESUMO DO COFRE
===================================================== */

.cart-summary-box,
.checkout-summary-box {
    border-radius: 22px !important;
    border: 1px solid rgba(197, 160, 89, 0.20) !important;
    background:
        linear-gradient(145deg, #ffffff, #f9f6ef) !important;
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
}

.cart-summary-box h3,
.checkout-summary-box h3 {
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
}

#btn-finalizar-compra {
    border-radius: 999px !important;
    letter-spacing: 0.12em;
    box-shadow: 0 14px 28px rgba(197, 160, 89, 0.18);
}

#btn-finalizar-compra:hover {
    transform: translateY(-1px);
}
/* =====================================================
   SACOLA — BARRA FRETE GRÁTIS
===================================================== */

.shipping-progress-container {
    border-radius: 16px !important;
    border: 1px solid rgba(197, 160, 89, 0.20) !important;
    background:
        linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(255,255,255,0.95)) !important;
}

#frete-status-texto {
    color: #3c3529 !important;
    line-height: 1.5;
}

#frete-bar-fill {
    background:
        linear-gradient(90deg, #C5A059 0%, #e2c06f 50%, #A38047 100%) !important;
    box-shadow: 0 0 14px rgba(197, 160, 89, 0.42);
}
/* =====================================================
   SACOLA — RESPONSIVO
===================================================== */

@media (max-width: 768px) {
    .cofre-header-section {
        margin-bottom: 35px;
        padding: 32px 16px 26px;
    }

    .cofre-cart-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .cofre-cart-subtitle {
        font-size: 0.92rem;
    }

    .cofre-loading-state,
    .cofre-empty-state {
        padding: 55px 20px;
        border-radius: 16px;
    }

    .cart-item-visual-card {
        border-radius: 16px !important;
    }
}
/* =====================================================
   ADMIN — MENU LATERAL RECOLHÍVEL
===================================================== */

.admin-body .admin-sidebar {
    flex: 0 0 260px;
    width: 260px;
    transition: width 0.28s ease, flex-basis 0.28s ease, padding 0.28s ease;
    overflow: hidden;
}

.admin-sidebar-toggle {
    margin: 18px auto 0;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background: rgba(197, 160, 89, 0.08);
    color: var(--gold-primary, #C5A059);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.admin-sidebar-toggle:hover {
    background: var(--gold-primary, #C5A059);
    color: #000;
    transform: translateY(-1px);
}

.admin-body.admin-sidebar-collapsed .admin-sidebar {
    flex-basis: 78px;
    width: 78px;
    padding: 24px 12px;
}
.admin-body.admin-sidebar-collapsed .admin-logo {
    margin-bottom: 28px;
}

.admin-body.admin-sidebar-collapsed .admin-logo h2,
.admin-body.admin-sidebar-collapsed .admin-logo span {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    overflow: hidden;
    pointer-events: none;
}

.admin-body.admin-sidebar-collapsed .admin-nav {
    align-items: center;
}

.admin-body.admin-sidebar-collapsed .admin-tab-btn {
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    gap: 0;
    font-size: 0;
    overflow: hidden;
    border-left: none;
}

.admin-body.admin-sidebar-collapsed .admin-tab-btn i {
    width: auto;
    margin: 0;
    font-size: 1.15rem;
}

.admin-body.admin-sidebar-collapsed .admin-tab-btn.active {
    border-left: none;
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.55);
}
body.admin-light-theme .admin-sidebar-toggle {
    background: #ffffff;
    border-color: #dddddd;
    color: var(--gold-primary, #C5A059);
}

body.admin-light-theme .admin-sidebar-toggle:hover {
    background: var(--gold-primary, #C5A059);
    color: #000000;
}
/* =====================================================
   SACOLA — ESCOLHA DE ENTREGA / BASE PREMIUM
===================================================== */

.gems-delivery-choice-box {
    margin: 0 0 22px 0;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #faf7ef);
    border: 1px solid rgba(197, 160, 89, 0.22);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.055);
}

.gems-delivery-choice-head {
    margin-bottom: 14px;
}

.gems-delivery-choice-head span {
    display: block;
    color: #111;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.gems-delivery-choice-head small {
    display: block;
    margin-top: 4px;
    color: #7a7267;
    font-size: 0.78rem;
    line-height: 1.35;
}
/* =====================================================
   SACOLA — BOTÕES RECEBER / RETIRAR
===================================================== */


.gems-delivery-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    color: #111;
    cursor: pointer;
    text-align: left;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.gems-delivery-option i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f3e8;
    color: var(--gold-primary, #C5A059);
    font-size: 1.05rem;
}

.gems-delivery-option span {
    min-width: 0;
    display: block;
}

.gems-delivery-option strong {
    display: block;
    margin-bottom: 3px;
    color: #111;
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.2;
}

.gems-delivery-option small {
    display: block;
    color: #7a7267;
    font-size: 0.73rem;
    line-height: 1.35;
}
/* =====================================================
   SACOLA — ENTREGA SELECIONADA
===================================================== */

.gems-delivery-option:hover {
    transform: translateY(-1px);
    border-color: rgba(197, 160, 89, 0.34);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.07);
}

.gems-delivery-option.active {
    background: #050505;
    border-color: rgba(197, 160, 89, 0.72);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.gems-delivery-option.active i {
    background: rgba(197, 160, 89, 0.16);
    color: var(--gold-primary, #C5A059);
    border: 1px solid rgba(197, 160, 89, 0.28);
}

.gems-delivery-option.active strong {
    color: #ffffff;
}

.gems-delivery-option.active small {
    color: rgba(255, 255, 255, 0.72);
}

#gems-delivery-choice-note {
    margin: 12px 0 0 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(197, 160, 89, 0.09);
    color: #5f5649;
    font-size: 0.75rem;
    line-height: 1.45;
}
/* =====================================================
   MOBILE — SACOLA / ESCOLHA DE ENTREGA
===================================================== */

@media (max-width: 768px) {
    .gems-delivery-choice-box {
        margin: 0 0 18px 0 !important;
        padding: 16px !important;
        border-radius: 20px !important;
    }

    .gems-delivery-choice-head span {
        font-size: 0.88rem !important;
        line-height: 1.25 !important;
    }

    .gems-delivery-choice-head small {
        font-size: 0.74rem !important;
    }

    .gems-delivery-option {
        padding: 13px !important;
        border-radius: 17px !important;
        gap: 12px !important;
    }

    .gems-delivery-option i {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        font-size: 1rem !important;
    }

    .gems-delivery-option strong {
        font-size: 0.82rem !important;
    }

    .gems-delivery-option small {
        font-size: 0.7rem !important;
    }

    #gems-delivery-choice-note {
        font-size: 0.72rem !important;
        border-radius: 13px !important;
    }
}
/* OPERAÇÃO 1.7 — Meus Pedidos: ciclo logístico de envio */
.pedido-timeline-logistica {
    grid-template-columns: repeat(6, 1fr);
}

.pedido-logistica-resumo {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    padding: 14px;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.18);
}

.pedido-logistica-resumo > i {
    margin-top: 3px;
    color: var(--gold-primary, #C5A059);
}

.pedido-logistica-resumo span {
    display: block;
    margin-bottom: 4px;
    color: #8a6a2d;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pedido-logistica-resumo strong {
    display: block;
    margin-bottom: 5px;
    color: #111;
    font-size: 0.88rem;
}

.pedido-logistica-resumo p {
    margin: 0;
    color: #666;
    font-size: 0.78rem;
    line-height: 1.5;
}

.pedido-logistica-resumo small {
    display: block;
    margin-top: 6px;
    color: #8a6a2d;
    font-size: 0.72rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .pedido-timeline-logistica {
        grid-template-columns: 1fr;
    }
}
/* OPERAÇÃO 2.5-C — Status bruto Melhor Envio em Meus Pedidos */
.pedido-me-sync-linha {
    display: block;
    margin-top: 7px;
    color: #6b6b6b;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.45;
}

.pedido-me-sync-linha i {
    margin-right: 4px;
    color: var(--gold-primary, #C5A059);
}

.pedido-me-sync-linha strong {
    color: #333;
    font-weight: 800;
}

/* ==========================================================================
   PAGINAÇÃO VIP (tema dark admin)
   Movido do <style> inline de admin.html em 2026-05-18 (Wave 24).
   Overrides mobile permanecem em admin-mobile.css (linhas 249+).
   ========================================================================== */

.pagination-vip {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    width: 100%;
}

.pagination-vip .page-btn {
    min-width: 45px;
    height: 45px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    background: #0A0A0A;
    color: #ccc;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.pagination-vip .page-btn:hover {
    border-color: var(--gold-primary, #C5A059);
    color: var(--gold-primary, #C5A059);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-2px);
}

.pagination-vip .page-btn.active {
    background: var(--gold-primary, #C5A059);
    border-color: var(--gold-primary, #C5A059);
    color: #000;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
    pointer-events: none;
}

.pagination-vip .page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #050505;
    border-color: #222;
    color: #555;
    transform: none;
    box-shadow: none;
}

.pagination-vip span {
    color: #777;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin: 0 5px;
}

/* ==========================================================================
   POLIMENTO DA LANDING — BLOCO 1 (CSS-only, append, reversível)
   Tudo escopado em body.theme-light (a LOJA). O admin NUNCA recebe estas
   regras, mesmo que reuse alguma classe. Só refino visual: não cria/remove
   estrutura, não toca em JS nem em IDs dinâmicos. Para reverter, basta
   apagar este bloco inteiro.
   ========================================================================== */

/* --- HERO: legibilidade + presença editorial ---------------------------- */
/* Removido blocos antigos de texto sobreposto HTML. Agora o banner é 100% Arte Fechada. */
/* Indicador ativo: vira um traço dourado mais largo (assinatura da marca). */
body.theme-light .indicator-dot { border-radius: 2px; transition: width 0.4s var(--ease-premium), background 0.4s ease; }
body.theme-light .indicator-dot.active { width: 50px; background: var(--gold-primary); }

/* --- CATEGORIAS: vitrine de desejo (anel dourado + zoom sutil) ----------- */
body.theme-light .cat-img-box {
    border: 1px solid transparent;
    border-radius: 10px;
}
body.theme-light .cat-img-box img { transition: transform 0.6s var(--ease-premium); }
body.theme-light .category-item:hover .cat-img-box {
    border-color: var(--gold-light);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}
body.theme-light .category-item:hover .cat-img-box img { transform: scale(1.06); }
body.theme-light .category-item span { transition: color 0.3s ease; }
body.theme-light .category-item:hover span { color: var(--gold-dark, #9c7c3c); }

/* --- MOSAICO: curadoria com mais profundidade --------------------------- */
body.theme-light .mosaic-item {
    transition: box-shadow 0.5s var(--ease-premium);
}
body.theme-light .mosaic-item:hover {
    box-shadow: 0 22px 44px rgba(0,0,0,0.20);
}


/* --- TRUST SIGNALS: ícones em medalhão (clube premium) ------------------ */
body.theme-light .trust-item i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    border: 1px solid rgba(197,160,89,0.35);
    border-radius: 50%;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s var(--ease-premium);
}
body.theme-light .trust-item:hover i {
    border-color: var(--gold-primary);
    background: rgba(197,160,89,0.10);
    transform: translateY(-2px);
}

/* --- RITMO: respiro extra antes do rodapé na loja ----------------------- */
body.theme-light .trust-signals { gap: 12px 0; }
/* ====================== FIM DO BLOCO 1 ================================== */

/* ==========================================================================
   POLIMENTO DA LANDING — BLOCO 2: BANNER EDITORIAL (CSS-only, append)
   Seção nova ESTÁTICA (.editorial-banner) entre a vitrine e o mosaico.
   Layout split (imagem | texto) num fundo creme — contrasta de propósito
   com a seção cinematográfica escura que vem depois. Escopado na loja.
   Para reverter: apagar este bloco + a <section class="editorial-banner">
   do index.html.
   ========================================================================== */
body.theme-light .editorial-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    background: var(--bg-secondary);
    overflow: hidden;
}
body.theme-light .editorial-media {
    overflow: hidden;
    min-height: 420px;
}
body.theme-light .editorial-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-premium);
}
body.theme-light .editorial-banner:hover .editorial-media img {
    transform: scale(1.04);
}
body.theme-light .editorial-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: clamp(40px, 6vw, 90px);
}
body.theme-light .editorial-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark, #9c7c3c);
    margin-bottom: 18px;
}
body.theme-light .editorial-eyebrow::before {
    content: '';
    width: 34px;
    height: 1px;
    background: var(--gold-primary);
}
body.theme-light .editorial-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 18px;
}
body.theme-light .editorial-content p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 32px;
}

/* Empilha no mobile/tablet: imagem em cima, texto embaixo. */
@media (max-width: 860px) {
    body.theme-light .editorial-banner { grid-template-columns: 1fr; }
    body.theme-light .editorial-media { min-height: 320px; }
    body.theme-light .editorial-content { align-items: center; text-align: center; }
    body.theme-light .editorial-content p { margin-left: auto; margin-right: auto; }
}
/* ====================== FIM DO BLOCO 2 ================================== */

/* ==========================================================================
   POLIMENTO DA LANDING — BLOCO 3: NEWSLETTER COMO NOTIFICAÇÃO DISCRETA
   O newsletter VIP deixava de "explodir" no centro com fundo escuro e passa a
   aparecer como um card pequeno no TOPO da tela, NÃO-bloqueante (o cliente
   continua navegando). ESCOPADO em #modal-newsletter-vip — a base .gems-modal
   (usada por outros modais: guia de tamanho etc.) NÃO é alterada.
   O JS (script-misc-footer.js) continua igual: só alterna display:block.
   Reverter: apagar este bloco.
   ========================================================================== */
/* Camada vira transparente e deixa passar o clique; só o card é interativo. */
body.theme-light #modal-newsletter-vip {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    pointer-events: none;
}
/* O card: pequeno, fixado no topo-direito, com entrada suave (sem elástico). */
body.theme-light #modal-newsletter-vip .modal-content-premium.newsletter-modal {
    pointer-events: auto;
    position: absolute;
    top: 18px;
    right: 18px;
    left: auto;
    margin: 0;
    width: 360px;
    max-width: calc(100% - 36px);
    padding: 22px 24px;
    border-radius: 12px;
    border-top: 3px solid var(--gold-primary);
    box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    animation: newsSlideDown 0.5s var(--ease-premium);
}
@keyframes newsSlideDown {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* Conteúdo compacto (sem o cabeçalho grande/efusivo). */
body.theme-light #modal-newsletter-vip .modal-header {
    display: block;
    border-bottom: none;
    margin-bottom: 12px;
    padding-bottom: 0;
}
body.theme-light #modal-newsletter-vip .modal-header i {
    font-size: 1.4rem;
    color: var(--gold-primary);
    display: inline-block;
    margin-bottom: 6px;
}
body.theme-light #modal-newsletter-vip .modal-header h2 { font-size: 1.15rem !important; margin: 2px 0 6px; }
body.theme-light #modal-newsletter-vip .modal-header p { font-size: 0.82rem !important; line-height: 1.45; }
body.theme-light #modal-newsletter-vip form { margin-top: 12px !important; }
body.theme-light #modal-newsletter-vip .field-box input { padding: 11px !important; font-size: 0.9rem; }
body.theme-light #modal-newsletter-vip .btn-primary { padding: 12px !important; font-size: 0.85rem; margin-top: 12px !important; }
body.theme-light #modal-newsletter-vip .close-modal { top: 10px; right: 14px; font-size: 22px; }

/* Mobile: faixa fina no topo, quase largura total e centralizada. */
@media (max-width: 560px) {
    body.theme-light #modal-newsletter-vip .modal-content-premium.newsletter-modal {
        top: 12px; right: 12px; left: 12px; width: auto; max-width: none;
    }
}
/* ====================== FIM DO BLOCO 3 ================================== */

/* ==========================================================================
   POLIMENTO DA LANDING — BLOCO 4: ESTADO DE CARREGAMENTO (SHIMMER)
   Enquanto a imagem carrega, um shimmer claro preenche o espaço; ao carregar,
   o container ganha .img-pronta (via script-img-loading.js) e o shimmer some
   suave, revelando a foto. Escopado na loja. NÃO altera a <img> (sem conflito
   com o zoom de hover). Reverter: apagar este bloco + remover o script do HTML.
   ========================================================================== */
body.theme-light .product-image,
body.theme-light .cat-img-box,
body.theme-light .mosaic-item,
body.theme-light .lifestyle-item,
body.theme-light .editorial-media { position: relative; }

body.theme-light .product-image::after,
body.theme-light .cat-img-box::after,
body.theme-light .mosaic-item::after,
body.theme-light .lifestyle-item::after,
body.theme-light .editorial-media::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(100deg, #ece6dd 25%, #f7f3ec 50%, #ece6dd 75%);
    background-size: 220% 100%;
    animation: gemsShimmer 1.4s ease-in-out infinite;
    transition: opacity 0.5s ease;
}
/* Quando a imagem carrega, o shimmer some (revela a foto suavemente). */
body.theme-light .product-image.img-pronta::after,
body.theme-light .cat-img-box.img-pronta::after,
body.theme-light .mosaic-item.img-pronta::after,
body.theme-light .lifestyle-item.img-pronta::after,
body.theme-light .editorial-media.img-pronta::after {
    opacity: 0;
}
@keyframes gemsShimmer {
    0%   { background-position: 220% 0; }
    100% { background-position: -220% 0; }
}
@media (prefers-reduced-motion: reduce) {
    body.theme-light .product-image::after,
    body.theme-light .cat-img-box::after,
    body.theme-light .mosaic-item::after,
    body.theme-light .lifestyle-item::after,
    body.theme-light .editorial-media::after { animation: none; }
}
/* ====================== FIM DO BLOCO 4 ================================== */

/* ==========================================================================
   CONTA — ABAS SEM RELOAD (account.html unificada)
   A sidebar alterna .account-view via script-account-tabs.js. Só uma fica
   .ativa por vez. .account-view só existe na loja (conta); admin não usa.
   ========================================================================== */
.account-view { display: none; }
.account-view.ativa { display: block; animation: fadeIn 0.35s ease; }

/* ==========================================================================
   POLIMENTO VISUAL — ADICIONAR ENDEREÇO (account.html #form-endereco-box)
   Só aparência. Escopado na loja + no formulário. Usa !important pontual pra
   vencer os estilos inline do HTML (não altera comportamento/IDs/JS).
   ========================================================================== */
/* Caixa do formulário: acento dourado no topo + raio suave. */
body.theme-light #form-endereco-box {
    border-top: 3px solid var(--gold-primary);
    border-radius: 12px;
}
body.theme-light #form-endereco-box .form-inner-title {
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

/* CEP: input + botão de busca alinhados e premium. */
body.theme-light #form-endereco-box #end-cep {
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 12px 14px !important;
}
body.theme-light #form-endereco-box #end-cep:focus {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}
body.theme-light #form-endereco-box #btn-buscar-cep {
    background: #000 !important;
    color: var(--gold-primary) !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
body.theme-light #form-endereco-box #btn-buscar-cep:hover {
    background: var(--gold-primary) !important;
    color: #000 !important;
}

/* Caixa dos dados do ViaCEP: cartão mais limpo. */
body.theme-light #form-endereco-box .locked-address-data {
    border-radius: 10px !important;
    border-color: #ececec !important;
}

/* Cartões "Casa / Trabalho": hover + ESTADO SELECIONADO (faltava feedback). */
body.theme-light #form-endereco-box .type-card {
    border-radius: 10px !important;
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}
body.theme-light #form-endereco-box .type-card:hover {
    border-color: var(--gold-light) !important;
    transform: translateY(-2px);
}
body.theme-light #form-endereco-box .type-card:has(input:checked) {
    border-color: var(--gold-primary) !important;
    background: rgba(197,160,89,0.08) !important;
    box-shadow: 0 8px 22px rgba(197,160,89,0.18) !important;
}
body.theme-light #form-endereco-box .type-card:has(input:checked) i {
    color: var(--gold-primary) !important;
}
body.theme-light #form-endereco-box .type-card:has(input:checked) span {
    color: var(--text-dark) !important;
}

/* Botão "Salvar no cofre" e cancelar: respiro coerente no rodapé. */
body.theme-light #form-endereco-box .form-footer-premium { gap: 12px; }

/* ==========================================================================
   FIX: botões/gaveta de filtro do CATÁLOGO são MOBILE-only.
   A regra de EXIBIR vive no mobile.css (carregado só <=768px); no desktop o
   mobile.css nem carrega, então sem este hide eles vazavam na tela grande
   (mesmo padrão do hambúrguer do admin, Wave 73d). Mesma especificidade do
   mobile.css → no mobile a regra @media de exibir, que vem depois, ainda vence.
   ========================================================================== */
.btn-mobile-filter,
.catalog-filter-backdrop,
.mobile-filter-drawer-head,
.mobile-filter-actions {
    display: none;
}

/* ==========================================================================
   FLUIDEZ — FASE 1: VIEW TRANSITIONS API (cross-document)
   Transição suave entre as páginas (home→catálogo→produto→carrinho→checkout),
   eliminando o "flash branco" da navegação multi-página. É progressive
   enhancement puro: navegadores sem suporte ignoram o @view-transition e caem
   na navegação normal — zero quebra. Respeita prefers-reduced-motion.
   Obs: como admin.html/admin-login.html também carregam este style.css, o
   fade também vale lá (efeito inofensivo login→painel).
   ========================================================================== */
@view-transition {
    navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: 0.32s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
::view-transition-old(root) {
    animation-name: gems-vt-fade-out;
}
::view-transition-new(root) {
    animation-name: gems-vt-fade-in;
}

@keyframes gems-vt-fade-out {
    from { opacity: 1; transform: translateY(0); }
    to   { opacity: 0; transform: translateY(-6px); }
}
@keyframes gems-vt-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Acessibilidade: sem movimento pra quem pediu menos animação (corte seco). */
@media (prefers-reduced-motion: reduce) {
    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none;
    }
}

/* ==========================================================================
   FLUIDEZ — FASE 3: SKELETONS (placeholders enquanto o fetch resolve)
   Reserva o espaço do conteúdo ANTES dos dados chegarem, com shimmer (mesmo
   visual da Wave 82), eliminando o "pop"/layout-shift de conteúdo aparecendo
   em pedaços. Escopado na loja (body.theme-light), igual ao resto.
   - Skeleton card: a .product-image vazia (sem <img>) já herda o shimmer do
     Bloco 4; aqui só desenhamos as barras de título/preço.
   - PDP: o palco da imagem (#pdp-imagem começa com src vazio) ganha shimmer
     próprio via .pdp-img-loading, controlado pelo script-pdp.js.
   ========================================================================== */
body.theme-light .gems-skel {
    background: linear-gradient(100deg, #ece6dd 25%, #f7f3ec 50%, #ece6dd 75%);
    background-size: 220% 100%;
    animation: gemsShimmer 1.4s ease-in-out infinite;
    border-radius: 6px;
}
body.theme-light .gems-skel-card { pointer-events: none; }
body.theme-light .gems-skel-line {
    height: 13px;
    margin: 10px auto;
}

/* PDP: shimmer no palco da imagem enquanto a foto não chega. */
body.theme-light .pdp-main-img-box.pdp-img-loading { position: relative; overflow: hidden; }
body.theme-light .pdp-main-img-box.pdp-img-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(100deg, #ece6dd 25%, #f7f3ec 50%, #ece6dd 75%);
    background-size: 220% 100%;
    animation: gemsShimmer 1.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    body.theme-light .gems-skel,
    body.theme-light .pdp-main-img-box.pdp-img-loading::after { animation: none; }
}

/* ==========================================================================
   FLUIDEZ — FASE 4/5: SCROLL-REVEAL (o site "se desenhando" ao descer)
   O estado inicial escondido SÓ vale quando o JS liga html.gems-reveal-on
   (ver core.js bloco 6). Sem JS / sem IntersectionObserver = visível normal.
   Quando o bloco entra na viewport, ganha .is-visible e sobe suave.
   ========================================================================== */
html.gems-reveal-on body.theme-light .gems-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    /* Otimização de Performance (Evita travamentos de scroll) */
    will-change: opacity, transform;
    backface-visibility: hidden; /* Força renderização na GPU */
}
html.gems-reveal-on body.theme-light .gems-reveal.is-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    html.gems-reveal-on body.theme-light .gems-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ==========================================================================
   FLUIDEZ — FASE 5: PDP "reveal de luxo"
   A caixa de compra (preço/botões) entra escondida via .pdp-loading (já no
   markup do product.html → sem flash) e se revela junta quando os dados
   chegam (script-pdp.js remove .pdp-loading). O palco da imagem tem shimmer
   próprio (.pdp-img-loading). Resultado: o produto "abre pronto".
   ========================================================================== */
body.theme-light .product-page-prime.pdp-loading .pdp-buy-box {
    opacity: 0;
    transform: translateY(16px);
}
body.theme-light .pdp-buy-box {
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
    body.theme-light .product-page-prime.pdp-loading .pdp-buy-box {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   FLUIDEZ — CORTINA DO PDP ("loading page" de luxo)
   Overlay creme que cobre a tela enquanto o fetch do produto resolve.
   Aparece junto com o paint inicial (sem flash branco — fundo = #FDFDFD,
   igual ao palco da imagem). Some com fade elegant quando .gems-pdp-curtain--saindo
   é adicionada pelo script-pdp.js. Escopado na loja (body.theme-light).
   Fail-safe de 8s no JS garante que nunca trava a página.
   Reverter: apagar este bloco + o <div id="gems-pdp-curtain"> do product.html.
   ========================================================================== */
body.theme-light #gems-pdp-curtain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FDFDFD;
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: all;
}

body.theme-light #gems-pdp-curtain.gems-pdp-curtain--saindo {
    opacity: 0;
    pointer-events: none;
}

body.theme-light #gems-pdp-curtain.gems-pdp-curtain--fora {
    display: none;
}

body.theme-light .gems-pdp-curtain-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    user-select: none;
}

body.theme-light .gems-pdp-curtain-inner i {
    font-size: 2.8rem;
    color: var(--gold-primary, #C5A059);
    animation: gemsPdpPulse 1.8s ease-in-out infinite;
}

body.theme-light .gems-pdp-curtain-inner span {
    font-family: var(--font-heading, Georgia, serif);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #b0a090;
}

/* Linha decorativa dourada sob o texto */
body.theme-light .gems-pdp-curtain-inner::after {
    content: '';
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary, #C5A059), transparent);
    animation: gemsPdpPulse 1.8s ease-in-out infinite;
}

@keyframes gemsPdpPulse {
    0%, 100% { opacity: 1;   transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.94); }
}

@media (prefers-reduced-motion: reduce) {
    body.theme-light .gems-pdp-curtain-inner i,
    body.theme-light .gems-pdp-curtain-inner::after { animation: none; }
    body.theme-light #gems-pdp-curtain { transition: none; }
}
/* =================== FIM DA CORTINA DO PDP ================================ */
