/* ===== RESET Y VARIABLES ===== */
        :root {
            --primary: #ff3366;
            --primary-dark: #e62e5c;
            --secondary: #2c3e50;
            --accent: #ffcc00;
            --text: #333;
            --dark-gray: #666;
            --gray: #f5f5f5;
            --success: #4CAF50;
            --danger: #f44336;
            --border-radius: 20px;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* ===== UTILIDADES ===== */
        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            text-align: center;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 51, 102, 0.3);
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
            color: white;
            padding: 12px 0;
            font-size: 0.9rem;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-message {
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .top-message::before {
            content: '🎁';
            font-size: 1.1rem;
        }

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

        .top-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .top-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .language-selector {
            font-weight: 700;
            background: rgba(255, 255, 255, 0.1);
            padding: 5px 15px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* ===== HEADER ===== */
        .main-header {
            padding: 25px 0;
            background: white;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 25px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo i {
            color: var(--primary);
            font-size: 2rem;
            animation: float 3s ease-in-out infinite;
        }

        .logo span {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .search-bar {
            display: flex;
            flex: 1;
            max-width: 650px;
            margin: 0 25px;
            position: relative;
        }

        .search-bar input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid var(--gray);
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
            border-right: none;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            background: #fafafa;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
        }

        .search-bar button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: 2px solid var(--primary);
            border-left: none;
            padding: 18px 35px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: var(--transition);
        }

        .search-bar button:hover {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #d42a54 100%);
            transform: translateX(5px);
        }

        /* ===== SUGERENCIAS DE BÚSQUEDA ===== */
        .search-suggestions {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px;
            margin-top: 10px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            max-height: 450px;
            overflow-y: auto;
            display: none;
            border: 1px solid #f0f0f0;
        }

        .search-suggestions.active {
            display: block;
            animation: slideDown 0.3s ease;
        }

        .suggestions-header {
            padding: 15px 20px;
            background: linear-gradient(135deg, #f8f8f8, #ffffff);
            border-bottom: 1px solid var(--gray);
            font-weight: 600;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 20px 20px 0 0;
        }

        .suggestions-header i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .suggestions-header span {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .suggestion-group {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .suggestion-group-title {
            padding: 8px 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
            color: var(--dark-gray);
            letter-spacing: 0.5px;
            background: rgba(255, 51, 102, 0.02);
        }

        .suggestion-item {
            padding: 12px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }

        .suggestion-item:hover {
            background: linear-gradient(90deg, rgba(255, 51, 102, 0.05), transparent);
            border-left-color: var(--primary);
            padding-left: 30px;
        }

        .suggestion-item i {
            color: var(--primary);
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

        .suggestion-info {
            flex: 1;
        }

        .suggestion-name {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 2px;
        }

        .suggestion-category {
            font-size: 0.75rem;
            color: var(--dark-gray);
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .suggestion-category i {
            font-size: 0.7rem;
            color: var(--primary);
            width: auto;
        }

        .suggestion-badge {
            background: var(--primary);
            color: white;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 20px;
            margin-left: 10px;
            white-space: nowrap;
        }

        .suggestion-footer {
            padding: 15px 20px;
            background: #f8f8f8;
            border-top: 1px solid var(--gray);
            border-radius: 0 0 20px 20px;
            text-align: center;
            color: var(--dark-gray);
            font-size: 0.9rem;
        }

        .suggestion-footer i {
            color: var(--primary);
            margin: 0 5px;
            font-size: 0.8rem;
        }

        .suggestion-footer strong {
            color: var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .suggestion-footer strong:hover {
            text-decoration: underline;
        }

        .no-suggestions {
            padding: 40px 20px;
            text-align: center;
            color: var(--dark-gray);
        }

        .no-suggestions i {
            font-size: 3rem;
            color: var(--primary);
            opacity: 0.3;
            margin-bottom: 15px;
        }

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

        /* ===== MODAL DE BÚSQUEDA ===== */
        .search-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .search-modal.active {
            display: flex;
            animation: fadeIn 0.3s ease;
        }

        .search-modal-content {
            background: white;
            border-radius: 30px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
            animation: scaleIn 0.3s ease;
        }

        .search-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--gray);
        }

        .search-modal-header h2 {
            font-family: 'Playfair Display', serif;
            color: var(--secondary);
            font-size: 2rem;
        }

        .close-modal {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: var(--dark-gray);
            transition: var(--transition);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            background: var(--gray);
            color: var(--primary);
            transform: rotate(90deg);
        }

        .search-stats {
            background: linear-gradient(135deg, #f8f8f8, #ffffff);
            padding: 15px 25px;
            border-radius: 15px;
            margin-bottom: 25px;
            color: var(--dark-gray);
            font-weight: 500;
            border-left: 4px solid var(--primary);
        }

        .search-results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 25px;
        }

        .search-result-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            border: 1px solid #f0f0f0;
            transition: var(--transition);
            cursor: pointer;
        }

        .search-result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.15);
            border-color: var(--primary);
        }

        .search-result-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .search-result-title {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--secondary);
        }

        .search-result-category {
            font-size: 0.85rem;
            color: var(--dark-gray);
        }

        .no-results {
            text-align: center;
            padding: 50px 20px;
            color: var(--dark-gray);
        }

        .no-results i {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .no-results h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .user-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .account-link, .wishlist-link, .cart-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--text);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
            padding: 10px 15px;
            border-radius: 15px;
            min-width: 80px;
            position: relative;
        }

        .account-link:hover, .wishlist-link:hover, .cart-link:hover {
            color: var(--primary);
            background: rgba(255, 51, 102, 0.05);
            transform: translateY(-5px);
        }

        .account-link i, .wishlist-link i, .cart-link i {
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .cart-wrapper {
            position: relative;
        }

        .cart-count, .wishlist-count {
            position: absolute;
            top: -8px;
            right: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            font-size: 0.8rem;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            border: 3px solid white;
            box-shadow: 0 4px 10px rgba(255, 51, 102, 0.3);
        }

        nav {
            background: white;
            border-top: 2px solid var(--gray);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 15px;
            padding: 20px 0;
        }

        .nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
            padding: 12px 20px;
            position: relative;
            border-radius: 12px;
            cursor: pointer;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
            background: rgba(255, 51, 102, 0.05);
            transform: translateY(-3px);
        }

        .nav-link i {
            font-size: 1.1rem;
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 70%;
        }

        /* ===== DROPDOWNS ===== */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            max-height: 400px;
            overflow-y: auto;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            border-radius: var(--border-radius);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px) scale(0.95);
            transition: var(--transition);
            padding: 20px 0;
            border: 1px solid #f0f0f0;
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--gray);
        }

        .dropdown-content::-webkit-scrollbar {
            width: 6px;
        }

        .dropdown-content::-webkit-scrollbar-track {
            background: var(--gray);
            border-radius: 10px;
        }

        .dropdown-content::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 10px;
        }

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

        .dropdown-content a {
            display: block;
            padding: 15px 30px;
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: var(--transition);
            border-left: 3px solid transparent;
            font-weight: 500;
        }

        .dropdown-content a:hover {
            background: linear-gradient(90deg, rgba(255, 51, 102, 0.05), transparent);
            color: var(--primary);
            border-left-color: var(--primary);
            padding-left: 40px;
        }

        .dropdown-content a i {
            margin-right: 12px;
            color: var(--primary);
            font-size: 1rem;
            width: 20px;
        }

        .dropdown-content .dropdown-header {
            padding: 10px 30px;
            font-weight: 700;
            color: var(--secondary);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--gray);
            margin-bottom: 10px;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary);
            cursor: pointer;
            padding: 10px;
            transition: var(--transition);
        }

        .mobile-menu-toggle:hover {
            transform: rotate(90deg);
        }

        /* ===== CATEGORY HEADER ===== */
        .category-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1594633312681-425c7b97ccd1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin: 40px 0;
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
        }

        .category-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255, 51, 102, 0.2), rgba(255, 204, 0, 0.2));
        }

        .category-header .container {
            position: relative;
            z-index: 1;
        }

        .category-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #fff, var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .category-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* ===== FILTERS ===== */
        .category-filters {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }

        .filter-sort {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid var(--gray);
            margin-bottom: 20px;
        }

        .products-count {
            font-size: 1.1rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .sort-select {
            padding: 12px 20px;
            border: 2px solid var(--gray);
            border-radius: 10px;
            background: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
        }

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

        .filter-group {
            margin-bottom: 25px;
        }

        .filter-group h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--secondary);
            font-weight: 600;
        }

        .filter-options {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .filter-btn {
            padding: 10px 20px;
            border: 2px solid var(--gray);
            background: white;
            border-radius: 30px;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text);
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-color: var(--primary);
        }

        /* ===== PRODUCTS ===== */
        .category-products {
            padding: 40px 0;
        }

        .product-grid-category {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .product-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            border-color: var(--primary);
        }

        .product-badge {
            position: absolute;
            top: 20px;
            left: 20px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
        }

        .favorite-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 2;
            border: none;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .favorite-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

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

        .product-image {
            height: 300px;
            overflow: hidden;
            cursor: pointer;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        .product-info {
            padding: 25px;
        }

        .product-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.4;
            color: var(--secondary);
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .current-price {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary);
        }

        .original-price {
            font-size: 1.1rem;
            color: var(--dark-gray);
            text-decoration: line-through;
        }

        .discount {
            background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
            color: #d32f2f;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 700;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .product-rating i {
            color: var(--accent);
            font-size: 1rem;
        }

        .product-rating span {
            font-size: 0.95rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--secondary) 0%, #333 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: var(--transition);
        }

        .add-to-cart-btn:hover {
            background: linear-gradient(135deg, #333 0%, #444 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .added-to-cart-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: default;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        /* ===== PAGINATION ===== */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 50px;
        }

        .page-btn {
            width: 45px;
            height: 45px;
            border: 2px solid var(--gray);
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            font-size: 1rem;
        }

        .page-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .page-btn.active {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border-color: var(--primary);
        }

        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(135deg, var(--secondary) 0%, #222 100%);
            color: white;
            padding: 80px 0 40px;
            margin-top: 100px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
        }

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

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: white;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
        }

        .footer-column p {
            margin-bottom: 25px;
            opacity: 0.8;
            line-height: 1.8;
            font-size: 1.05rem;
        }

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

        .footer-column ul li {
            margin-bottom: 16px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.05rem;
        }

        .footer-column ul li a:hover {
            color: white;
            padding-left: 10px;
            color: var(--primary);
        }

        .footer-column ul li i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .social-icons {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.3rem;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-8px) rotate(5deg);
            box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
        }

        .copyright p:first-child {
            margin-bottom: 10px;
        }

        .copyright i {
            color: var(--primary);
            margin: 0 5px;
        }

        /* ===== NOTIFICACIONES ===== */
        .notification {
            position: fixed;
            top: 30px;
            right: 30px;
            padding: 20px 30px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 10000;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: slideIn 0.4s ease, fadeOut 0.4s ease 2.6s;
            font-weight: 500;
            color: white;
        }

        .notification.success {
            background: linear-gradient(135deg, var(--success) 0%, #45a049 100%);
        }

        .notification.error {
            background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
        }

        .notification.info {
            background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
        }

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

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .product-card {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .product-card:nth-child(2) { animation-delay: 0.1s; }
        .product-card:nth-child(3) { animation-delay: 0.2s; }
        .product-card:nth-child(4) { animation-delay: 0.3s; }
        .product-card:nth-child(5) { animation-delay: 0.4s; }
        .product-card:nth-child(6) { animation-delay: 0.5s; }
        .product-card:nth-child(7) { animation-delay: 0.6s; }
        .product-card:nth-child(8) { animation-delay: 0.7s; }
        
        .logo i {
            animation: float 3s ease-in-out infinite;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .category-header h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                order: 1;
            }
            .user-actions {
                order: 2;
            }
            .search-bar {
                order: 3;
                width: 100%;
                max-width: 100%;
                margin: 25px 0 0;
            }
            .mobile-menu-toggle {
                order: 4;
                display: block;
            }
            .nav-links {
                order: 5;
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                z-index: 1000;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
                padding: 25px;
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }
            .nav-links.active {
                display: flex;
            }
            .dropdown {
                width: 100%;
            }
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding-left: 30px;
                margin-top: 10px;
                display: none;
                width: 100%;
                max-height: none;
            }
            .dropdown.active .dropdown-content {
                display: block;
            }
            .category-header h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .top-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            .user-actions {
                width: 100%;
                justify-content: space-around;
            }
            .category-header {
                padding: 60px 20px;
            }
            .category-header h1 {
                font-size: 2.5rem;
            }
            .filter-sort {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
            .sort-select {
                width: 100%;
            }
            .product-grid-category {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .category-header h1 {
                font-size: 2rem;
            }
            .filter-options {
                gap: 8px;
            }
            .filter-btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
