/* ===========================================
   KI MEL - CSS PRINCIPAL
   Mobile First Design
   Tema Lilas/Roxo Profissional
   =========================================== */

/* 1. RESET E VARIÁVEIS */
:root {
    /* Cores principais - Tema Lilas/Roxo */
    --primary-color: #8A2BE2;
    --primary-dark: #7B1FA2;
    --primary-light: #E6D4F2;
    
    --secondary-color: #9370DB;
    --secondary-dark: #8367C7;
    --secondary-light: #EFE8FF;
    
    /* Cores de status */
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    --info-color: #2196F3;
    
    /* Cores neutras */
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #333333;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    
    /* Espaçamentos */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    
    /* Bordas */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-primary: 0 4px 12px rgba(138, 43, 226, 0.2);
    
    /* Tipografia */
    --font-size-xs: 0.75rem;   /* 12px */
    --font-size-sm: 0.875rem;  /* 14px */
    --font-size-base: 1rem;    /* 16px */
    --font-size-lg: 1.125rem;  /* 18px */
    --font-size-xl: 1.25rem;   /* 20px */
    --font-size-2xl: 1.5rem;   /* 24px */
    --font-size-3xl: 1.75rem;  /* 28px */
    
    /* Transições */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: var(--font-size-base);
    line-height: 1.5;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 2. TIPOGRAFIA */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--space-sm);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }

p {
    margin-bottom: var(--space-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/* 3. LAYOUT E CONTAINERS */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

/* 4. HEADER */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    gap: var(--space-sm);
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary-color);
    font-weight: 700;
}

.logo i {
    font-size: var(--font-size-xl);
}

/* 5. NAVEGAÇÃO MOBILE-FIRST */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--font-size-xl);
    color: var(--dark-gray);
    padding: var(--space-xs);
    cursor: pointer;
    z-index: 1001;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Botões de ação */
.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    color: var(--dark-gray);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.action-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--danger-color);
    color: var(--white);
    font-size: var(--font-size-xs);
    min-width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Menu do usuário */
.user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    z-index: 1000;
    margin-top: var(--space-xs);
    border: 1px solid var(--border-color);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    color: var(--dark-gray);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.user-dropdown a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    padding-left: var(--space-md);
}

.user-dropdown a:last-child {
    border-bottom: none;
}

/* 6. HERO SECTION */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-light);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: var(--font-size-2xl);
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.hero p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 300px;
    margin: 0 auto;
}

/* 7. BOTÕES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    min-height: 44px; /* Tamanho mínimo para toque */
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-sm {
    padding: var(--space-xs) var(--space-sm);
    font-size: var(--font-size-sm);
    min-height: 36px;
}

/* 8. GRID DE PRODUTOS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 3rem;
}

.product-info {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    color: var(--gray);
    font-size: var(--font-size-sm);
    line-height: 1.4;
    margin-bottom: var(--space-sm);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    margin-top: auto;
}

/* Container preço + quantidade */
.price-quantity-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    flex: 1;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: var(--font-size-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-input {
    width: 45px;
    height: 36px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    background: var(--white);
}

.btn-add-cart {
    width: 100%;
    margin-top: var(--space-xs);
}

/* 9. CARRINHO */
.cart-container {
    padding: var(--space-lg) 0;
    min-height: calc(100vh - 200px);
}

.cart-items {
    margin-bottom: var(--space-lg);
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    box-shadow: var(--shadow-sm);
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

.cart-item-info h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-base);
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.remove-btn {
    background: var(--danger-color);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    margin-left: var(--space-xs);
    transition: background var(--transition-base);
}

.remove-btn:hover {
    background: #D32F2F;
}

.cart-item-subtotal {
    font-weight: 700;
    color: var(--black);
    font-size: var(--font-size-lg);
}

.cart-summary {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border-bottom: none;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
}

.empty-cart {
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: var(--space-md);
}

/* 10. CATEGORIAS */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.category-card {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    border: 1px solid var(--border-color);
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.category-card h3 {
    font-size: var(--font-size-base);
    color: var(--black);
    margin: 0;
}

/* 11. FOOTER */
.footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: var(--space-xl);
    border-top: 4px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-section h3 i {
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.footer-section a {
    color: var(--white);
    opacity: 0.8;
    display: block;
    margin-bottom: var(--space-xs);
    transition: all var(--transition-base);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: var(--space-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: var(--font-size-sm);
}

/* 12. FORMULÁRIOS */
.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--dark-gray);
}

.form-control {
    width: 100%;
    padding: var(--space-sm);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-control:disabled {
    background: var(--light-gray);
    cursor: not-allowed;
}

/* 13. NOTIFICAÇÕES */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    color: var(--white);
    z-index: 10000;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    max-width: 90%;
}

.notification-success {
    background: var(--success-color);
}

.notification-error {
    background: var(--danger-color);
}

.notification-warning {
    background: var(--warning-color);
}

.notification-info {
    background: var(--info-color);
}

/* 14. UTILITÁRIOS */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* 15. ANIMAÇÕES */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* 16. RESPONSIVIDADE - MOBILE FIRST */

/* Telas pequenas (360px - 480px) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--space-xs);
    }
    
    .header-content {
        padding: var(--space-xs) 0;
    }
    
    .logo a {
        font-size: var(--font-size-lg);
    }
    
    .hero {
        padding: var(--space-lg) 0;
    }
    
    .hero h2 {
        font-size: var(--font-size-xl);
    }
    
    .hero p {
        font-size: var(--font-size-base);
    }
    
    .hero-buttons .btn {
        padding: var(--space-sm);
    }
    
    .section {
        padding: var(--space-lg) 0;
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .product-card {
        margin-bottom: 0;
    }
    
    .price-quantity-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: var(--space-xs);
        padding: var(--space-sm);
    }
    
    .cart-item-quantity {
        justify-content: flex-start;
    }
    
    .cart-item-subtotal {
        text-align: right;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions .access-btn span,
    .user-info span {
        display: none;
    }
    
    .action-btn {
        width: 36px;
        height: 36px;
    }
}

/* Telas muito pequenas (menos que 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 8px;
    }
    
    .logo a {
        font-size: var(--font-size-base);
    }
    
    .logo i {
        font-size: var(--font-size-lg);
    }
    
    .hero h2 {
        font-size: var(--font-size-lg);
    }
    
    .hero p {
        font-size: var(--font-size-sm);
    }
    
    .btn {
        padding: 10px 16px;
        font-size: var(--font-size-sm);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .product-price {
        font-size: var(--font-size-lg);
    }
    
    .summary-row.total {
        font-size: var(--font-size-lg);
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        min-width: 180px;
    }
}

/* Desktops (769px+) */
@media (min-width: 769px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        min-width: 200px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Telas grandes (1200px+) */
@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 17. ESTADOS DE CARREGAMENTO */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* 18. ACESSIBILIDADE */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* 19. ESTILOS PARA FORMULÁRIOS DE PAGAMENTO */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.payment-method {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

/* 20. ESTILOS PARA MENSAGENS */
.alert {
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    border-color: var(--success-color);
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border-color: var(--danger-color);
    color: #721c24;
}

.alert-warning {
    background: #fff3cd;
    border-color: var(--warning-color);
    color: #856404;
}

.alert-info {
    background: #d1ecf1;
    border-color: var(--info-color);
    color: #0c5460;
}