/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.5
	Stable tag: 3.4.5
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/























/*
Theme Name: Papelaria Premium Child
Description: Design System com Glassmorphism e Variaveis Globais
Template: hello-elementor
*/

:root {
    /* --- Paleta de Cores Engenharia & Papelaria --- */
    --primary: #2C3E50;      /* Azul Petróleo (Profissional) */
    --accent: #FF6B6B;       /* Coral (Ação/Compra) */
    --soft-purple: #A29BFE;  /* Lilás (Criativo) */
    --bg-body: #F0F2F5;      /* Cinza Gelo (Fundo) */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

body {
    background-color: var(--bg-body);
    font-family: 'Inter', sans-serif; /* Certifique-se de ter a fonte */
}

/* --- MÓDULO 1: Glassmorphism Global --- */
.glass-panel, 
.woocommerce ul.products li.product,
.elementor-widget-container {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- MÓDULO 2: Card de Produto Inteligente --- */
.woocommerce ul.products li.product {
    padding: 20px !important;
    text-align: center;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #fff;
}

.woocommerce ul.products li.product img {
    border-radius: 12px;
    margin-bottom: 15px !important;
    mix-blend-mode: multiply; /* Remove fundo branco chato das fotos */
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    min-height: 2.5em; /* Alinha alturas */
}

.woocommerce ul.products li.product .price {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 15px;
}

/* Botão Comprar Engenheirado */
.woocommerce ul.products li.product .button {
    background: var(--primary) !important;
    color: #fff !important;
    width: 100%;
    border-radius: 8px !important;
    padding: 12px !important;
    font-weight: 500;
    transition: 0.2s;
}

.woocommerce ul.products li.product .button:hover {
    background: var(--accent) !important;
    transform: scale(1.02);
}

/* --- MÓDULO 3: Filtros Laterais (Widget) --- */
.widget_layered_nav ul, .widget_product_categories ul {
    padding: 0;
    list-style: none;
}

.widget_layered_nav li, .widget_product_categories li {
    background: #fff;
    margin-bottom: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s;
}

.widget_layered_nav li:hover, .widget_product_categories li:hover {
    border-color: var(--soft-purple);
    background: #fdfdfd;
}

/* Bolinha de contagem */
.count {
    background: var(--bg-body);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #666;
}

/* --- MÓDULO 4: Header & Menu --- */
/* Corrige o menu do Elementor para ser Clean */
.elementor-nav-menu--main .elementor-item {
    font-weight: 500;
    color: var(--primary) !important;
}
.elementor-nav-menu--main .elementor-item:hover {
    color: var(--accent) !important;
}