/** Shopify CDN: Minification failed

Line 730:0 Unexpected "}"
Line 754:0 Unexpected "}"

**/
/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #00ff41;
    --dark-green: #00cc34;
    --light-green: #4dff7f;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
}

/* Header */
.header {
    background: var(--black);
    border-bottom: 2px solid var(--primary-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; 
}

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

.logo img {
    height: 50px;
    width: auto;
}

/* Agrupamento de Menu e Ícones (Desktop) */
.nav-menu-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* MENU DE LINKS (DESKTOP) */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
    border-bottom: 2px solid var(--primary-green);
}

/* ÍCONES DE AÇÃO (PERFIL E CARRINHO) */
.nav-icons-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon-link,
.profile-icon-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
}

.cart-count {
    background: var(--primary-green);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    position: absolute;
    top: -5px;
    right: -2px;
}

/* MENU SANDUÍCHE (CONTROLES) */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-green);
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--primary-green);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--black);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.section-title span {
    color: var(--primary-green);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
    display: block;
}

.product-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: var(--medium-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-placeholder {
    font-size: 3rem;
    color: var(--primary-green);
}

.product-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-description {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.product-price-old {
    text-decoration: line-through;
    color: #888888;
    font-size: 1rem;
    margin-left: 0.5rem;
}

/* Categories */
.categories {
    display: grid;
    /* Layout de 4 colunas para desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    position: relative;
    overflow: hidden; 
    min-height: 250px;
    padding: 0;
    text-align: center;
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}

.category-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

/* Wrapper da Imagem */
.category-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay para garantir que o texto fique legível sobre a imagem */
.category-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

/* Garante que o texto seja legível e centralizado */
.category-card h3,
.category-card p {
    color: var(--white);
    text-shadow: 0 0 5px var(--black);
    margin: 0;
    position: relative; 
}

.category-card .category-name {
    font-size: 1.5rem;
}

.category-card .category-description {
    font-size: 1rem;
    margin-top: 0.5rem;
}

.category-name {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-detail-price {
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-detail-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #cccccc;
}

.product-features {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--medium-gray);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 5px;
    color: var(--white);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    background: var(--dark-gray);
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #cccccc;
}

/* Stats (Layout Mobile/Padrão) */
.stats {
    display: grid;
    /* Padrão para mobile/tela pequena: 1 coluna */
    grid-template-columns: 1fr; 
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 769px) {
    /* Stats: Layout de Desktop (4 Colunas) */
    .stats {
        grid-template-columns: repeat(4, 1fr); /* CORREÇÃO: FORÇA 4 COLUNAS */
    }
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-card p {
    color: #cccccc;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 2px solid var(--primary-green);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    /* CORREÇÃO: Define 4 colunas fixas para desktop */
    grid-template-columns: repeat(4, 1fr); 
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: #888888;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #cccccc;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary-green);
}

.breadcrumb span {
    color: #888888;
}

/* Filters */
.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: var(--black);
    border-color: var(--primary-green);
}

/* Responsive */
@media (max-width: 768px) {
    #categories-content {
        display: none; /* Conteúdo oculto até que o botão seja clicado */
        
        /* Garante que os cards empilhem no mobile */
        grid-template-columns: 1fr;
    }
    /* 2. MOSTRA O BOTÃO TOGGLE NO MOBILE */
    .mobile-categories-toggle {
        display: block !important;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    /* 3. EXIBIÇÃO APÓS O CLIQUE (Classe adicionada pelo JS) */
    #categories-content.active-accordion {
        display: grid !important; /* Mostra a grade de categorias */
    }
}


    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .product-detail,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
.footer-content {
        /* Define 2 colunas para tablet, ou 1fr para que o 'auto-fit' empilhe */
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    }

    @media (max-width: 480px) {

    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
    .hero h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories {
        grid-template-columns: 1fr;
    }
}

/* CTA Centralization */
.cta-section .container {
    text-align: center;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-section .btn {
    margin: 0 auto;
}

/* HEADER FLEX AND ICONS */
.nav-menu-group {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-icons-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-icon-link,
.profile-icon-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.8rem;
    position: relative;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
}

.cart-count {
    background: var(--primary-green);
    color: var(--black);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    text-align: center;
    line-height: 18px;
    position: absolute;
    top: -5px;
    right: -2px;
}

/* MENU SANDUÍCHE (LÓGICA CSS) */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-green);
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

/* MOBILE VIEW (< 769px): REORGANIZAÇÃO E SLIDE LATERAL */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: nowrap;
    }

    .menu-icon {
        display: block;
        order: 3;
    }
    
    .nav-icons-group {
        order: 1;
        margin-right: auto;
        gap: 1rem;
    }

    .nav-menu-group {
        display: flex;
        flex-direction: column;
        width: 80%;
        order: 4;
        position: fixed;
        top: 60px;
        left: 0;
        height: 100vh;
        background: var(--dark-gray);
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease-out;
        z-index: 9999;
    }
    
    .menu-toggle:checked ~ .nav-menu-group {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        padding-left: 2rem;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
}
/* Stats: Layout de Desktop (4 Colunas) */
@media (min-width: 769px) {
    
    /* 1. OCULTA O BOTÃO MOBILE NO DESKTOP */
    .mobile-categories-toggle {
        display: none !important;
    }
    
    /* 2. RESTAURA O LAYOUT DA GRADE */
    .categories {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        max-height: none !important; /* Garante que não fique escondido */
    }
    
    /* 3. Garante que o container principal também esteja visível */
    #categories-content {
        display: grid !important; 
        max-height: none !important;
        overflow: visible !important;
    }
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* CORREÇÃO PARA CATEGORIAS (ESSENCIAL) */
    .categories {
        display: grid !important; /* Garante que é uma grade */
        grid-template-columns: repeat(4, 1fr) !important; /* Força 4 colunas */
        gap: 1.5rem;
    }
}
.breadcrumb {
    display: none !important;
}
