/* =========================================
   1. VARIABLES & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #FFA630;
    --dark: #1A1A2E;
    --light: #F7F7F7;
    --success: #28a745;
    /* Cores do Menu Moderno */
    --menu-bg: #ffffff;
    --menu-border: #3b82f6;
    --menu-text: #334155;
    --menu-hover-bg: rgba(59, 130, 246, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
}

/* =========================================
   2. HEADER, TOP BAR & NAVBAR
   ========================================= */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--accent);
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 100px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-bar button:hover {
    background: var(--secondary);
}

.cart-whatsapp {
    display: flex;
    gap: 15px;
}

.cart-btn,
.whatsapp-header-btn {
    background: var(--secondary);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.whatsapp-header-btn {
    background: #25D366;
}

.whatsapp-header-btn:hover {
    background: #20ba59;
    transform: scale(1.05);
}

.cart-btn:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* =========================================
   3. HERO SLIDER (Responsivo)
   ========================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    /* Adicionado visibility para evitar cliques em slides ocultos */
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Animações de Transição Lateral */
.hero-slider .slide.slide-out-left {
    animation: slideOutLeft 0.6s ease-in-out forwards;
}

.hero-slider .slide.slide-out-right {
    animation: slideOutRight 0.6s ease-in-out forwards;
}

.hero-slider .slide.slide-in-right {
    animation: slideInRight 0.6s ease-in-out forwards;
}

.hero-slider .slide.slide-in-left {
    animation: slideInLeft 0.6s ease-in-out forwards;
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
}

.slide.active .slide-content {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35 0%, #FFA630 100%);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, #FFA630 0%, #FF6B35 100%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    width: 35px;
    border-radius: 10px;
}

/* =========================================
   4. CATEGORIAS & MENU MULTINÍVEL (Modificado)
   ========================================= */
.categories-bar {
    /* NUNCA terá scrollbar vertical */
    overflow-y: hidden;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    padding: 0 20px;
}

.categories-scroll {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;

    /* Configuração da Barra de Rolagem */
    overflow-x: auto;
    overflow-y: visible;
    white-space: nowrap;

    padding: 15px 5px;

    -webkit-overflow-scrolling: touch;

    /* Estilo da barra de rolagem (Firefox) */
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #f1f5f9;
}

.categories-scroll::-webkit-scrollbar {
    height: 6px;
    /* Altura da barra horizontal */
}

.categories-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    border-radius: 10px;
}

.categories-scroll::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Item Nível 0 */
.category-item {
    flex: 0 0 auto;
    position: relative;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--menu-text);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid transparent;
}

/* REGRAS ::before REMOVIDAS AQUI */


.category-item:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.3);
}

/* REGRAS ::before REMOVIDAS AQUI */


.category-item.active {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.category-item.open {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #1e40af;
    font-weight: 600;
}

/* REGRAS ::before REMOVIDAS AQUI */


.category-item i {
    font-size: 1.2rem;
    color: inherit;
}

.category-item:hover i,
.category-item.active i,
.category-item.open i {
    color: #1e40af;
    transform: scale(1.15) rotate(0deg);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

/* Submenu Dropdown (Nível 1) - Mantido */
.category-submenu {
    /* CORREÇÃO: Usa position: absolute para se comportar dentro do fluxo horizontal */
    position: absolute;

    /* Posição Vertical: Aparece logo abaixo do item pai */
    top: 100%;

    /* Posição Horizontal: Alinhado com a esquerda do item pai */
    left: 0;

    /* CORREÇÃO PARA O SCROLLBAR VERTICAL INTERNO */
    max-height: 80vh;
    overflow-y: auto;

    /* Garante que o submenu fique acima de outros elementos na página */
    z-index: 9999;

    /* Estilos Visuais */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 280px;
    /* Largura um pouco maior para acomodar conteúdo */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid var(--menu-border);
    padding: 10px 0;

    display: none;
}

.category-submenu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Item de Submenu (Nível 1) - Mantido */
.submenu-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    border-left: 4px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    white-space: normal;
}

.submenu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #3b82f6, #60a5fa);
    transition: height 0.3s ease;
}

