/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

/* Custom CSS for Nexus Cart
 *
 * This block allows you to customize theme colors and styles for the entire Nexus Cart template.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --primary: #4b5563; use --primary: #your-color;
 * - You can also override any CSS properties here.
 */

html {
    font-size: 14px;
}

:root {
    --white: #fff;

    /* Neutral shades */
    --neutral-50: #fbf9fa;
    --neutral-100: #f4f5f7;
    --neutral-200: #e4e4e7;
    --neutral-300: #d0d5dd;
    --neutral-400: #9ca3af;
    --neutral-500: #6b7280;
    --neutral-600: #4b5563;
    --neutral-700: #374151;
    --neutral-800: #1f2937;
    --neutral-900: #111827;
    --neutral-950: #030712;

    /* Neutral shades */
    /* define own pallet with brand colors */
    --primary-50: var(--neutral-50);
    --primary-100: var(--neutral-100);
    --primary-200: var(--neutral-200);
    --primary-300: var(--neutral-300);
    --primary-400: var(--neutral-400);
    --primary-500: var(--neutral-500);
    --primary-600: var(--neutral-600);
    --primary-700: var(--neutral-700);
    --primary-800: var(--neutral-800);
    --primary-900: var(--neutral-900);
    --primary-950: var(--neutral-900);

    /* Primary colors */
    /* Use shades from comments if `primary` colors use other colors, then neutral */
    --primary: var(--neutral-900);          /* var(--primary-600) */
    --primary-lifted: var(--neutral-800);   /* var(--primary-700) */
    --primary-accented: var(--neutral-700); /* var(--primary-800) */

    /* Secondary colors */
    --secondary: var(--neutral-500);
    --secondary-lifted: var(--neutral-600);
    --secondary-accented: var(--neutral-700);

    /* Success colors */
    --success: #00a63e;
    --success-lifted: #008236;
    --success-accented: #016630;

    /* Info colors */
    --info: #155dfc;
    --info-lifted: #1447e6;
    --info-accented: #193cb8;

    /* Notice colors */
    --notice: #7f22fe;
    --notice-lifted: #7008e7;
    --notice-accented: #5d0ec0;

    /* Warning colors */
    --warning: #f54a00;
    --warning-lifted: #ca3500;
    --warning-accented: #9f2d00;

    /* Error colors */
    --error: #e7000b;
    --error-lifted: #c10007;
    --error-accented: #9f0712;

    /* Grayscale colors */
    --grayscale: var(--neutral-900);
    --grayscale-lifted: var(--neutral-800);
    --grayscale-accented: var(--neutral-700);

    /* Neutral colors */
    --neutral: var(--neutral-500);
    --neutral-lifted: var(--neutral-600);
    --neutral-accented: var(--neutral-700);

    /* Text neutral colors */
    --text-inverted: var(--white);
    --text-muted: var(--neutral-400);
    --text-lifted: var(--neutral-500);
    --text-accented: var(--neutral-600);
    --text: var(--neutral-900);

    /* Border neutral colors */
    --border-muted: var(--neutral-200);
    --border: var(--neutral-300);
    --border-lifted: var(--neutral-400);
    --border-accented: var(--neutral-600);

    /* Background neutral colors */
    --bg: var(--white);
    --bg-muted: var(--neutral-50);
    --bg-lifted: var(--neutral-100);
    --bg-accented: var(--neutral-200);
    --bg-inverted: var(--neutral-900);

    /* Additional colors */
    --yellow-200: #fff085;
    --yellow-300: #ffdf20;
    --teal-300: #46edd5;
    --teal-400: #00d5be;
    --emerald-300: #5ee9b5;
    --pink-400: #fb64b6;

    /* Additional custom properties */
    /* Font sizes */
    --text-xs: 0.625rem;
    --text-sm: 0.75rem;
    --text-md: 0.875rem;
    --text-lg: 1rem;

    /* Spacing */
    --outline-sm: 1px;
    --outline-md: 2px;
    --outline-lg: 3px;

    /* Rounding */
    --rounding-sm: 0.25rem;
    --rounding-md: 0.5rem;
    --rounding-lg: 0.75rem;

    /* Other */
    --letter-spacing: 0em;
    --disabled-opacity: 25%;
}
/* ==========================================================================
   CUSTOMIZAÇÃO CLEAN SAAS - ESTILO ASTRAL (AZUL)
   ========================================================================== */

/* 1. Ajuste do Fundo Geral da Loja */
body, .templates-twenty-one .store-order-container {
    background-color: #f8fafc !important; /* Fundo cinza bem claro e confortável */
}

/* 2. Título Principal (MTA) */
.templates-twenty-one h1, 
.templates-twenty-one h2, 
.templates-twenty-one h3#headline {
    color: #0f172a !important; /* Tom grafite escuro natural */
    font-weight: 700 !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
    text-shadow: none !important;
    margin-bottom: 30px !important;
}

