/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #1A202C;
    /* Cor de fundo principal mais escura, como na referência */
    --bg-card: #2D3748;
    /* Fundo dos cards e elementos */
    --text-primary: #EDF2F7;
    /* Cor do texto principal */
    --text-secondary: #A0AEC0;
    /* Cor do texto secundário (descrições, etc.) */
    --accent-color: #38B2AC;
    /* Verde-água para botões, links, badges e acentos */
    --accent-dark: #2C7A7B;
    /* Versão mais escura do accent para hover */
    --border-color: #4A5568;
    /* Cor da borda mais sutil */
    --gradient-start: #38B2AC;
    /* Início do gradiente para ícones/hover */
    --gradient-end: #3182CE;
    /* Fim do gradiente */

    --secondary: 193 55% 25%;
    --secondary-foreground: 0 0% 95%;

    /* Muted: Tons escuros do azul petróleo */
    --muted: 193 55% 15%;
    --muted-foreground: 185 45% 70%;

    /* Accent: Turquesa */
    --accent: 185 82% 42%;
    --accent-foreground: 0 0% 100%;

    /* Aquarium gradients */
    --gradient-ocean: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    --gradient-coral: linear-gradient(135deg, hsl(var(--cta)), hsl(14 80% 75%));
    --gradient-water: linear-gradient(180deg, hsl(var(--secondary)), hsl(var(--accent)));

    /* Shadows */
    --shadow-card: 0 4px 20px -4px hsl(var(--primary) / 0.1);
    --shadow-hover: 0 8px 30px -8px hsl(var(--primary) / 0.2);
    --shadow-cta: 0 4px 20px -4px hsl(var(--cta) / 0.3);
}

main {
    flex-grow: 1;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    display: flex ;
    flex-direction: column;
    min-height: 100vh;
    /* Altura mínima de 100% da tela */
}

/* O wrapper-content fará o conteúdo principal crescer */
.wrapper-content {
    flex: 1 0 auto;
}

/* --- Footer Styles --- */
.footer {
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.footer-main {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: var(--accent-color);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

/* Footer Sections */
.footer-section {
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--gradient-end));
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    border-radius: 6px;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 15px;
    transform: translateX(5px);
}

.footer-link:hover::before {
    width: 8px;
}