.submenu-item:hover {
    background: linear-gradient(90deg, #eff6ff 0%, #ffffff 100%);
    padding-left: 32px;
    color: #1e293b;
}

.submenu-item:hover::before {
    height: 100%;
}

.submenu-item.active,
.category-item.open .category-submenu {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

.submenu-item.active::before,
.submenu-item.open::before {
    height: 100%;
}

.submenu-item i {
    font-size: 1.1rem;
    color: #3b82f6;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.submenu-item:hover i {
    color: #1e40af;
    transform: scale(1.1) rotate(0deg);
}

/* Submenu Aninhado (Nível 2+) - Mantido */
.submenu-nested {
    position: relative;
    box-shadow: none;
    border: none;
    background: transparent;
}

.submenu-item.open>.submenu-nested {
    display: block;
}

.submenu-nested .submenu-item {
    padding-left: 48px;
    font-size: 0.88rem;
    color: #64748b;
    background: transparent;
}

.submenu-nested .submenu-item::before {
    background: linear-gradient(to bottom, #93c5fd, #bfdbfe);
}

.submenu-nested .submenu-item:hover {
    padding-left: 56px;
    background: linear-gradient(90deg, #f0f9ff 0%, #f8fafc 100%);
    color: #334155;
}

.submenu-nested .submenu-item i {
    color: #60a5fa;
}

.submenu-nested .submenu-item:hover i {
    color: #2563eb;
}

/* Nível 3 - Mantido */
.submenu-nested .submenu-nested {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-left-color: #a5b4fc;
}

.submenu-nested .submenu-nested .submenu-item {
    padding-left: 72px;
    color: #718096;
}

.submenu-nested .submenu-nested .submenu-item:hover {
    padding-left: 80px;
    background: linear-gradient(90deg, #eef2ff 0%, #f1f5f9 100%);
    color: #334155;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   5. FILTRO & BREADCRUMB
   ========================================= */
.filter-breadcrumb {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 18px 40px;
    display: none;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.filter-breadcrumb.show {
    display: flex;
    animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-breadcrumb i {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.filter-breadcrumb .breadcrumb-path {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.filter-breadcrumb .breadcrumb-separator {
    opacity: 0.7;
    font-weight: 400;
}

.btn-clear-filter {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.btn-clear-filter:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-clear-filter:active {
    transform: translateY(0);
}

/* =========================================
   LISTAGEM DE PRODUTOS - DESIGN PREMIUM REFORMULADO
   ========================================= */

.products-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-header h2::before {
    content: '';
    width: 5px;
    height: 50px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 10px;
}

.filter-sort {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-sort select {
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-sort select:hover {
    border-color: var(--primary);
}

.filter-sort select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* GRID DE PRODUTOS - Layout Compacto */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* =========================================
   CARD DE PRODUTO - DESIGN PREMIUM
   ========================================= */

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

/* Badge do Produto - Estilo Simples */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.product-badge.badge-new {
    background: #667eea;
}

.product-badge.badge-sale {
    background: #f5576c;
}

.product-badge.badge-hot {
    background: #fa709a;
}

.product-badge.badge-featured {
    background: #4facfe;
}

/* Container da Imagem - Estilo Compacto */
.product-img {
    height: 220px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.product-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-img::before {
    opacity: 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-img i {
    font-size: 5rem;
    color: #e0e0e0;
    transition: all 0.4s ease;
}

.product-card:hover .product-img i {
    transform: scale(1.1);
    color: #d0d0d0;
}

/* Ícones de Ação Rápida - Removidos para layout mais limpo */
.product-quick-actions {
    display: none;
}

/* Detalhes do Produto */
.product-details {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: white;
}

.product-category {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-category::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.product-card:hover .product-name {
    color: var(--primary);
}

/* Avaliações com Estrelas */
.product-meta {
    margin-bottom: 14px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-rating i {
    font-size: 0.9rem;
    color: #e2e8f0;
    transition: all 0.2s ease;
}

.product-rating i.checked {
    color: #fbbf24;
}

.product-card:hover .product-rating i.checked {
    transform: scale(1.1);
}

.rating-count {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-left: 4px;
    font-weight: 500;
}

.product-description {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Indicador de Estoque Premium */
.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: #ecfdf5;
    border-radius: 20px;
    width: fit-content;
    font-weight: 600;
    border: 1px solid #d1fae5;
}

.product-stock.in-stock {
    color: #065f46;
    background: #ecfdf5;
    border-color: #d1fae5;
}

.product-stock.in-stock i {
    color: #10b981;
}

.product-stock.low-stock {
    background: #fef3c7;
    color: #92400e;
    border-color: #fde68a;
}

.product-stock.low-stock i {
    color: #f59e0b;
}

.product-stock.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.product-stock.out-of-stock i {
    color: #ef4444;
}

/* Divisor Visual */
.product-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
    margin: 16px 0;
}

/* Footer do Card - Layout Simples */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 14px;
    gap: 10px;
    border-top: 1px solid #f0f0f0;
}

/* Container de Preços - Design Moderno */
.product-price-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-price-old {
    font-size: 0.85rem;
    color: #cbd5e0;
    text-decoration: line-through;
    font-weight: 500;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
}

.product-price-small {
    font-size: 0.85rem;
    font-weight: 600;
    color: #48bb78;
    vertical-align: super;
}

.product-discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(72, 187, 120, 0.3);
}

/* Botão Adicionar ao Carrinho - Estilo Simples */
.add-cart-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-cart-btn:hover {
    background: #e85d2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.add-cart-btn:active {
    transform: translateY(0);
}

.add-cart-btn i {
    font-size: 1rem;
}

/* Estado Vazio - Design Elegante */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    border: 2px dashed #e0e0e0;
}

.empty-state i {
    font-size: 6rem;
    color: #cbd5e0;
    margin-bottom: 30px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 700;
}

.empty-state p {
    color: #718096;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVIDADE - CARDS DE PRODUTOS
   ========================================= */

/* Tablets */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 18px;
    }

    .product-img {
        height: 200px;
    }

    .product-details {
        padding: 16px;
    }

    .product-name {
        font-size: 0.9rem;
        min-height: 40px;
    }

    .product-price {
        font-size: 1.4rem;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .filter-sort {
        width: 100%;
        flex-direction: column;
    }

    .filter-sort select {
        width: 100%;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-img {
        height: 180px;
        padding: 12px;
    }

    .product-details {
        padding: 14px;
    }

    .product-category {
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .product-name {
        font-size: 0.85rem;
        min-height: 38px;
        margin-bottom: 10px;
    }

    .product-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 12px;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .add-cart-btn {
        width: 100%;
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.6rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img {
        height: 160px;
        padding: 10px;
    }

    .product-details {
        padding: 12px;
    }

    .product-name {
        font-size: 0.8rem;
        min-height: 36px;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .add-cart-btn {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
    .product-img {
        height: 220px;
    }

    .product-details {
        padding: 14px;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1.5rem;
    }
}

/* =========================================
   7. PÁGINA DETALHE DO PRODUTO
   ========================================= */
.produto-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Breadcrumb Produto */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    color: #666;
    flex-wrap: wrap;
}

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

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

.breadcrumb span:last-child {
    color: var(--dark);
    font-weight: 600;
}

/* Layout Principal Produto */
.produto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Galeria de Imagens */
.produto-galeria {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.imagem-principal {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.imagem-principal img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.produto-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.miniaturas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.miniatura {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.miniatura:hover {
    opacity: 1;
    transform: scale(1.05);
}

.miniatura.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Informações do Produto */
.produto-info {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produto-titulo {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 800;
}

.produto-categoria-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

/* Preços Produto */
.produto-preco-container {
    background: linear-gradient(135deg, var(--light) 0%, #fff 100%);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    border: 2px solid #eee;
}

.preco-antigo {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.preco-atual {
    font-size: 3rem;
    font-weight: 800;
    color: var(--success);
}

.desconto-tag {
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Descrição Produto */
.produto-descricao {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.produto-descricao h3 {
    color: var(--dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.produto-descricao h3 i {
    color: var(--primary);
}

.produto-descricao p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* Especificações Produto */
.produto-especificacoes {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.produto-especificacoes h3 {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.produto-especificacoes h3 i {
    color: var(--primary);
}

.produto-especificacoes ul {
    list-style: none;
}

.produto-especificacoes li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 0.95rem;
}

.produto-especificacoes li:last-child {
    border-bottom: none;
}

.produto-especificacoes li strong {
    color: var(--dark);
    margin-right: 10px;
}

/* Estoque */
.produto-estoque {
    margin-bottom: 25px;
}

.estoque-disponivel,
.estoque-indisponivel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
}

.estoque-disponivel {
    background: #d4edda;
    color: #155724;
}

.estoque-indisponivel {
    background: #f8d7da;
    color: #721c24;
}

/* Ações do Produto */
.produto-acoes {
    margin-bottom: 30px;
}

.quantidade-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 15px;
    width: fit-content;
    border: 2px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
}

.quantidade-selector button {
    background: var(--light);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--dark);
    font-size: 1rem;
}

.quantidade-selector button:hover {
    background: var(--primary);
    color: white;
}

.quantidade-selector input {
    width: 70px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 10px;
}

.btn-add-carrinho,
.btn-whatsapp {
    width: 100%;
    padding: 18px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 15px;
}

.btn-add-carrinho {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-add-carrinho:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba59;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Garantias Produto */
.produto-garantias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.garantia-item i {
    font-size: 2rem;
    color: var(--primary);
}

.garantia-item div {
    display: flex;
    flex-direction: column;
}

.garantia-item strong {
    color: var(--dark);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.garantia-item span {
    color: #666;
    font-size: 0.85rem;
}

/* Produtos Relacionados */
.produtos-relacionados {
    margin-top: 80px;
}

.produtos-relacionados h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.produtos-relacionados h2 i {
    color: var(--primary);
}

.produtos-relacionados .produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.btn-ver-mais {
    background: var(--secondary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-ver-mais:hover {
    background: var(--primary);
    transform: scale(1.05);
}

/* =========================================
   8. FOOTER & EXTRAS
   ========================================= */
/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 999;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.floating-cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
}

/* =========================================
   9. RESPONSIVIDADE (GLOBAL)
   ========================================= */

/* Tablets */
@media (max-width: 1024px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content h1 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .cta-btn {
        padding: 15px 35px;
        font-size: 1rem;
    }

    .slider-btn {
        padding: 12px 16px;
        font-size: 1.3rem;
    }

    .slider-btn.prev {
        left: 20px;
    }

    .slider-btn.next {
        right: 20px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 20px;
    }

    .produto-content {
        gap: 40px;
    }

    .produto-titulo {
        font-size: 2rem;
    }

    .preco-atual {
        font-size: 2.5rem;
    }

    .imagem-principal img {
        height: 500px;
    }
}

/* Smartphones */
@media (max-width: 768px) {
    .navbar-content {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-slider {
        height: 450px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .cta-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .slider-btn {
        padding: 10px 14px;
        font-size: 1.2rem;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .dot.active {
        width: 30px;
    }

    /* Produtos e Menu */
    .category-item {
        padding: 16px 24px;
        font-size: 0.9rem;
    }

    .submenu-item {
        padding: 14px 20px;
        font-size: 0.88rem;
    }

    .submenu-nested .submenu-item {
        padding-left: 40px;
    }

    .filter-breadcrumb {
        padding: 14px 24px;
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .btn-clear-filter {
        padding: 8px 18px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    /* Pagina Produto */
    .produto-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .produto-galeria {
        position: static;
    }

    .imagem-principal img {
        height: 400px;
    }

    .miniaturas {
        grid-template-columns: repeat(3, 1fr);
    }

    .produto-titulo {
        font-size: 1.8rem;
    }

    .preco-atual {
        font-size: 2.2rem;
    }

    .produto-garantias {
        grid-template-columns: 1fr;
    }

    .produtos-relacionados .produtos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-img {
        height: 180px;
    }

    .product-details {
        padding: 15px;
    }

    .product-name {
        font-size: 0.9rem;
        min-height: 38px;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .add-cart-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .add-cart-btn span {
        display: none;
    }
}

/* Smartphones pequenos */
@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .slider-btn {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .produto-container {
        padding: 0 15px;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .produto-titulo {
        font-size: 1.5rem;
    }

    .preco-atual {
        font-size: 2rem;
    }

    .imagem-principal img {
        height: 300px;
    }

    .miniatura {
        height: 80px;
    }

    .miniaturas {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .btn-add-carrinho,
    .btn-whatsapp {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .produtos-relacionados .produtos-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-img {
        height: 150px;
    }

    .product-details {
        padding: 12px;
    }

    .product-category {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .product-name {
        font-size: 0.85rem;
        min-height: 34px;
        margin-bottom: 8px;
    }

    .product-description {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        margin-bottom: 10px;
    }

    .product-footer {
        padding-top: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .product-price {
        font-size: 1.2rem;
    }

    .product-price-old {
        font-size: 0.75rem;
    }

    .add-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 10px;
        font-size: 0.8rem;
    }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
    .hero-slider {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

/* =========================================
   AJUSTES PARA O SUBMENU DE CATEGORIAS
   ========================================= */

/* Esconde o submenu por padrão */
.category-submenu {
    position: fixed;
    /* ESSENCIAL: Sai do fluxo de rolagem do container */

    /* CORREÇÃO DE SCROLLBAR: Garante scroll interno se for alto */
    max-height: 80vh;
    overflow-y: auto;

    /* Estilos Visuais */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 10000;
    /* Alto o suficiente para sobrepor o body */
    border: 1px solid var(--menu-border);
    padding: 10px 0;

    /* Inicialmente escondido. O JS o mostrará. */
    display: none;
}

/* Mostra o submenu quando o mouse passa sobre o item pai */
.category-item.has-children:hover>.category-submenu {
    display: block;
}

/* Garante que o item pai tenha posicionamento relativo para o submenu ser absoluto */
.category-item.has-children {
    position: relative;
}

/* Estilo para submenus aninhados (submenu-nested) */
.submenu-nested {
    /* Estes DEVEM ser position: absolute em relação ao submenu-item */
    position: absolute;
    top: 0;
    left: 100%;

    /* Garante scroll vertical interno */
    max-height: 80vh;
    overflow-y: auto;

    /* Estilos Visuais */
    background: var(--menu-bg);
    border: 1px solid var(--menu-border);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
    width: 250px;
    z-index: 10001;
    border-radius: 6px;

    display: none;
}

/* Mostra o submenu aninhado ao passar o mouse */
.submenu-item.has-children {
    position: relative;
}

.submenu-item.has-children:hover>.submenu-nested {
    display: block;
}

/* =========================================
   CORREÇÃO DO HEADER FIXO COMPLETO E PADDING
   ========================================= */

.main-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    /* Garante que o header fixo esteja no topo */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
    /* Garante que o header não seja transparente ao rolar */
}

/* Adiciona padding no corpo para evitar que o conteúdo fique atrás do header fixo */
body {
    /* ATENÇÃO: 180px é uma estimativa. Se o header estiver cortando o conteúdo,
       aumente este valor (ex: 190px, 200px) */
    padding-top: 180px;
}


/* =========================================
   AJUSTE FINAL DO SUBMENU (Posicionamento por JS)
   ========================================= */

.category-submenu {
    /* O JS define top e left, o CSS mantém o fixed para sobreposição */
    position: fixed;

    /* Garante scroll vertical interno se a lista for muito longa */
    max-height: 80vh;
    overflow-y: auto;

    /* Estilos Visuais */
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 10000;
    border: 1px solid var(--menu-border);
    padding: 10px 0;
    display: none;
}