/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", Helvetica, Arial, Verdana, sans-serif;
    color: #333333;
    background-color: #f1f1f1;
    line-height: 1.6;
}

/* Header Principal */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Primera fila del header */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid #e1e5e9;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #d31515;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d31515;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-login {
    text-decoration: none;
    color: #333333;
    padding: 8px 20px;
    border: 2px solid #8b8d94;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #8b8d94;
    color: white;
}

.btn-register {
    text-decoration: none;
    background: #d31515;
    color: white;
    border: 2px solid #d31515;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-register:hover {
    background: #b31212;
    border-color: #b31212;
}

/* Menú desplegable del usuario */
.user-menu-container {
    position: relative;
}

.user-menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00b4a6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.user-menu-trigger:hover .user-avatar {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 180, 166, 0.3);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.user-dropdown.active {
    display: block;
}

.user-dropdown-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.user-avatar-large {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #00b4a6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    font-size: 14px;
    color: #666666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown-menu {
    padding: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: #666666;
}

.dropdown-divider {
    height: 1px;
    background-color: #e1e5e9;
    margin: 8px 0;
}

/* Menú hamburguesa (oculto por defecto) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: #f1f1f1;
    color: #d31515;
}

/* Botones de acción mobile (ocultos por defecto) */
.mobile-actions {
    display: none;
    gap: 10px;
}

.mobile-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 50px;
    max-width: 65px;
    height: auto;
    padding: 4px 6px;
    background: none;
    border: none;
    color: #333333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-action-btn i {
    font-size: 18px;
    margin-bottom: 2px;
    flex-shrink: 0;
}

.mobile-action-btn span.mobile-action-btn-text {
    font-size: 9px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin-top: 2px;
    width: 100%;
    display: block;
}

.mobile-action-btn:hover {
    background: #f1f1f1;
    color: #d31515;
}

/* Botones de acción mobile para usuarios logueados */
.mobile-actions-logged {
    display: none;
    gap: 8px;
}

.mobile-action-btn-logged {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 50px;
    max-width: 65px;
    height: auto;
    padding: 4px 6px;
    background: none;
    border: none;
    color: #333333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-action-btn-logged i {
    font-size: 18px;
    margin-bottom: 2px;
    flex-shrink: 0;
}

.mobile-action-btn-logged:first-child i {
    color: #d31515;
}

.mobile-action-btn-logged span.mobile-action-btn-text {
    font-size: 9px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    margin-top: 2px;
    width: 100%;
    display: block;
}

.mobile-action-btn-logged:hover {
    background: #f1f1f1;
    color: #d31515;
}

.mobile-action-btn-logged:first-child:hover i {
    color: #b31212;
}

/* Menú móvil */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e1e5e9;
    background: #f8f9fa;
}

.mobile-menu-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #333333;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #f1f1f1;
    color: #d31515;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-item:hover {
    background: #f8f9fa;
    color: #d31515;
}

.mobile-nav-item i {
    width: 20px;
    text-align: center;
    color: #8b8d94;
}

.mobile-nav-item:hover i {
    color: #d31515;
}

/* Overlay para el menú móvil */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Footer */
.main-footer {
    background: #000000;
    height: 100px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ffffff;
}

.footer-copyright {
    color: #ffffff;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1); /* Hace el logo blanco */
}

/* Segunda fila del header */
.header-bottom {
    padding: 20px 30px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-selector select {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    min-width: 200px;
    cursor: pointer;
}

.search-container {
    flex: 1;
    max-width: 800px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-container form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
    width: 100%;
}

.search-container .category-selector {
    min-width: 200px;
}

.search-container .category-selector select,
.search-container .category-select {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    min-width: 200px;
    cursor: pointer;
}

.search-container .category-selector select:focus,
.search-container .category-select:focus {
    outline: none;
    border-color: #d31515;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b8d94;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: #d31515;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    border-color: #d31515;
    color: #d31515;
}

/* Contenedor Principal */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    display: flex;
    gap: 30px;
    transition: gap 0.3s ease;
}

/* Sidebar */
.sidebar {
    width: 25%;
    min-width: 280px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 140px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}



/* Botón flotante para mostrar sidebar cuando está oculto */
.sidebar-toggle-float {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #d31515;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(211, 21, 21, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.sidebar-toggle-float:hover {
    background: #b31212;
    transform: translateY(-50%) scale(1.1);
}

.sidebar-toggle-float i {
    font-size: 18px;
}



.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e1e5e9;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.toggle-sidebar {
    background: none;
    border: none;
    color: #8b8d94;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toggle-sidebar:hover {
    background: #f1f1f1;
    color: #333333;
}

.sidebar-content {
    padding: 20px;
}

.brand-filter {
    margin-bottom: 20px;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.filter-title i {
    color: #d31515;
}

.brand-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.brand-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #d31515;
}

