/* ===== VARIABLES Y RESET ===== */
        :root {
            --primary: #ff3366;
            --primary-dark: #e62e5c;
            --secondary: #1a1a1a;
            --accent: #ffcc00;
            --text: #333333;
            --gray: #f5f5f5;
            --dark-gray: #666666;
            --success: #4CAF50;
            --border-radius: 20px;
            --transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background: #fafafa;
        }

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

        /* ===== TYPOGRAPHY ===== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 16px 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(255, 51, 102, 0.25);
            text-transform: uppercase;
            font-size: 0.95rem;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 51, 102, 0.4);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        }

        /* ===== MODAL DE AUTENTICACIÓN ===== */
        .auth-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

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

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

        .auth-close {
            position: absolute;
            top: 8px;
            right: 8px;
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: var(--dark-gray);
            transition: var(--transition);
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .auth-tabs {
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
            border-bottom: 2px solid var(--gray);
            padding-bottom: 8px;
        }

        .auth-tab {
            flex: 1;
            text-align: center;
            padding: 6px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.75rem;
            color: var(--dark-gray);
            transition: var(--transition);
            border-radius: 10px;
        }

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

        .auth-form {
            display: none;
        }

        .auth-form.active {
            display: block;
            animation: slideIn 0.3s ease;
        }

        .form-group {
            margin-bottom: 8px;
        }

        .form-group label {
            display: block;
            margin-bottom: 3px;
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.7rem;
        }

        .form-group input {
            width: 100%;
            padding: 8px;
            border: 2px solid var(--gray);
            border-radius: 15px;
            font-size: 0.8rem;
            transition: var(--transition);
            background: white;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 5px 20px rgba(255, 51, 102, 0.1);
        }

        .auth-submit {
            width: 100%;
            padding: 8px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 8px;
        }

        .auth-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
        }

        .auth-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .auth-footer {
            text-align: center;
            margin-top: 8px;
            color: var(--dark-gray);
            font-size: 0.7rem;
        }

        .auth-footer a {
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

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

        .error-message {
            background: linear-gradient(135deg, #ff6b6b 0%, #f03e3e 100%);
            color: white;
            padding: 12px;
            border-radius: 10px;
            margin-bottom: 20px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: slideIn 0.3s ease;
        }

        .error-message i {
            font-size: 1.2rem;
        }

        .loading-spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

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

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--secondary);
            color: white;
            padding: 12px 0;
            font-size: 0.95rem;
            font-weight: 500;
            border-bottom: 3px solid var(--primary);
        }

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

        .top-message {
            background: linear-gradient(45deg, var(--primary), var(--accent));
            padding: 5px 20px;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 3px 10px rgba(255, 51, 102, 0.3);
        }

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

        .top-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 5px;
        }

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

        /* ===== HEADER ===== */
        header {
            background: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            letter-spacing: -1px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Montserrat', sans-serif;
        }

        .logo i {
            color: var(--primary);
            font-size: 2.5rem;
            filter: drop-shadow(0 5px 15px rgba(255, 51, 102, 0.4));
        }

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

        /* ===== SEARCH BAR ===== */
        .search-bar {
            flex: 1;
            max-width: 700px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 18px 25px;
            border: 3px solid transparent;
            border-radius: 60px;
            font-size: 1.1rem;
            background: linear-gradient(135deg, #f8f8f8, #ffffff);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            padding-right: 70px;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.15);
        }

        .search-bar button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border: none;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            color: white;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .search-bar button:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 5px 20px rgba(255, 51, 102, 0.4);
        }

        /* ===== 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:last-child {
            border-bottom: none;
        }

        .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;
        }

        .no-suggestions p {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .no-suggestions small {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        @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);
            }
        }

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

        /* ===== USER ACTIONS ===== */
        .user-actions {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .user-actions a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }

        .user-actions a:hover {
            color: var(--primary);
            transform: translateY(-5px);
        }

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

        .cart-wrapper, .wishlist-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);
        }

        /* ===== NAVEGACIÓN PREMIUM CON DROPDOWNS ===== */
        nav {
            background: white;
            border-top: 2px solid var(--gray);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            z-index: 1000;
        }

        .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 CON BARRA DE DESPLAZAMIENTO ===== */
        .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: 15px 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: 12px 25px;
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
            font-weight: 500;
        }

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

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

        .dropdown-content .dropdown-header {
            padding: 10px 25px 8px;
            font-weight: 700;
            color: var(--secondary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-bottom: 1px solid var(--gray);
            margin-bottom: 8px;
            background: linear-gradient(90deg, rgba(255, 51, 102, 0.03), transparent);
        }

        /* ===== MENÚ MÓVIL ===== */
        .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);
        }

        /* ===== BANNER ===== */
        .banner {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                        url('https://placehold.co/1920x1080/1a1a1a/ff3366?text=StyleHub');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 150px 20px;
            margin: 40px 0;
            border-radius: var(--border-radius);
            position: relative;
            overflow: hidden;
        }

        .banner::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));
            opacity: 0.3;
        }

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

        .banner h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            letter-spacing: -1px;
            background: linear-gradient(45deg, #fff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .banner p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .banner .btn {
            font-size: 1.2rem;
            padding: 20px 50px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            box-shadow: 0 10px 40px rgba(255, 204, 0, 0.3);
        }

        /* ===== CATEGORÍAS ===== */
        .categories {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
            padding-bottom: 25px;
            color: var(--secondary);
        }

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

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
        }

        .category-card {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 350px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .category-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

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

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

        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
            color: white;
            padding: 35px;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .category-card:hover .overlay {
            transform: translateY(0);
        }

        .overlay h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .overlay p {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 500;
            color: var(--accent);
        }

        /* ===== PRODUCTOS DESTACADOS ===== */
        .featured-products {
            padding: 80px 0;
            background: white;
            border-radius: var(--border-radius);
            margin: 40px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        }

        .trust-strip {
            margin: 20px 0 30px;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(160px, 1fr));
            gap: 14px;
        }

        .trust-item {
            background: linear-gradient(145deg, #ffffff 0%, #fff7f8 100%);
            border: 1px solid #f0e7ea;
            border-radius: 16px;
            padding: 16px 14px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
            box-shadow: 0 12px 25px rgba(18, 18, 18, 0.05);
        }

        .trust-item i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .trust-item h3 {
            margin: 0 0 4px;
            font-size: 0.95rem;
            color: var(--secondary);
        }

        .trust-item p {
            margin: 0;
            font-size: 0.82rem;
            color: var(--dark-gray);
        }

        .featured-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .featured-head .section-title {
            margin-bottom: 0;
        }

        .featured-sort-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .featured-sort-wrap label {
            font-size: 0.85rem;
            color: var(--dark-gray);
            font-weight: 600;
        }

        .featured-sort-wrap select {
            border: 1px solid #eadfe3;
            border-radius: 12px;
            padding: 9px 12px;
            font-size: 0.85rem;
            color: var(--secondary);
            background: #fff;
            outline: none;
        }

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

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

        .product-card:hover {
            transform: translateY(-10px) 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;
        }

        /* ===== FOOTER (compact) ===== */
        footer {
            background: #0f0f0f;
            color: #f5f5f5;
            padding: 30px 0 20px;
            margin-top: 40px;
            position: relative;
            border-top: 1px solid rgba(255,255,255,0.03);
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 3px;
            opacity: 0.95;
        }

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

        .footer-column h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            margin-bottom: 12px;
            position: relative;
            padding-bottom: 6px;
            color: #ffffff;
            font-weight: 600;
        }

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

        .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.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .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: 12px;
            margin-top: 12px;
        }

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

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-4px) rotate(3deg);
            box-shadow: 0 8px 18px rgba(255, 51, 102, 0.22);
        }

        .copyright {
            text-align: center;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .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; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1200px) {
            .header-content {
                gap: 25px;
            }
            .search-bar {
                max-width: 500px;
            }
            .nav-links {
                gap: 15px;
            }
            .banner h1 {
                font-size: 3.8rem;
            }
        }

        @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;
            }
            .banner h1 {
                font-size: 3.2rem;
            }
            .banner p {
                font-size: 1.2rem;
            }
            .section-title {
                font-size: 2.8rem;
            }
            .trust-grid {
                grid-template-columns: repeat(2, minmax(160px, 1fr));
            }
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .search-modal-content {
                width: 95%;
                padding: 25px;
            }
            .search-results-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @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;
            }
            .banner {
                padding: 100px 20px;
                margin: 25px 0;
            }
            .banner h1 {
                font-size: 2.5rem;
            }
            .banner p {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2.4rem;
                margin-bottom: 40px;
            }
            .featured-head {
                flex-direction: column;
                align-items: flex-start;
            }
            .category-grid {
                grid-template-columns: 1fr;
            }
            .product-grid {
                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;
            }
            .search-modal h2 {
                font-size: 1.5rem;
            }
            .search-results-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .banner h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .btn {
                padding: 14px 30px;
                font-size: 0.95rem;
            }
            .cart-count, .wishlist-count {
                width: 20px;
                height: 20px;
                font-size: 0.75rem;
            }
            .search-modal-content {
                padding: 20px;
            }
            .trust-grid {
                grid-template-columns: 1fr;
            }
        }

        @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); }
        }

        .banner, .category-card, .product-card {
            animation: fadeInUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .category-card:nth-child(2) { animation-delay: 0.1s; }
        .category-card:nth-child(3) { animation-delay: 0.2s; }
        .category-card:nth-child(4) { animation-delay: 0.3s; }

        .logo i {
            animation: float 3s ease-in-out infinite;
        }
