/* ==========================================================================
   CONFIGURAÇÕES GERAIS E RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #080808; /* Fundo padrão escuro, mas permite transparência se definido no HTML */
    color: #ffffff;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Remover barra de rolagem mas manter funcionalidade */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================================================
   HEADER E NAVEGAÇÃO
   ========================================================================== */
.header-main {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ==========================================================================
   GRID DE PRODUTOS (2x2 Mobile / 4x4 Desktop)
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colunas no mobile */
    gap: 12px;
    padding: 5px 0;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 colunas no PC */
        gap: 20px;
    }
}

/* ==========================================================================
   CARDS DE PRODUTO (GLASSMORPHISM)
   ========================================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
}

.glass-card:hover {
    border-color: rgba(255, 0, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 255, 0.1);
}

.product-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.product-price {
    font-size: 18px;
    font-weight: 900;
    color: #FF00FF;
    letter-spacing: -0.5px;
}

.pix-text {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ==========================================================================
   BOTÃO DE COMPRA (O "CAPETA" DO BOTÃO CORRIGIDO)
   ========================================================================== */
.btn-buy {
    width: 100%;
    background: linear-gradient(135deg, #FF00FF 0%, #800080 100%);
    color: #000;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 10px 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borda que você pediu */
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.btn-buy:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.5);
}

.btn-buy i {
    font-size: 14px;
}

/* ==========================================================================
   CATEGORIAS E ELEMENTOS VISUAIS
   ========================================================================== */
.category-step {
    background: #FF00FF;
    color: #000;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.category-circle-box {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: 0.3s;
}

.category-circle-box:hover {
    border-color: #FF00FF;
    background: rgba(255, 0, 255, 0.05);
}