.brand-name {
    flex: 1;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.brand-count {
    background: #f1f1f1;
    color: #8b8d94;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Contenido Principal */
.main-content {
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
    flex-grow: 1;
}



.content-header {
    margin-bottom: 30px;
}

.content-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.content-description {
    font-size: 16px;
    color: #8b8d94;
    line-height: 1.6;
}

/* Marcas Populares */
.popular-brands {
    margin-bottom: 40px;
}

.brands-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.brands-description {
    font-size: 14px;
    color: #8b8d94;
    margin-bottom: 25px;
}

.brands-carousel {
    position: relative;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #d31515 #f1f1f1;
}

.brands-carousel::-webkit-scrollbar {
    height: 6px;
}

.brands-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.brands-carousel::-webkit-scrollbar-thumb {
    background: #d31515;
    border-radius: 3px;
}

.brands-carousel::-webkit-scrollbar-thumb:hover {
    background: #b31212;
}

.carousel-container {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.carousel-nav.prev {
    left: -20px;
}

.carousel-nav.next {
    right: -20px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: pointer;
}

.brand-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.brand-logo {
    width: 100%;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    max-width: 200px;
}

.brand-name-large {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.btn-view-brand {
    display: inline-block;
    background: #d31515;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-view-brand:hover {
    background: #b31212;
}

/* Grid de Productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-brand {
    font-size: 14px;
    color: #8b8d94;
    margin-bottom: 8px;
}

.product-badge {
    display: inline-block;
    background: #f1f1f1;
    color: #333333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-download,
.btn-preview {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-download {
    background: #d31515;
    color: white;
}

.btn-download:hover {
    background: #b31212;
}

.btn-preview {
    background: #f1f1f1;
    color: #333333;
    border: 2px solid #e1e5e9;
}

.btn-preview:hover {
    background: #e1e5e9;
    border-color: #8b8d94;
}

/* Paginación */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 10px 15px;
    border: 2px solid #e1e5e9;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 40px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #d31515;
    color: #d31515;
}

.pagination-btn.active {
    background: #d31515;
    border-color: #d31515;
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination span {
    color: #8b8d94;
    font-weight: 500;
}

/* Estado vacío */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-icon {
    font-size: 48px;
    color: #8b8d94;
    margin-bottom: 20px;
}

.empty-state-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.empty-state-text {
    font-size: 16px;
    color: #8b8d94;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-container {
        padding: 20px;
        gap: 20px;
    }
    
    .sidebar {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .main-header {
        padding: 0;
    }
    
    .header-top {
        position: relative;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        gap: 8px;
        min-height: 65px;
    }
    
    /* Mostrar menú hamburguesa - izquierda */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        flex-shrink: 0;
        z-index: 10;
        width: 40px;
        height: 40px;
    }
    
    /* Centrar logo */
    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        flex-shrink: 0;
        pointer-events: none;
    }
    
    .logo img {
        max-height: 32px;
        width: auto;
        pointer-events: auto;
    }
    
    /* Ocultar menú de navegación */
    .nav-menu {
        display: none;
    }
    
    /* Ocultar botones de acción desktop */
    .header-actions {
        display: none;
    }
    
    /* Mostrar botones de acción mobile - derecha */
    .mobile-actions {
        display: flex;
        order: 3;
        flex-shrink: 0;
        gap: 8px;
        margin-left: auto;
        z-index: 10;
    }
    
    /* Mostrar botones de acción mobile para usuarios logueados - derecha */
    .mobile-actions-logged {
        display: flex;
        order: 3;
        flex-shrink: 0;
        gap: 8px;
        margin-left: auto;
        z-index: 10;
    }
    
    /* Ocultar menú desplegable del usuario en mobile (se usan botones móviles) */
    .user-menu-container {
        display: none;
    }
    
    .user-dropdown {
        right: 0;
        left: auto;
        min-width: 260px;
    }
    
    .header-bottom {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    /* Ocultar botones de vista */
    .view-toggle {
        display: none;
    }
    
    .search-container {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .search-container form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .search-container .category-selector {
        width: 100%;
        min-width: auto;
    }
    
    .search-container .category-selector select,
    .search-container .category-select {
        width: 100%;
        min-width: auto;
    }
    
    .search-input-wrapper {
        width: 100%;
    }
    
    .main-container {
        padding: 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    /* Ocultar sidebar en mobile por defecto */
    .sidebar {
        display: none;
    }
    
    /* Ocultar botón flotante en mobile */
    .sidebar-toggle-float {
        display: none !important;
    }
    
    .main-content {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* 2 productos por fila en mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brands-carousel {
        gap: 15px;
    }
    
    .brand-card {
        min-width: 120px;
    }
    
    /* Ajustar tamaño de productos en mobile */
    .product-card {
        min-height: auto;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-brand {
        font-size: 12px;
    }
    
    .product-badge {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-download,
    .btn-preview {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    /* Footer responsive */
    .main-footer {
        margin-top: 40px;
    }
    
    .footer-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }
    
    .footer-copyright p {
        font-size: 12px;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 25px;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 10px 12px;
        min-height: 60px;
    }
    
    .mobile-actions {
        gap: 6px;
    }
    
    .mobile-actions-logged {
        gap: 6px;
    }
    
    .mobile-action-btn {
        min-width: 45px;
        max-width: 60px;
        padding: 3px 4px;
    }
    
    .mobile-action-btn-logged {
        min-width: 45px;
        max-width: 60px;
        padding: 3px 4px;
    }
    
    .mobile-action-btn i {
        font-size: 16px;
    }
    
    .mobile-action-btn-logged i {
        font-size: 16px;
    }
    
    .mobile-action-btn span.mobile-action-btn-text {
        font-size: 8px;
    }
    
    .mobile-action-btn-logged span.mobile-action-btn-text {
        font-size: 8px;
    }
    
    .logo img {
        max-height: 28px;
    }
    
    .header-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        min-width: 35px;
    }
}
