.elementor-247 .elementor-element.elementor-element-d29839c{--display:flex;}.elementor-247 .elementor-element.elementor-element-40b34ec{width:100%;max-width:100%;border-style:none;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-40b34ec */:root {
            --primary-navy: #0a2540;
            --accent-orange: #ff6b35;
            --text-dark: #333333;
            --bg-light: #f4f7f6;
            --white: #ffffff;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
        }

        /* HEADER (Same as Home for Consistency) */
        .main-header {
            background-color: var(--white);
            padding: 15px 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* AJUSTE DE TAMANHO DO LOGO EM IMAGEM */
        .site-logo {
            max-height: 50px;
            /* Você pode aumentar ou diminuir esse valor para ajustar o tamanho */
            width: auto;
            display: block;
        }

        /* Garante que o container se alinhe corretamente com a imagem */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo-icon {
            color: var(--accent-orange);
            margin-right: 8px;
            font-size: 28px;
        }

        /* PAGE TITLE */
        .shop-header {
            text-align: center;
            padding: 60px 20px;
            background-color: var(--primary-navy);
            color: var(--white);
        }

        .shop-header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .shop-header p {
            font-weight: 300;
            opacity: 0.8;
        }

        /* PRODUCT GRID */
        .product-grid {
            max-width: 1100px;
            margin: -40px auto 60px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-badge {
            background: var(--accent-orange);
            color: white;
            padding: 5px 15px;
            font-size: 12px;
            font-weight: 700;
            position: absolute;
            top: 15px;
            left: 15px;
            border-radius: 20px;
        }

        .product-image {
            height: 200px;
            background-color: #eee;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
        }

        .product-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-info h3 {
            margin: 0 0 15px;
            font-size: 1.4rem;
            color: var(--primary-navy);
            line-height: 1.3;
        }

        .product-info p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .shop-now-btn {
            background-color: var(--primary-navy);
            color: var(--white);
            text-align: center;
            padding: 12px;
            text-decoration: none;
            font-weight: 600;
            border-radius: 6px;
            transition: background 0.3s;
            margin-top: auto;
        }

        .shop-now-btn:hover {
            background-color: var(--accent-orange);
        }

        /* HIDE WP ELEMENTS */
        header:not(.main-header),
        footer,
        .site-footer {
            display: none !important;
        }

        @media (max-width: 768px) {
            .product-grid {
                grid-template-columns: 1fr;
                margin-top: 20px;
            }

            .shop-header h1 {
                font-size: 1.8rem;
            }
        }/* End custom CSS */