/*
 * Custom CSS for Nexus Cart Orderform
 *
 * This file allows you to customize the theme colors and styles for the Nexus Cart orderform.
 *
 * To customize colors:
 * - Replace the var() references with your own hex colors or other CSS values.
 * - For example, instead of --vl-primary: var(--zinc-900); use --vl-primary: #your-color;
 * - You can also override any CSS properties here.
 *
 * Note: Changes here will apply to the orderform's Shadow DOM.
 */

/* Add you custom styles here */
:host, :root {
    /* Primary colors */
    --vl-primary: var(--primary);
    --vl-primary-lifted: var(--primary-lifted);
    --vl-primary-accented: var(--primary-accented);

    /* Secondary colors */
    --vl-secondary: var(--secondary);
    --vl-secondary-lifted: var(--secondary-lifted);
    --vl-secondary-accented: var(--secondary-accented);

    /* Success colors */
    --vl-success: var(--success);
    --vl-success-lifted: var(--success-lifted);
    --vl-success-accented: var(--success-accented);

    /* Info colors */
    --vl-info: var(--info);
    --vl-info-lifted: var(--info-lifted);
    --vl-info-accented: var(--info-accented);

    /* Notice colors */
    --vl-notice: var(--notice);
    --vl-notice-lifted: var(--notice-lifted);
    --vl-notice-accented: var(--notice-accented);

    /* Warning colors */
    --vl-warning: var(--warning);
    --vl-warning-lifted: var(--warning-lifted);
    --vl-warning-accented: var(--warning-accented);

    /* Error colors */
    --vl-error: var(--error);
    --vl-error-lifted: var(--error-lifted);
    --vl-error-accented: var(--error-accented);

    /* Grayscale colors */
    --vl-grayscale: var(--grayscale);
    --vl-grayscale-lifted: var(--grayscale-lifted);
    --vl-grayscale-accented: var(--grayscale-accented);

    /* Neutral colors */
    --vl-neutral: var(--neutral);
    --vl-neutral-lifted: var(--neutral-lifted);
    --vl-neutral-accented: var(--neutral-accented);

    /* Text neutral colors */
    --vl-text-inverted: var(--text-inverted);
    --vl-text-muted: var(--text-muted);
    --vl-text-lifted: var(--text-lifted);
    --vl-text-accented: var(--text-accented);
    --vl-text: var(--text);

    /* Border neutral colors */
    --vl-border-muted: var(--border-muted);
    --vl-border: var(--border);
    --vl-border-lifted: var(--border-lifted);
    --vl-border-accented: var(--border-accented);

    /* Background neutral colors */
    --vl-bg: var(--bg);
    --vl-bg-muted: var(--bg-muted);
    --vl-bg-lifted: var(--bg-lifted);
    --vl-bg-accented: var(--bg-accented);
    --vl-bg-inverted: var(--bg-inverted);

    /* Additional custom properties */
    /* Font Sizes */
    --vl-text-xs: var(--text-xs);
    --vl-text-sm: var(--text-sm);
    --vl-text-md: var(--text-md);
    --vl-text-lg: var(--text-lg);

    /* Spacing */
    --vl-outline-sm: var(--outline-sm);
    --vl-outline-md: var(--outline-md);
    --vl-outline-lg: var(--outline-lg);

    /* Rounding */
    --vl-rounding-sm: var(--rounding-sm);
    --vl-rounding-md: var(--rounding-md);
    --vl-rounding-lg: var(--rounding-lg);

    /* Other */
    --vl-letter-spacing: var(--letter-spacing);
    --vl-disabled-opacity: var(--disabled-opacity);
}


:host, :root {
    --vl-rounding-sm: 12px;
    --vl-rounding-md: 18px;
    --vl-rounding-lg: 24px;

    --vl-primary: #0057b7;
    --vl-primary-lifted: #2d7be7;
    --vl-primary-accented: #003f88;

    --vl-secondary: #0f172a;
    --vl-secondary-lifted: #1e293b;
    --vl-secondary-accented: #0b1220;

    --vl-bg: #f4f7fb;
    --vl-bg-muted: #eef3f8;
    --vl-bg-lifted: #ffffff;
    --vl-bg-accented: #eaf2ff;
    --vl-bg-inverted: #0f172a;

    --vl-border: #dbe5f0;
    --vl-border-lifted: #cfd9e5;
    --vl-border-accented: #b8cae0;
    --vl-border-muted: #e8eef5;

    --vl-text: #223548;
    --vl-text-lifted: #425466;
    --vl-text-accented: #0f2740;
    --vl-text-muted: #6b7c93;
    --vl-text-inverted: #ffffff;

    --vl-outline-sm: 2px;
    --vl-outline-md: 3px;
    --vl-outline-lg: 4px;
}

/* página do domínio */
.segue-order-domain-page {
    background: #f4f7fb;
    padding: 32px 0 56px;
}

.segue-order-domain-shell {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.segue-order-domain-header {
    margin-bottom: 28px;
}

.segue-order-domain-header h1 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #223548;
    margin: 0 0 10px;
}

.segue-order-domain-header p {
    font-size: 17px;
    color: #6b7c93;
    margin: 0;
}

/* garante que o módulo ocupe o centro */
#order-standard_cart {
    padding: 0 !important;
    background: transparent !important;
}

/* refinamento visual global do nexus cart */
#nexus-root {
    --vl-shadow-card: 0 12px 30px rgba(15, 39, 64, 0.08);
}