/* 3. Estilização dos Cards (Planos Brancos) */
.templates-twenty-one .product-box,
.templates-twenty-one .card,
.templates-twenty-one [id^="product"] {
    background: #ffffff !important; /* Branco Puro */
    border: 1px solid #e2e8f0 !important; /* Linha de contorno bem fina */
    border-radius: 24px !important; /* Cantos bem arredondados como na foto */
    padding: 25px !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02) !important; /* Sombra sutil */
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

/* Efeito Hover nos Cards */
.templates-twenty-one .product-box:hover,
.templates-twenty-one .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Remove cabeçalhos coloridos ou escuros de dentro dos cards */
.templates-twenty-one .card-header,
.templates-twenty-one .panel-heading {
    background: transparent !important;
    border: none !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 1.4rem !important;
}

/* 4. Texto das Especificações (Slots, Anti-DDoS, etc.) */
.templates-twenty-one .product-box ul,
.templates-twenty-one .product-box li,
.templates-twenty-one .card-body {
    color: #475569 !important; /* Cinza elegante de leitura fluida */
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    background: transparent !important;
}

/* 5. Botão "Ver Produtos" - Azul com Cantos Arredondados */
.templates-twenty-one .btn-order-now,
.templates-twenty-one .btn-signup,
.templates-twenty-one .card .btn {
    background: #0066ff !important; /* Azul vivo moderno */
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important; /* Botão bem arredondado da foto */
    padding: 12px 24px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: background 0.2s, transform 0.1s !important;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.2) !important;
    width: 100% !important;
    display: block !important;
}

.templates-twenty-one .btn-order-now:hover,
.templates-twenty-one .card .btn:hover {
    background: #0052cc !important; /* Tom levemente mais escuro no clique */
}

/* 6. Tag "Popular" - Ajustada para Azul em formato de Pílula */
.templates-twenty-one .tag,
.templates-twenty-one .badge-success,
.templates-twenty-one .popular-tag {
    background: #0066ff !important; /* Mesmo azul do botão */
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 30px !important; /* Formato pílula */
    padding: 6px 14px !important;
    border: none !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
}
/* ==========================================================================
   TRANSFORMAÇÃO STANDARD_CART EM CARDS CLEAN (ESTILO ASTRAL)
   ========================================================================== */

/* 1. Organiza os planos em colunas lado a lado (estilo cards) */
#products, 
.products-container,
.row.product-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
    margin-top: 30px !important;
}

/* 2. Estilização Individual de cada Card (Plano) */
.product-item, 
[id^="product"] {
    background: #ffffff !important; /* Fundo branco puro */
    border: 1px solid #e2e8f0 !important; /* Borda cinza bem fina */
    border-radius: 24px !important; /* Bordas bem arredondadas da foto */
    padding: 30px 20px !important;
    width: 100% !important;
    max-width: 280px !important; /* Força os planos a ficarem verticais */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.02), 0 8px 10px -6px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Centraliza o conteúdo */
    text-align: center !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    position: relative !important;
}

/* Efeito suave ao passar o mouse */
.product-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04) !important;
}

/* 3. Título dos Planos (SAMP Basic, etc.) */
.product-item h3, 
.product-item .header h3,
.product-item h2 {
    color: #0f172a !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    order: 1 !important;
}

/* 4. Lista de Recursos (Vantagens do plano) */
.product-item ul, 
.product-item div[id*="description"],
.product-item .product-desc {
    color: #475569 !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
    order: 2 !important;
    width: 100% !important;
}

/* 5. Bloco de Preço */
.product-item .price-container, 
.product-item .product-pricing {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 15px !important;
    order: 3 !important;
}

/* 6. Botão "Faça seu pedido agora" -> Transformado em "Ver Produtos" Azul */
.product-item .btn,
.product-item .btn-order-now,
.product-item .btn-signup {
    background: #0066ff !important; /* Azul moderno da foto */
    color: #ffffff !important;
    border: none !important;
    border-radius: 14px !important; /* Botão bem arredondado */
    padding: 12px 24px !important;
    font-weight: 600 !important;
    width: 100% !important;
    order: 4 !important;
    transition: background 0.2s !important;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.2) !important;
}

.product-item .btn:hover {
    background: #0052cc !important;
}

/* 7. Tag Popular em formato de Pílula */
.product-item .tag, 
.product-item .badge,
.product-item .qty {
    background: #0066ff !important; /* Mesmo azul */
    color: #ffffff !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
    text-transform: uppercase !important;
    position: absolute !important;
    top: -12px !important;
    right: 20px !important;
    border: none !important;
}

/* Oculta elementos desnecessários da lista antiga para limpar o layout */
.product-item .row, .product-item .col-sm-4, .product-item .col-sm-8 {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* Card Moderno */
.card-astral {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.card-astral:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Botão Estilizado */
.btn-astral {
    display: inline-block;
    padding: 10px 20px;
    background: #6a11cb; /* Substitua pelo seu gradiente */
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 15px;
}
/* Container de grade */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* Card individual */
.card-astral {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

/* --- Personalização dos Cards da Home --- */

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
}

.card-astral {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 30px !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    margin-bottom: 20px;
}

.card-astral:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}

.btn-astral {
    display: inline-block;
    padding: 10px 25px;
    background: #6a11cb !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    margin-top: 15px;
    font-weight: bold;
}