.footer-link.view-all {
    color: var(--accent-color);
    font-weight: 500;
    margin-top: 1rem;
    padding: 0.5rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-link.view-all:hover {
    color: var(--accent-dark);
    background: rgba(56, 178, 172, 0.1);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 10px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-details strong {
    color: var(--text-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.copyright p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.copyright strong {
    color: var(--text-primary);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.payment-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.payment-icons i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.payment-icons i:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 2.5rem;
    }
    
    .contact-info {
        gap: 1.25rem;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:first-child {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 2.5rem 0 1rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li {
        text-align: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom .col-md-6 {
        width: 100%;
    }
    
    .payment-methods {
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    
    .payment-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .copyright {
        text-align: center;
    }
}

/* Melhorias adicionais para alinhamento */
@media (max-width: 575.98px) {
    .footer-main .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-bottom .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .contact-item {
        padding: 0 1rem;
    }
    
    .payment-methods {
        padding: 0 1rem;
    }
    
    .payment-label {
        font-size: 0.9rem;
    }
    
    .payment-icons i {
        font-size: 1.3rem;
        padding: 0.4rem;
    }
}

/* --- Navbar --- */
.navbar {
    background-color: var(--bg-dark) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 0.5rem 0;
}

.navbar-brand {
    color: var(--text-primary) !important;
    font-weight: 600;
    font-size: 1.25rem;
}

.navbar-brand:hover {
    color: var(--accent-color) !important;
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

/* Navbar Collapse */
.navbar-collapse {
    align-items: center;
}

/* Navbar Container Fix */
.navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.navbar-nav.me-auto {
    margin-right: auto !important;
}

.navbar-right-items {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Mobile hamburger button positioning */
@media (max-width: 991.98px) {
    .navbar .container {
        position: relative;
    }
    
    .navbar-toggler {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
    
    .navbar-brand {
        text-align: center;
        flex: 1;
        margin: 0 auto;
    }
    
    .navbar-right-items {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Mega Menu Specific Class */
.dropdown-menu.mega-menu {
    min-width: 600px;
    max-width: 800px;
    width: auto;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.mega-menu .container-fluid {
    background-color: var(--bg-card);
}

.mega-menu .p-3 {
    background-color: var(--bg-card);
}

/* Botão Todos os Produtos no Mega Menu */
.mega-menu .btn-outline-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mega-menu .btn-outline-primary:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.3);
}

/* Separador no Mega Menu */
.mega-menu hr {
    border-color: var(--border-color);
    opacity: 0.5;
}

/* Botão Ver Todas as Categorias no Mega Menu */
.mega-menu .btn-outline-accent {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background-color: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mega-menu .btn-outline-accent:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 178, 172, 0.3);
}

/* Botão Ver Todas as Categorias no Sidebar */
.sidebar-sublink.view-all-categories {
    color: var(--accent-color) !important;
    font-weight: 600;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    padding-top: 0.75rem !important;
}

.sidebar-sublink.view-all-categories:hover {
    background-color: rgba(56, 178, 172, 0.1) !important;
    color: var(--accent-dark) !important;
    transform: translateX(5px);
}

/* Desktop Mega Menu */
@media (min-width: 992px) {
    .navbar .container {
        position: relative;
    }
    
    .dropdown-menu.mega-menu {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: 100% !important;
        margin-top: 0.5rem;
    }
}

/* Mobile Dropdown */
@media (max-width: 991.98px) {
    .dropdown-menu.mega-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        width: 100% !important;
        min-width: auto !important;
        max-width: none !important;
        margin-top: 0.5rem;
    }
}

.search-bar {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
}

.search-bar::placeholder {
    color: var(--text-secondary);
}

.navbar .fa-shopping-cart,
.navbar .fa-user {
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar .fa-shopping-cart:hover,
.navbar .fa-user:hover {
    color: var(--accent-color);
}

/* --- Hero Section (Carrossel) --- */
.hero-slide {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(26, 32, 44, 0.1) 0%, rgba(26, 32, 44, 1) 100%);
    /* Ajustado para nova cor de fundo */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .badge {
    background-color: rgba(56, 178, 172, 0.2);
    /* Ajustado para nova cor */
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 16px;
    font-weight: 500;
    border-radius: 20px;
    /* Borda mais arredondada */
}

.hero-content h1 {
    color: white;
    /* Garante que o título principal seja branco no banner */
}

h3 {
    color: var(--text-primary);
    font-weight: 600;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    /* Garante que não tenha borda */
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary-outline {
    background-color: transparent;
    color: white;
    border: 1px solid var(--text-secondary);
    /* Borda mais integrada */
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-secondary-outline:hover {
    background-color: var(--text-secondary);
    color: var(--bg-dark);
}

/* --- Carousel Customization --- */
.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--accent-color);
    /* Ativo com cor de destaque */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
    transition: background-color 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
}


/* --- Seções (Categorias, Destaques) --- */
.section-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    /* Ajuste de espaçamento */
    font-size: 2.2rem;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.view-all-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* --- Category Card (MODIFICADO) --- */
.category-card {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    /* Para alinhar o conteúdo */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    /* Garante altura uniforme */
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
    /* Borda destaca no hover */
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-card h6 {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0;
}

/* --- Product Card --- */
.product-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
    /* Borda destaca no hover */
}

.product-image-container {
    position: relative;
}

.product-card-img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
    /* Garante que a imagem preencha o container */
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.product-card .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title:hover {
    color: var(--accent-color);
}

.product-price {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: auto;
    padding-top: 1rem;
}

.product-card .btn-accent {
    width: 100%;
    margin-top: 1rem;
    padding: 10px;
}

/* Sidebar Mobile Styles */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background-color: var(--bg-dark);
    border-right: 1px solid var(--border-color);
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.sidebar-brand {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background-color: var(--border-color);
    color: var(--accent-color);
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-search .form-control {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 6px 0 0 6px;
}

.sidebar-search .form-control:focus {
    background-color: var(--bg-card);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: none;
}

.sidebar-search .form-control::placeholder {
    color: var(--text-secondary);
}

.sidebar-search .btn {
    border-color: var(--border-color);
    background: var(--accent-color);
    color: white;
    border-left: none;
    border-radius: 0 6px 6px 0;
}

.sidebar-search .btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-item {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.sidebar-link:hover {
    background-color: var(--bg-card);
    color: var(--accent-color);
    transform: translateX(4px);
}

.sidebar-link i:first-child {
    width: 20px;
    margin-right: 0.75rem;
    text-align: center;
}

.sidebar-link span {
    flex: 1;
}

.sidebar-arrow {
    transition: transform 0.2s ease;
    font-size: 0.875rem;
}

.sidebar-toggle.active .sidebar-arrow {
    transform: rotate(180deg);
}

.sidebar-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-card);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.sidebar-submenu.active {
    max-height: 500px;
}

.sidebar-subitem {
    margin: 0;
}

.sidebar-sublink {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.sidebar-sublink:hover {
    background-color: var(--border-color);
    color: var(--accent-color);
    padding-left: 3rem;
}

.sidebar-sublink i {
    width: 16px;
    margin-right: 0.5rem;
    text-align: center;
    font-size: 0.8rem;
}

/* Navbar Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .cart-badge-count {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-slide {
        padding: 80px 0;
        min-height: 50vh;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .category-card {
        min-height: 100px;
        padding: 15px;
    }

    .category-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
}

/* --- Minha Conta Page --- */
.account-nav .list-group-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    margin-bottom: 5px;
    border-radius: 8px !important;
    /* Forçar borda arredondada */
    transition: all 0.3s ease;
    font-weight: 500;
}

.account-nav .list-group-item:hover {
    background-color: #3e4c62;
    /* Um pouco mais claro que o card */
    color: var(--text-primary);
    transform: translateX(5px);
}

.account-nav .list-group-item.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.tab-content .card {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    border-radius: 12px;
}

.tab-content .card-title {
    color: var(--text-primary);
}

.form-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
}

.form-control:focus {
    background-color: var(--bg-dark);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.25rem rgba(56, 178, 172, 0.25);
}

.form-control:disabled {
    background-color: #2D3748;
    opacity: 0.7;
}

/* --- Páginas de Produtos e Busca --- */
.filter-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.filter-card .list-group-item {
    background-color: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.filter-card .list-group-item:hover {
    color: var(--accent-color);
    background-color: rgba(56, 178, 172, 0.1);
    /* Fundo leve no hover */
}

.filter-card .list-group-item.active {
    color: var(--accent-color);
    font-weight: 600;
}

.pagination .page-item .page-link {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    color: #6c757d;
    /* Cor para desabilitado */
}

/* --- Páginas de Login e Registro --- */
.auth-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.auth-card .card-title {
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-card .form-text {
    color: var(--text-secondary);
}

.auth-card a {
    color: var(--accent-color);
    text-decoration: none;
}

.auth-card a:hover {
    text-decoration: underline;
}

/* --- Página do Carrinho --- */
.cart-table {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

.cart-table th {
    color: var(--text-primary);
    font-weight: 600;
}

.cart-table td {
    color: var(--text-secondary);
    vertical-align: middle;
}

.cart-summary {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

/* --- Página de Pedidos --- */
.order-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: var(--accent-color);
}

.order-card .card-header {
    background-color: #3e4c62;
    border-bottom: 1px solid var(--border-color);
}

.badge.bg-status-pendente {
    background-color: #ffc107;
    color: #000;
}

.badge.bg-status-entregue {
    background-color: #28a745;
}

.badge.bg-status-cancelado {
    background-color: #dc3545;
}

/* --- Correções Finais Header e Dropdown --- */

.navbar-right-items .nav-link,
.navbar-right-items .dropdown-toggle {
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cart-badge-count {
    position: absolute;
    top: -2px;
    right: -5px;
    background-color: var(--accent-color);
    color: white;
    font-size: 0.65rem;
    padding: 2px 5px;
}

/* Search Form Alignment */
.search-form {
    display: flex;
    align-items: center;
}

.search-form .input-group {
    width: 250px;
}

.search-form .search-bar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-right: none;
    border-radius: 6px 0 0 6px;
}

.search-form .search-bar:focus {
    background: var(--bg-card);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: none;
}

.search-form .search-bar::placeholder {
    color: var(--text-secondary);
}

.search-form #search-button {
    border-color: var(--border-color);
    background: var(--accent-color);
    color: white;
    border-left: none;
    border-radius: 0 6px 6px 0;
}

.search-form #search-button:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* Navbar Toggler Custom */
.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(56, 178, 172, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2856, 178, 172, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

.dropdown-item {
    color: var(--text-secondary);
}

.dropdown-item:hover {
    background-color: #3e4c62;
    color: var(--text-primary);
}

.dropdown-divider {
    border-top: 1px solid var(--border-color);
}

.btn-outline-accent {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-accent:hover {
    color: #fff;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* --- Página de Detalhes do Produto --- */
.breadcrumb {
    --bs-breadcrumb-divider-color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

.product-detail-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.product-detail-title {
    color: var(--text-primary);
    font-weight: 700;
}

.product-detail-price {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.product-detail-info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.bg-accent-light {
    background: linear-gradient(rgba(56, 178, 172, 0.15) 0%, rgba(255, 0, 0, 0.15) 100%);
}

.bg-gradient-water {
    background: var(--gradient-water);
}

/* --- Página de Checkout --- */
.checkout-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.checkout-section-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-section-header h5 {
    margin-bottom: 0;
    color: var(--text-primary);
}

.checkout-section-body {
    padding: 1.5rem;
}

.address-option, .payment-option {
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.address-option:hover, .payment-option:hover {
    background-color: #3e4c62;
    border-color: var(--accent-color);
}

.form-check-input:checked + .form-check-label .address-option,
.form-check-input:checked + .form-check-label .payment-option {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(56, 178, 172, 0.25);
}

/* Modal Dark Theme */
.modal-content {
    background-color: var(--bg-card);
    border-color: var(--border-color);
}

.modal-header {
    border-bottom-color: var(--border-color);
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    min-width: 320px;
    max-width: 400px;
}

.toast-custom .toast-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 12px 16px;
}

.toast-custom .toast-body {
    padding: 16px;
    color: var(--text-primary);
}

.toast-custom.toast-success {
    border-left: 4px solid #10b981;
}

.toast-custom.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-custom.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-custom.toast-info {
    border-left: 4px solid var(--accent-color);
}

.toast-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.toast-icon.success {
    color: #10b981;
}

.toast-icon.error {
    color: #ef4444;
}

.toast-icon.warning {
    color: #f59e0b;
}

.toast-icon.info {
    color: var(--accent-color);
}

/* Estilos para Pedidos */
.order-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.order-card .card-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
}

.order-card .card-body {
    padding: 1.25rem;
}

.order-card .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.badge.bg-warning {
    background-color: #f59e0b !important;
    color: #1f2937 !important;
}

.badge.bg-success {
    background-color: #10b981 !important;
}

.badge.bg-info {
    background-color: var(--accent-color) !important;
}

.badge.bg-primary {
    background-color: #3b82f6 !important;
}

.badge.bg-danger {
    background-color: #ef4444 !important;
}

/* Status específicos para pedidos */
.order-status {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.order-status.pendente {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.order-status.pago {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.order-status.enviado {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.order-status.entregue {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.order-status.cancelado {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Detalhes do pedido */
.pedido-timeline {
    position: relative;
    padding-left: 2rem;
}

.pedido-timeline::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.pedido-timeline-item {
    position: relative;
    padding: 1rem 0;
}



.pedido-timeline-item.completed::before {
    background: #10b981;
}

.pedido-timeline-item.current::before {
    background: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(56, 178, 172, 0.3);
}

/* Tabela de itens do pedido */
.table-pedido-itens {
    background: transparent;
}

.table-pedido-itens th,
.table-pedido-itens td {
    border-color: var(--border-color);
    vertical-align: middle;
}

.table-pedido-itens th {
    background: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* Resumo financeiro */
.resumo-pedido {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.resumo-pedido .resumo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.resumo-pedido .resumo-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .order-card .card-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start !important;
    }
    
    .order-card .row {
        margin-bottom: 0.5rem;
    }
    
    .order-card .col-sm-7,
    .order-card .col-sm-5 {
        text-align: left !important;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
}

/* --- Página de Detalhes do Pedido --- */
.order-details-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.order-details-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.order-details-header h5 {
    margin-bottom: 0;
    color: var(--text-primary);
}

.order-details-body {
    padding: 1.5rem;
}

/* Timeline de Status */
.pedido-timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
    border-left: 2px solid var(--border-color);
}

.pedido-timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0;
}

.pedido-timeline-item .fas {
    position: absolute;
    left: -11px;
    top: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
}

.pedido-timeline-item.completed .fas {
    border-color: var(--accent-color);
    color: var(--accent-color);
}
.pedido-timeline-item.completed {
     border-left-color: var(--accent-color);
}

.pedido-timeline-item.current .fas {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: white;
}

/* Order Details Card */
.order-details-card {
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
}

.order-details-header {
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    color: white;
    padding: 1.5rem;
    border-bottom: none;
}

.order-details-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.order-details-header .order-meta {
    margin-top: 0.5rem;
    opacity: 0.9;
}

.order-details-body {
    padding: 2rem;
}

.order-timeline {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.order-timeline h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pedido-timeline-item {
    position: relative;
    padding-left: 3.5rem;
    padding-bottom: 2rem;
    border-left: 2px solid #3a3f47;
    margin-left: 1.5rem;
}

.pedido-timeline-item:last-child {
    border-left: none;
    padding-bottom: 0;
}

.pedido-timeline-item .fas {
    position: absolute;
    left: -0.875rem;
    top: 0.125rem;
    width: 1.75rem;
    height: 1.75rem;
    border: 2px solid #3a3f47;
    border-radius: 50%;
    background-color: #2a2f37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.pedido-timeline-item.completed {
    border-left-color: #28a745;
}

.pedido-timeline-item.completed .fas {
    border-color: #28a745;
    background-color: #28a745;
    color: white;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.2);
}

.pedido-timeline-item.current {
    border-left-color: #007bff;
}

.pedido-timeline-item.current .fas {
    border-color: #007bff;
    background-color: #007bff;
    color: white;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    animation: pulse 2s infinite;
}

.pedido-timeline-item.future .fas {
    border-color: #495057;
    background-color: #343a40;
    color: #6c757d;
}

.pedido-timeline-item h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1rem;
    color: #f8f9fa;
}

.pedido-timeline-item small {
    color: #8a9199;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.pedido-timeline-item.completed h6 {
    color: #28a745;
}

.pedido-timeline-item.current h6 {
    color: #007bff;
}

.pedido-timeline-item.future h6 {
    color: #6c757d;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

/* Animação específica para o ícone de preparando */
.pedido-timeline-item.current .fa-cog.fa-spin {
    animation: spin 2s linear infinite, pulse 2s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.text-muted {
    color: var(--text-secondary) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

  /* Mega Menu Categorias */
        .dropdown-menu {
            border-radius: 8px;
        }
        
        .category-main-link {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .category-main-link:hover {
            background-color: rgba(255, 255, 255, 0.1) !important;
            transform: translateX(2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .category-main-link strong {
            color: var(--text-primary) !important;
            font-weight: 600;
        }
        
        .category-main-link small {
            color: var(--text-secondary) !important;
        }
        
        .subcategory-link {
            color: var(--text-secondary) !important;
            transition: all 0.2s ease;
        }
        
        .subcategory-link:hover {
            color: var(--accent-color) !important;
            padding-left: 0.75rem !important;
            background-color: rgba(56, 178, 172, 0.1);
            border-radius: 4px;
        }
        
        .category-item {
            transition: all 0.2s ease;
        }
        
        .category-item:hover {
            transform: translateY(-1px);
        }
        
        /* Responsivo */
        @media (max-width: 767px) {
            .category-main-link {
                border-left: none !important;
                border-top: 3px solid var(--category-color) !important;
            }
            
            .mega-menu .container-fluid {
                padding: 0 !important;
            }
            
            .mega-menu .row {
                margin: 0 !important;
            }
            
            .mega-menu .col-md-6 {
                padding: 0 !important;
                margin-bottom: 1rem;
            }
        }
        
        /* Melhorar aparência geral */
        .navbar-nav .dropdown-menu {
            animation: fadeIn 0.2s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Search Form Styles */
        .search-form .input-group {
            width: 250px;
        }
        
        .search-form .search-bar {
            background: #2a2a2a;
            border: 1px solid #444;
            color: #ffffff;
            border-right: none;
            border-radius: 6px 0 0 6px;
        }
        
        .search-form .search-bar:focus {
            background: #333;
            border-color: #007bff;
            color: #ffffff;
            box-shadow: none;
        }
        
        .search-form .search-bar::placeholder {
            color: #999;
        }
        
        .search-form #search-button {
            border-color: #444;
            background: #007bff;
            color: white;
            border-left: none;
            border-radius: 0 6px 6px 0;
        }
        
        .search-form #search-button:hover {
            background: #0056b3;
            border-color: #0056b3;
        }
        
        @media (max-width: 768px) {
            .search-form .input-group {
                width: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .search-form {
                width: 100%;
                margin-bottom: 0.5rem;
            }
            
            .search-form .input-group {
                width: 100%;
            }
        }
        
        /* Search Autocomplete Styles */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #2a2a2a;
            border: 1px solid #444;
            border-top: none;
            border-radius: 0 0 6px 6px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        
        .search-suggestion-item {
            padding: 0.75rem 1rem;
            cursor: pointer;
            border-bottom: 1px solid #444;
            color: #ffffff;
            display: flex;
            align-items: center;
            transition: background-color 0.2s ease;
        }
        
        .search-suggestion-item:hover,
        .search-suggestion-item.active {
            background: #007bff;
        }
        
        .search-suggestion-item:last-child {
            border-bottom: none;
        }
        
        .search-suggestion-item .suggestion-icon {
            margin-right: 0.5rem;
            color: #007bff;
            width: 16px;
        }
        
        .search-suggestion-item:hover .suggestion-icon,
        .search-suggestion-item.active .suggestion-icon {
            color: white;
        }
        
        .search-suggestion-item .suggestion-type {
            font-size: 0.8rem;
            color: #999;
            margin-left: auto;
        }
        
        .search-suggestion-item:hover .suggestion-type,
        .search-suggestion-item.active .suggestion-type {
            color: #ccc;
        }
        
        .search-loading {
            padding: 1rem;
            text-align: center;
            color: #999;
        }
        
        .search-loading i {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

/* Animação de pulsação */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade do botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 10px;
        right: 10px;
    }
}